Advertisement
RIDHOCRaIWIW

isdj

Jun 6th, 2018
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 421.92 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://1843271733" -- Put Music ID Here.
  14. z.Looped = true
  15. z.Volume = 1
  16. wait(.1)
  17. z:Play()
  18. local hum = char.Humanoid
  19. local cam = game.Workspace.CurrentCamera
  20. local root = char.HumanoidRootPart
  21. local deb = false
  22. local shot = 0
  23. local stanceToggle = "Normal"
  24. local l = game:GetService("Lighting")
  25. local runs = game:GetService("RunService")
  26. local debris=game:service"Debris"
  27. local rs = runs.RenderStepped
  28. local hb = runs.Heartbeat
  29. local step = runs.Stepped
  30. local stanceToggle = "Normal"
  31. math.randomseed(os.time())
  32. pts = {0.8, 0.85, 0.9, 0.95, 1, 1.05, 1.1}
  33. ptz = {0.75, 0.8, 0.85, 0.9, 0.95, 1}
  34. idz = {"231917856", "231917863"}
  35. ----------------------------------------------------
  36. --[[for i,v in pairs(char:children()) do
  37. if v:IsA("Hat") then
  38. v:Destroy()
  39. end
  40. end]]--
  41. for i,v in pairs (hed:GetChildren()) do
  42. if v:IsA("Sound") then
  43. v:Destroy()
  44. end
  45. end
  46. ----------------------------------------------------
  47. Debounces = {
  48. CanAttack = true;
  49. CanJoke = true;
  50. NoIdl = false;
  51. Slashing = false;
  52. Slashed = false;
  53. ks = false;
  54. RKick = false;
  55. RKicked = false;
  56. }
  57. ----------------------------------------------------
  58. function weld5(part0, part1, c0, c1)
  59. weeld=Instance.new("Weld", part0)
  60. weeld.Part0=part0
  61. weeld.Part1=part1
  62. weeld.C0=c0
  63. weeld.C1=c1
  64. return weeld
  65. end
  66. ----------------------------------------------------
  67. function lerp(a, b, t) -- Linear interpolation
  68. return a + (b - a)*t
  69. end
  70.  
  71. function slerp(a, b, t) --Spherical interpolation
  72. dot = a:Dot(b)
  73. if dot > 0.99999 or dot < -0.99999 then
  74. return t <= 0.5 and a or b
  75. else
  76. r = math.acos(dot)
  77. return (a*math.sin((1 - t)*r) + b*math.sin(t*r)) / math.sin(r)
  78. end
  79. end
  80.  
  81. function matrixInterpolate(a, b, t)
  82. local ax, ay, az, a00, a01, a02, a10, a11, a12, a20, a21, a22 = a:components()
  83. local bx, by, bz, b00, b01, b02, b10, b11, b12, b20, b21, b22 = b:components()
  84. local v0 = lerp(Vector3.new(ax, ay, az), Vector3.new(bx , by , bz), t) -- Position
  85. local v1 = slerp(Vector3.new(a00, a01, a02), Vector3.new(b00, b01, b02), t) -- Vector right
  86. local v2 = slerp(Vector3.new(a10, a11, a12), Vector3.new(b10, b11, b12), t) -- Vector up
  87. local v3 = slerp(Vector3.new(a20, a21, a22), Vector3.new(b20, b21, b22), t) -- Vector back
  88. local t = v1:Dot(v2)
  89. if not (t < 0 or t == 0 or t > 0) then -- Failsafe
  90. return CFrame.new()
  91. end
  92. return CFrame.new(
  93. v0.x, v0.y, v0.z,
  94. v1.x, v1.y, v1.z,
  95. v2.x, v2.y, v2.z,
  96. v3.x, v3.y, v3.z)
  97. end
  98. ----------------------------------------------------
  99. function genWeld(a,b)
  100. local w = Instance.new("Weld",a)
  101. w.Part0 = a
  102. w.Part1 = b
  103. return w
  104. end
  105. function weld(a, b)
  106. local weld = Instance.new("Weld")
  107. weld.Name = "W"
  108. weld.Part0 = a
  109. weld.Part1 = b
  110. weld.C0 = a.CFrame:inverse() * b.CFrame
  111. weld.Parent = a
  112. return weld;
  113. end
  114. ----------------------------------------------------
  115. function Lerp(c1,c2,al)
  116. local com1 = {c1.X,c1.Y,c1.Z,c1:toEulerAnglesXYZ()}
  117. local com2 = {c2.X,c2.Y,c2.Z,c2:toEulerAnglesXYZ()}
  118. for i,v in pairs(com1) do
  119. com1[i] = v+(com2[i]-v)*al
  120. end
  121. return CFrame.new(com1[1],com1[2],com1[3]) * CFrame.Angles(select(4,unpack(com1)))
  122. end
  123. ----------------------------------------------------
  124. newWeld = function(wp0, wp1, wc0x, wc0y, wc0z)
  125. local wld = Instance.new("Weld", wp1)
  126. wld.Part0 = wp0
  127. wld.Part1 = wp1
  128. wld.C0 = CFrame.new(wc0x, wc0y, wc0z)
  129. end
  130. ----------------------------------------------------
  131. function Tween(a,b,c)
  132. return a+(b-a)*c
  133. end
  134. ----------------------------------------------------
  135. function NewPart(prnt,siz,cf,col,mat)
  136. local prt=Instance.new("Part")
  137. prt.Parent=prnt
  138. prt.FormFactor=3
  139. prt.Name="Part"
  140. prt.Size=siz
  141. prt.CanCollide=false
  142. prt.Anchored=true
  143. prt.Locked=true
  144. prt.TopSurface=10
  145. prt.BottomSurface=10
  146. prt.FrontSurface=10
  147. prt.BackSurface=10
  148. prt.LeftSurface=10
  149. prt.RightSurface=10
  150. prt:BreakJoints()
  151. prt.CFrame=cf or CFrame.new(30,10,30)
  152. prt.Material=mat
  153. prt.BrickColor=BrickColor.new(col)
  154. m=Instance.new("SpecialMesh",prt)
  155. m.MeshType=6
  156. return prt
  157. end
  158. ----------------------------------------------------
  159. newWeld(torso, larm, -1.5, 0.5, 0)
  160. larm.Weld.C1 = CFrame.new(0, 0.5, 0)
  161. newWeld(torso, rarm, 1.5, 0.5, 0)
  162. rarm.Weld.C1 = CFrame.new(0, 0.5, 0)
  163. newWeld(torso, hed, 0, 1.5, 0)
  164. newWeld(torso, lleg, -0.5, -1, 0)
  165. lleg.Weld.C1 = CFrame.new(0, 1, 0)
  166. newWeld(torso, rleg, 0.5, -1, 0)
  167. rleg.Weld.C1 = CFrame.new(0, 1, 0)
  168. newWeld(root, torso, 0, -1, 0)
  169. torso.Weld.C1 = CFrame.new(0, -1, 0)
  170. ----------------------------------------------------
  171. z = Instance.new("Sound",char)
  172. z.SoundId = "rbxassetid://343691920"
  173. z.Looped = true
  174. z.Volume = 1
  175. z.Pitch = 1
  176. wait(1)
  177. --z:Play()
  178. ----------------------------------------------------
  179. local m = Instance.new("Model")
  180. m.Name = "Sword"
  181. p1 = Instance.new("Part", m)
  182. p1.BrickColor = BrickColor.new("Dark Indigo")
  183. p1.Material = Enum.Material.SmoothPlastic
  184. p1.Reflectance = 0.30000001192093
  185. 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)
  186. p1.CanCollide = false
  187. p1.Locked = true
  188. p1.FormFactor = Enum.FormFactor.Custom
  189. p1.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  190. p1.BottomSurface = Enum.SurfaceType.Smooth
  191. p1.TopSurface = Enum.SurfaceType.Smooth
  192. b1 = Instance.new("SpecialMesh", p1)
  193. b1.MeshId = "http://www.roblox.com/asset/?id=3270017"
  194. b1.TextureId = ""
  195. b1.MeshType = Enum.MeshType.FileMesh
  196. b1.Name = "Mesh"
  197. b1.Scale = Vector3.new(0.0455113538, 0.0455114096, 0.0682672113)
  198. p2 = Instance.new("Part", m)
  199. p2.BrickColor = BrickColor.new("Dark Indigo")
  200. p2.Material = Enum.Material.SmoothPlastic
  201. p2.Reflectance = 0.30000001192093
  202. 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)
  203. p2.CanCollide = false
  204. p2.Locked = true
  205. p2.FormFactor = Enum.FormFactor.Custom
  206. p2.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  207. p2.BottomSurface = Enum.SurfaceType.Smooth
  208. p2.TopSurface = Enum.SurfaceType.Smooth
  209. b2 = Instance.new("SpecialMesh", p2)
  210. b2.MeshId = "http://www.roblox.com/asset/?id=3270017"
  211. b2.TextureId = ""
  212. b2.MeshType = Enum.MeshType.FileMesh
  213. b2.Name = "Mesh"
  214. b2.Scale = Vector3.new(0.0455113538, 0.0455114096, 0.0682672113)
  215. p3 = Instance.new("Part", m)
  216. p3.BrickColor = BrickColor.new("Dark Indigo")
  217. p3.Material = Enum.Material.SmoothPlastic
  218. p3.Reflectance = 0.30000001192093
  219. 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)
  220. p3.CanCollide = false
  221. p3.Locked = true
  222. p3.FormFactor = Enum.FormFactor.Custom
  223. p3.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  224. p3.BottomSurface = Enum.SurfaceType.Smooth
  225. p3.TopSurface = Enum.SurfaceType.Smooth
  226. b3 = Instance.new("SpecialMesh", p3)
  227. b3.MeshId = "http://www.roblox.com/asset/?id=3270017"
  228. b3.TextureId = ""
  229. b3.MeshType = Enum.MeshType.FileMesh
  230. b3.Name = "Mesh"
  231. b3.Scale = Vector3.new(0.204801083, 0.204801321, 0.136534423)
  232. p4 = Instance.new("Part", m)
  233. p4.BrickColor = BrickColor.new("Black")
  234. 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)
  235. p4.CanCollide = false
  236. p4.Locked = true
  237. p4.FormFactor = Enum.FormFactor.Custom
  238. p4.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  239. p4.TopSurface = Enum.SurfaceType.Weld
  240. b4 = Instance.new("SpecialMesh", p4)
  241. b4.MeshId = "http://www.roblox.com/asset/?id=1033714"
  242. b4.TextureId = ""
  243. b4.MeshType = Enum.MeshType.FileMesh
  244. b4.Name = "Mesh"
  245. b4.VertexColor = Vector3.new(0, 0.899999976, 0.699999988)
  246. b4.Scale = Vector3.new(0.0455113538, 0.455114096, 0.0455114767)
  247. p5 = Instance.new("Part", m)
  248. p5.BrickColor = BrickColor.new("Really black")
  249. p5.Material = Enum.Material.Neon
  250. p5.Reflectance = 0.5
  251. p5.Transparency = 0.0099999997764826
  252. 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)
  253. p5.CanCollide = false
  254. p5.Locked = true
  255. p5.FormFactor = Enum.FormFactor.Custom
  256. p5.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  257. b5 = Instance.new("SpecialMesh", p5)
  258. b5.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  259. b5.TextureId = ""
  260. b5.MeshType = Enum.MeshType.FileMesh
  261. b5.Name = "Mesh"
  262. b5.Scale = Vector3.new(0.0606827289, 0.151704669, 0.0606819652)
  263. p6 = Instance.new("Part", m)
  264. p6.BrickColor = BrickColor.new("Dark Indigo")
  265. p6.Material = Enum.Material.SmoothPlastic
  266. p6.Reflectance = 0.30000001192093
  267. 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)
  268. p6.CanCollide = false
  269. p6.Locked = true
  270. p6.FormFactor = Enum.FormFactor.Custom
  271. p6.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  272. p6.BottomSurface = Enum.SurfaceType.Smooth
  273. p6.TopSurface = Enum.SurfaceType.Smooth
  274. b6 = Instance.new("SpecialMesh", p6)
  275. b6.MeshId = "http://www.roblox.com/asset/?id=3270017"
  276. b6.TextureId = ""
  277. b6.MeshType = Enum.MeshType.FileMesh
  278. b6.Name = "Mesh"
  279. b6.Scale = Vector3.new(0.0455113538, 0.0455114096, 0.0682672113)
  280. p7 = Instance.new("Part", m)
  281. p7.BrickColor = BrickColor.new("Dark Indigo")
  282. p7.Material = Enum.Material.SmoothPlastic
  283. p7.Reflectance = 0.30000001192093
  284. 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)
  285. p7.CanCollide = false
  286. p7.Locked = true
  287. p7.FormFactor = Enum.FormFactor.Custom
  288. p7.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  289. p7.BottomSurface = Enum.SurfaceType.Smooth
  290. p7.TopSurface = Enum.SurfaceType.Smooth
  291. b7 = Instance.new("SpecialMesh", p7)
  292. b7.MeshId = "http://www.roblox.com/asset/?id=3270017"
  293. b7.TextureId = ""
  294. b7.MeshType = Enum.MeshType.FileMesh
  295. b7.Name = "Mesh"
  296. b7.Scale = Vector3.new(0.141085163, 0.150187641, 0.0728183538)
  297. p8 = Instance.new("Part", m)
  298. p8.BrickColor = BrickColor.new("Dark Indigo")
  299. p8.Material = Enum.Material.SmoothPlastic
  300. p8.Reflectance = 0.30000001192093
  301. 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)
  302. p8.CanCollide = false
  303. p8.Locked = true
  304. p8.FormFactor = Enum.FormFactor.Custom
  305. p8.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  306. p8.BottomSurface = Enum.SurfaceType.Smooth
  307. p8.TopSurface = Enum.SurfaceType.Smooth
  308. b8 = Instance.new("SpecialMesh", p8)
  309. b8.MeshId = "http://www.roblox.com/asset/?id=3270017"
  310. b8.TextureId = ""
  311. b8.MeshType = Enum.MeshType.FileMesh
  312. b8.Name = "Mesh"
  313. b8.Scale = Vector3.new(0.0455113538, 0.0455114096, 0.0682672113)
  314. p9 = Instance.new("Part", m)
  315. p9.BrickColor = BrickColor.new("Dark Indigo")
  316. p9.Material = Enum.Material.SmoothPlastic
  317. p9.Reflectance = 0.30000001192093
  318. 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)
  319. p9.CanCollide = false
  320. p9.Locked = true
  321. p9.FormFactor = Enum.FormFactor.Custom
  322. p9.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  323. p9.BottomSurface = Enum.SurfaceType.Smooth
  324. p9.TopSurface = Enum.SurfaceType.Smooth
  325. b9 = Instance.new("SpecialMesh", p9)
  326. b9.MeshId = "http://www.roblox.com/asset/?id=3270017"
  327. b9.TextureId = ""
  328. b9.MeshType = Enum.MeshType.FileMesh
  329. b9.Name = "Mesh"
  330. b9.Scale = Vector3.new(0.0455113538, 0.0455114096, 0.0682672113)
  331. p10 = Instance.new("Part", m)
  332. p10.BrickColor = BrickColor.new("Dark Indigo")
  333. p10.Material = Enum.Material.SmoothPlastic
  334. p10.Reflectance = 0.30000001192093
  335. 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)
  336. p10.CanCollide = false
  337. p10.Locked = true
  338. p10.FormFactor = Enum.FormFactor.Custom
  339. p10.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  340. p10.BottomSurface = Enum.SurfaceType.Smooth
  341. p10.TopSurface = Enum.SurfaceType.Smooth
  342. b10 = Instance.new("SpecialMesh", p10)
  343. b10.MeshId = "http://www.roblox.com/asset/?id=3270017"
  344. b10.TextureId = ""
  345. b10.MeshType = Enum.MeshType.FileMesh
  346. b10.Name = "Mesh"
  347. b10.Scale = Vector3.new(0.0682670251, 0.068267107, 0.0682672113)
  348. p11 = Instance.new("Part", m)
  349. p11.BrickColor = BrickColor.new("Dark Indigo")
  350. p11.Material = Enum.Material.Neon
  351. p11.Reflectance = 0.5
  352. p11.Transparency = 0.30000001192093
  353. 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)
  354. p11.CanCollide = false
  355. p11.Locked = true
  356. p11.FormFactor = Enum.FormFactor.Custom
  357. p11.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  358. b11 = Instance.new("SpecialMesh", p11)
  359. b11.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  360. b11.TextureId = ""
  361. b11.MeshType = Enum.MeshType.FileMesh
  362. b11.Name = "Mesh"
  363. b11.Scale = Vector3.new(0.0728192627, 0.182045639, 0.0728183538)
  364. p12 = Instance.new("Part", m)
  365. p12.BrickColor = BrickColor.new("Dark Indigo")
  366. p12.Material = Enum.Material.SmoothPlastic
  367. p12.Reflectance = 0.30000001192093
  368. 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)
  369. p12.CanCollide = false
  370. p12.Locked = true
  371. p12.FormFactor = Enum.FormFactor.Custom
  372. p12.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  373. p12.BottomSurface = Enum.SurfaceType.Smooth
  374. p12.TopSurface = Enum.SurfaceType.Smooth
  375. b12 = Instance.new("SpecialMesh", p12)
  376. b12.MeshId = "http://www.roblox.com/asset/?id=3270017"
  377. b12.TextureId = ""
  378. b12.MeshType = Enum.MeshType.FileMesh
  379. b12.Name = "Mesh"
  380. b12.Scale = Vector3.new(0.0455113538, 0.0455114096, 0.0682672113)
  381. p13 = Instance.new("Part", m)
  382. p13.BrickColor = BrickColor.new("Dark Indigo")
  383. p13.Material = Enum.Material.SmoothPlastic
  384. p13.Reflectance = 0.30000001192093
  385. 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)
  386. p13.CanCollide = false
  387. p13.Locked = true
  388. p13.FormFactor = Enum.FormFactor.Custom
  389. p13.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  390. p13.BottomSurface = Enum.SurfaceType.Smooth
  391. p13.TopSurface = Enum.SurfaceType.Smooth
  392. b13 = Instance.new("SpecialMesh", p13)
  393. b13.MeshId = "http://www.roblox.com/asset/?id=3270017"
  394. b13.TextureId = ""
  395. b13.MeshType = Enum.MeshType.FileMesh
  396. b13.Name = "Mesh"
  397. b13.Scale = Vector3.new(0.0455113538, 0.0455114096, 0.0682672113)
  398. p14 = Instance.new("Part", m)
  399. p14.BrickColor = BrickColor.new("Really black")
  400. p14.Material = Enum.Material.Neon
  401. p14.Reflectance = 0.5
  402. p14.Transparency = 0.0099999997764826
  403. 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)
  404. p14.CanCollide = false
  405. p14.Locked = true
  406. p14.FormFactor = Enum.FormFactor.Custom
  407. p14.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  408. b14 = Instance.new("SpecialMesh", p14)
  409. b14.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  410. b14.TextureId = ""
  411. b14.MeshType = Enum.MeshType.FileMesh
  412. b14.Name = "Mesh"
  413. b14.Scale = Vector3.new(0.0637515709, 0.151704669, 0.060681954)
  414. p15 = Instance.new("Part", m)
  415. p15.BrickColor = BrickColor.new("Dark Indigo")
  416. p15.Material = Enum.Material.SmoothPlastic
  417. p15.Reflectance = 0.30000001192093
  418. 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)
  419. p15.CanCollide = false
  420. p15.Locked = true
  421. p15.FormFactor = Enum.FormFactor.Custom
  422. p15.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  423. p15.BottomSurface = Enum.SurfaceType.Smooth
  424. p15.TopSurface = Enum.SurfaceType.Smooth
  425. b15 = Instance.new("SpecialMesh", p15)
  426. b15.MeshId = "http://www.roblox.com/asset/?id=3270017"
  427. b15.TextureId = ""
  428. b15.MeshType = Enum.MeshType.FileMesh
  429. b15.Name = "Mesh"
  430. b15.Scale = Vector3.new(0.0455113538, 0.0455114096, 0.0682672113)
  431. p16 = Instance.new("Part", m)
  432. p16.BrickColor = BrickColor.new("Really black")
  433. p16.Material = Enum.Material.Neon
  434. p16.Reflectance = 0.5
  435. p16.Transparency = 0.0099999997764826
  436. 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)
  437. p16.CanCollide = false
  438. p16.Locked = true
  439. p16.FormFactor = Enum.FormFactor.Custom
  440. p16.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  441. b16 = Instance.new("SpecialMesh", p16)
  442. b16.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  443. b16.TextureId = ""
  444. b16.MeshType = Enum.MeshType.FileMesh
  445. b16.Name = "Mesh"
  446. b16.Scale = Vector3.new(0.115295447, 0.288239002, 0.115295798)
  447. p17 = Instance.new("Part", m)
  448. p17.BrickColor = BrickColor.new("Dark Indigo")
  449. p17.Material = Enum.Material.Neon
  450. p17.Reflectance = 0.5
  451. p17.Transparency = 0.30000001192093
  452. 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)
  453. p17.CanCollide = false
  454. p17.Locked = true
  455. p17.FormFactor = Enum.FormFactor.Custom
  456. p17.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  457. b17 = Instance.new("SpecialMesh", p17)
  458. b17.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  459. b17.TextureId = ""
  460. b17.MeshType = Enum.MeshType.FileMesh
  461. b17.Name = "Mesh"
  462. b17.Scale = Vector3.new(0.0728192627, 0.182045639, 0.0728183538)
  463. p18 = Instance.new("Part", m)
  464. p18.BrickColor = BrickColor.new("Really black")
  465. p18.Material = Enum.Material.Neon
  466. p18.Reflectance = 0.5
  467. p18.Transparency = 0.0099999997764826
  468. 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)
  469. p18.CanCollide = false
  470. p18.Locked = true
  471. p18.FormFactor = Enum.FormFactor.Custom
  472. p18.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  473. b18 = Instance.new("SpecialMesh", p18)
  474. b18.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  475. b18.TextureId = ""
  476. b18.MeshType = Enum.MeshType.FileMesh
  477. b18.Name = "Mesh"
  478. b18.Scale = Vector3.new(0.0637515709, 0.151704669, 0.060681954)
  479. p19 = Instance.new("Part", m)
  480. p19.BrickColor = BrickColor.new("Dark Indigo")
  481. p19.Material = Enum.Material.SmoothPlastic
  482. p19.Reflectance = 0.30000001192093
  483. 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)
  484. p19.CanCollide = false
  485. p19.Locked = true
  486. p19.FormFactor = Enum.FormFactor.Custom
  487. p19.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  488. p19.BottomSurface = Enum.SurfaceType.Smooth
  489. p19.TopSurface = Enum.SurfaceType.Smooth
  490. b19 = Instance.new("SpecialMesh", p19)
  491. b19.MeshId = "http://www.roblox.com/asset/?id=3270017"
  492. b19.TextureId = ""
  493. b19.MeshType = Enum.MeshType.FileMesh
  494. b19.Name = "Mesh"
  495. b19.Scale = Vector3.new(0.0455113538, 0.0455114096, 0.0682672113)
  496. p20 = Instance.new("Part", m)
  497. p20.BrickColor = BrickColor.new("Dark Indigo")
  498. p20.Material = Enum.Material.Neon
  499. p20.Reflectance = 0.5
  500. p20.Transparency = 0.30000001192093
  501. 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)
  502. p20.CanCollide = false
  503. p20.Locked = true
  504. p20.FormFactor = Enum.FormFactor.Custom
  505. p20.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  506. b20 = Instance.new("SpecialMesh", p20)
  507. b20.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  508. b20.TextureId = ""
  509. b20.MeshType = Enum.MeshType.FileMesh
  510. b20.Name = "Mesh"
  511. b20.Scale = Vector3.new(0.0728192627, 0.182045639, 0.0728183538)
  512. p21 = Instance.new("Part", m)
  513. p21.BrickColor = BrickColor.new("Really black")
  514. p21.Material = Enum.Material.Neon
  515. p21.Reflectance = 0.5
  516. p21.Transparency = 0.0099999997764826
  517. 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)
  518. p21.CanCollide = false
  519. p21.Locked = true
  520. p21.FormFactor = Enum.FormFactor.Custom
  521. p21.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  522. b21 = Instance.new("SpecialMesh", p21)
  523. b21.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  524. b21.TextureId = ""
  525. b21.MeshType = Enum.MeshType.FileMesh
  526. b21.Name = "Mesh"
  527. b21.Scale = Vector3.new(0.0606827289, 0.151704669, 0.0606819652)
  528. p22 = Instance.new("Part", m)
  529. p22.BrickColor = BrickColor.new("Dark Indigo")
  530. p22.Material = Enum.Material.Neon
  531. p22.Reflectance = 0.5
  532. p22.Transparency = 0.30000001192093
  533. 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)
  534. p22.CanCollide = false
  535. p22.Locked = true
  536. p22.FormFactor = Enum.FormFactor.Custom
  537. p22.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  538. b22 = Instance.new("SpecialMesh", p22)
  539. b22.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  540. b22.TextureId = ""
  541. b22.MeshType = Enum.MeshType.FileMesh
  542. b22.Name = "Mesh"
  543. b22.Scale = Vector3.new(0.182045415, 0.455114096, 0.182045907)
  544. p23 = Instance.new("Part", m)
  545. p23.BrickColor = BrickColor.new("Dark Indigo")
  546. p23.Material = Enum.Material.SmoothPlastic
  547. p23.Reflectance = 0.30000001192093
  548. 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)
  549. p23.CanCollide = false
  550. p23.Locked = true
  551. p23.FormFactor = Enum.FormFactor.Custom
  552. p23.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  553. p23.BottomSurface = Enum.SurfaceType.Smooth
  554. p23.TopSurface = Enum.SurfaceType.Smooth
  555. b23 = Instance.new("SpecialMesh", p23)
  556. b23.MeshId = "http://www.roblox.com/asset/?id=3270017"
  557. b23.TextureId = ""
  558. b23.MeshType = Enum.MeshType.FileMesh
  559. b23.Name = "Mesh"
  560. b23.Scale = Vector3.new(0.0455113538, 0.0455114096, 0.0682672113)
  561. p24 = Instance.new("Part", m)
  562. p24.BrickColor = BrickColor.new("Dark Indigo")
  563. p24.Material = Enum.Material.SmoothPlastic
  564. p24.Reflectance = 0.30000001192093
  565. 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)
  566. p24.CanCollide = false
  567. p24.Locked = true
  568. p24.FormFactor = Enum.FormFactor.Custom
  569. p24.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  570. p24.BottomSurface = Enum.SurfaceType.Smooth
  571. p24.TopSurface = Enum.SurfaceType.Smooth
  572. b24 = Instance.new("SpecialMesh", p24)
  573. b24.MeshId = "http://www.roblox.com/asset/?id=3270017"
  574. b24.TextureId = ""
  575. b24.MeshType = Enum.MeshType.FileMesh
  576. b24.Name = "Mesh"
  577. b24.Scale = Vector3.new(0.0455113538, 0.0455114096, 0.0682672113)
  578. p25 = Instance.new("Part", m)
  579. p25.BrickColor = BrickColor.new("Dark Indigo")
  580. p25.Material = Enum.Material.SmoothPlastic
  581. p25.Reflectance = 0.30000001192093
  582. 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)
  583. p25.CanCollide = false
  584. p25.Locked = true
  585. p25.FormFactor = Enum.FormFactor.Custom
  586. p25.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  587. p25.BottomSurface = Enum.SurfaceType.Smooth
  588. p25.TopSurface = Enum.SurfaceType.Smooth
  589. b25 = Instance.new("SpecialMesh", p25)
  590. b25.MeshId = "http://www.roblox.com/asset/?id=3270017"
  591. b25.TextureId = ""
  592. b25.MeshType = Enum.MeshType.FileMesh
  593. b25.Name = "Mesh"
  594. b25.Scale = Vector3.new(0.0682670251, 0.068267107, 0.0682672113)
  595. p26 = Instance.new("Part", m)
  596. p26.BrickColor = BrickColor.new("Dark Indigo")
  597. p26.Material = Enum.Material.SmoothPlastic
  598. p26.Reflectance = 0.30000001192093
  599. 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)
  600. p26.CanCollide = false
  601. p26.Locked = true
  602. p26.FormFactor = Enum.FormFactor.Custom
  603. p26.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  604. p26.BottomSurface = Enum.SurfaceType.Smooth
  605. p26.TopSurface = Enum.SurfaceType.Smooth
  606. b26 = Instance.new("SpecialMesh", p26)
  607. b26.MeshId = "http://www.roblox.com/asset/?id=3270017"
  608. b26.TextureId = ""
  609. b26.MeshType = Enum.MeshType.FileMesh
  610. b26.Name = "Mesh"
  611. b26.Scale = Vector3.new(0.0455113538, 0.0455114096, 0.0682672113)
  612. p27 = Instance.new("Part", m)
  613. p27.BrickColor = BrickColor.new("Dark Indigo")
  614. p27.Material = Enum.Material.Neon
  615. p27.Reflectance = 0.5
  616. p27.Transparency = 0.30000001192093
  617. 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)
  618. p27.CanCollide = false
  619. p27.Locked = true
  620. p27.FormFactor = Enum.FormFactor.Custom
  621. p27.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  622. b27 = Instance.new("SpecialMesh", p27)
  623. b27.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  624. b27.TextureId = ""
  625. b27.MeshType = Enum.MeshType.FileMesh
  626. b27.Name = "Mesh"
  627. b27.Scale = Vector3.new(0.0728192627, 0.182045639, 0.0728183538)
  628. p28 = Instance.new("Part", m)
  629. p28.BrickColor = BrickColor.new("Dark Indigo")
  630. p28.Material = Enum.Material.SmoothPlastic
  631. p28.Reflectance = 0.30000001192093
  632. 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)
  633. p28.CanCollide = false
  634. p28.Locked = true
  635. p28.FormFactor = Enum.FormFactor.Custom
  636. p28.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  637. p28.BottomSurface = Enum.SurfaceType.Smooth
  638. p28.TopSurface = Enum.SurfaceType.Smooth
  639. b28 = Instance.new("SpecialMesh", p28)
  640. b28.MeshId = "http://www.roblox.com/asset/?id=3270017"
  641. b28.TextureId = ""
  642. b28.MeshType = Enum.MeshType.FileMesh
  643. b28.Name = "Mesh"
  644. b28.Scale = Vector3.new(0.0455113538, 0.0455114096, 0.0682672113)
  645. p29 = Instance.new("Part", m)
  646. p29.BrickColor = BrickColor.new("Dark Indigo")
  647. p29.Material = Enum.Material.SmoothPlastic
  648. p29.Reflectance = 0.30000001192093
  649. 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)
  650. p29.CanCollide = false
  651. p29.Locked = true
  652. p29.FormFactor = Enum.FormFactor.Custom
  653. p29.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  654. p29.BottomSurface = Enum.SurfaceType.Smooth
  655. p29.TopSurface = Enum.SurfaceType.Smooth
  656. b29 = Instance.new("SpecialMesh", p29)
  657. b29.MeshId = "http://www.roblox.com/asset/?id=3270017"
  658. b29.TextureId = ""
  659. b29.MeshType = Enum.MeshType.FileMesh
  660. b29.Name = "Mesh"
  661. b29.Scale = Vector3.new(0.0455113538, 0.0455114096, 0.0682672113)
  662. p30 = Instance.new("Part", m)
  663. p30.BrickColor = BrickColor.new("Dark Indigo")
  664. p30.Material = Enum.Material.SmoothPlastic
  665. p30.Reflectance = 0.30000001192093
  666. 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)
  667. p30.CanCollide = false
  668. p30.Locked = true
  669. p30.FormFactor = Enum.FormFactor.Custom
  670. p30.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  671. p30.BottomSurface = Enum.SurfaceType.Smooth
  672. p30.TopSurface = Enum.SurfaceType.Smooth
  673. b30 = Instance.new("SpecialMesh", p30)
  674. b30.MeshId = "http://www.roblox.com/asset/?id=3270017"
  675. b30.TextureId = ""
  676. b30.MeshType = Enum.MeshType.FileMesh
  677. b30.Name = "Mesh"
  678. b30.Scale = Vector3.new(0.0455113538, 0.0455114096, 0.0682672113)
  679. p31 = Instance.new("Part", m)
  680. p31.BrickColor = BrickColor.new("Dark Indigo")
  681. p31.Material = Enum.Material.SmoothPlastic
  682. p31.Reflectance = 0.30000001192093
  683. 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)
  684. p31.CanCollide = false
  685. p31.Locked = true
  686. p31.FormFactor = Enum.FormFactor.Custom
  687. p31.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  688. p31.BottomSurface = Enum.SurfaceType.Smooth
  689. p31.TopSurface = Enum.SurfaceType.Smooth
  690. b31 = Instance.new("SpecialMesh", p31)
  691. b31.MeshId = "http://www.roblox.com/asset/?id=3270017"
  692. b31.TextureId = ""
  693. b31.MeshType = Enum.MeshType.FileMesh
  694. b31.Name = "Mesh"
  695. b31.Scale = Vector3.new(0.0682670251, 0.068267107, 0.0682672113)
  696. p32 = Instance.new("Part", m)
  697. p32.BrickColor = BrickColor.new("Dark Indigo")
  698. p32.Material = Enum.Material.SmoothPlastic
  699. p32.Reflectance = 0.30000001192093
  700. 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)
  701. p32.CanCollide = false
  702. p32.Locked = true
  703. p32.FormFactor = Enum.FormFactor.Custom
  704. p32.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  705. p32.BottomSurface = Enum.SurfaceType.Smooth
  706. p32.TopSurface = Enum.SurfaceType.Smooth
  707. b32 = Instance.new("SpecialMesh", p32)
  708. b32.MeshId = "http://www.roblox.com/asset/?id=3270017"
  709. b32.TextureId = ""
  710. b32.MeshType = Enum.MeshType.FileMesh
  711. b32.Name = "Mesh"
  712. b32.Scale = Vector3.new(0.0455113538, 0.0455114096, 0.0682672113)
  713. p33 = Instance.new("Part", m)
  714. p33.BrickColor = BrickColor.new("Dark Indigo")
  715. p33.Material = Enum.Material.SmoothPlastic
  716. p33.Reflectance = 0.30000001192093
  717. 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)
  718. p33.CanCollide = false
  719. p33.Locked = true
  720. p33.FormFactor = Enum.FormFactor.Custom
  721. p33.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  722. p33.BottomSurface = Enum.SurfaceType.Smooth
  723. p33.TopSurface = Enum.SurfaceType.Smooth
  724. b33 = Instance.new("SpecialMesh", p33)
  725. b33.MeshId = "http://www.roblox.com/asset/?id=3270017"
  726. b33.TextureId = ""
  727. b33.MeshType = Enum.MeshType.FileMesh
  728. b33.Name = "Mesh"
  729. b33.Scale = Vector3.new(0.0455113538, 0.0455114096, 0.0682672113)
  730. p34 = Instance.new("Part", m)
  731. p34.BrickColor = BrickColor.new("Dark Indigo")
  732. p34.Material = Enum.Material.SmoothPlastic
  733. p34.Reflectance = 0.30000001192093
  734. 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)
  735. p34.CanCollide = false
  736. p34.Locked = true
  737. p34.FormFactor = Enum.FormFactor.Custom
  738. p34.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  739. p34.BottomSurface = Enum.SurfaceType.Smooth
  740. p34.TopSurface = Enum.SurfaceType.Smooth
  741. b34 = Instance.new("SpecialMesh", p34)
  742. b34.MeshId = "http://www.roblox.com/asset/?id=3270017"
  743. b34.TextureId = ""
  744. b34.MeshType = Enum.MeshType.FileMesh
  745. b34.Name = "Mesh"
  746. b34.Scale = Vector3.new(0.0455113538, 0.0455114096, 0.0682672113)
  747. p35 = Instance.new("Part", m)
  748. p35.BrickColor = BrickColor.new("Dark Indigo")
  749. p35.Material = Enum.Material.Neon
  750. 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)
  751. p35.CanCollide = false
  752. p35.Locked = true
  753. p35.FormFactor = Enum.FormFactor.Custom
  754. p35.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  755. p35.BottomSurface = Enum.SurfaceType.Smooth
  756. p35.TopSurface = Enum.SurfaceType.Smooth
  757. b35 = Instance.new("SpecialMesh", p35)
  758. b35.MeshType = Enum.MeshType.Sphere
  759. b35.Name = "Mesh"
  760. b35.Scale = Vector3.new(0.120086089, 0.637123406, 0.200143486)
  761. p36 = Instance.new("Part", m)
  762. p36.BrickColor = BrickColor.new("Dark Indigo")
  763. p36.Material = Enum.Material.Neon
  764. 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)
  765. p36.CanCollide = false
  766. p36.Locked = true
  767. p36.FormFactor = Enum.FormFactor.Custom
  768. p36.Size = Vector3.new(0.341090173, 0.490385354, 0.341090739)
  769. p36.BottomSurface = Enum.SurfaceType.Smooth
  770. p36.TopSurface = Enum.SurfaceType.Smooth
  771. b36 = Instance.new("SpecialMesh", p36)
  772. b36.MeshType = Enum.MeshType.Sphere
  773. b36.Name = "Mesh"
  774. b36.Scale = Vector3.new(0.253515095, 1, 0.333572537)
  775. p37 = Instance.new("Part", m)
  776. p37.BrickColor = BrickColor.new("Dark Indigo")
  777. p37.Material = Enum.Material.Neon
  778. 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)
  779. p37.CanCollide = false
  780. p37.Locked = true
  781. p37.FormFactor = Enum.FormFactor.Custom
  782. p37.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  783. p37.BottomSurface = Enum.SurfaceType.Smooth
  784. p37.TopSurface = Enum.SurfaceType.Smooth
  785. b37 = Instance.new("SpecialMesh", p37)
  786. b37.MeshType = Enum.MeshType.Sphere
  787. b37.Name = "Mesh"
  788. b37.Scale = Vector3.new(0.120086089, 0.637123406, 0.200143486)
  789. p38 = Instance.new("Part", m)
  790. p38.BrickColor = BrickColor.new("Dark Indigo")
  791. p38.Material = Enum.Material.Neon
  792. 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)
  793. p38.CanCollide = false
  794. p38.Locked = true
  795. p38.FormFactor = Enum.FormFactor.Custom
  796. p38.Size = Vector3.new(0.341090173, 0.490385354, 0.341090739)
  797. p38.BottomSurface = Enum.SurfaceType.Smooth
  798. p38.TopSurface = Enum.SurfaceType.Smooth
  799. b38 = Instance.new("SpecialMesh", p38)
  800. b38.MeshType = Enum.MeshType.Sphere
  801. b38.Name = "Mesh"
  802. b38.Scale = Vector3.new(0.253515095, 1, 0.333572537)
  803. p39 = Instance.new("Part", m)
  804. p39.BrickColor = BrickColor.new("Gold")
  805. p39.Material = Enum.Material.SmoothPlastic
  806. p39.Reflectance = 0.20000000298023
  807. p39.Name = "Circle"
  808. 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)
  809. p39.CanCollide = false
  810. p39.Locked = true
  811. p39.FormFactor = Enum.FormFactor.Custom
  812. p39.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  813. p39.BottomSurface = Enum.SurfaceType.Smooth
  814. p39.TopSurface = Enum.SurfaceType.Smooth
  815. b39 = Instance.new("CylinderMesh", p39)
  816. b39.Name = "Mesh"
  817. b39.Scale = Vector3.new(0.400286943, 0.423637152, 0.467001528)
  818. p40 = Instance.new("Part", m)
  819. p40.BrickColor = BrickColor.new("Really black")
  820. p40.Material = Enum.Material.SmoothPlastic
  821. p40.Name = "Block"
  822. 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)
  823. p40.CanCollide = false
  824. p40.Locked = true
  825. p40.FormFactor = Enum.FormFactor.Custom
  826. p40.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  827. p40.BottomSurface = Enum.SurfaceType.Smooth
  828. p40.TopSurface = Enum.SurfaceType.Smooth
  829. b40 = Instance.new("SpecialMesh", p40)
  830. b40.MeshType = Enum.MeshType.Wedge
  831. b40.Name = "WedgeMesh"
  832. b40.Scale = Vector3.new(0.533715904, 0.200143531, 0.773888171)
  833. p41 = Instance.new("Part", m)
  834. p41.BrickColor = BrickColor.new("Really black")
  835. p41.Material = Enum.Material.SmoothPlastic
  836. p41.Name = "Block"
  837. 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)
  838. p41.CanCollide = false
  839. p41.Locked = true
  840. p41.FormFactor = Enum.FormFactor.Custom
  841. p41.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  842. p41.BottomSurface = Enum.SurfaceType.Smooth
  843. p41.TopSurface = Enum.SurfaceType.Smooth
  844. b41 = Instance.new("SpecialMesh", p41)
  845. b41.MeshType = Enum.MeshType.Wedge
  846. b41.Name = "WedgeMesh"
  847. b41.Scale = Vector3.new(0.533715904, 0.200143531, 0.760545254)
  848. p42 = Instance.new("Part", m)
  849. p42.BrickColor = BrickColor.new("Really black")
  850. p42.Material = Enum.Material.SmoothPlastic
  851. p42.Name = "Circle"
  852. 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)
  853. p42.CanCollide = false
  854. p42.Locked = true
  855. p42.FormFactor = Enum.FormFactor.Custom
  856. p42.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  857. p42.BottomSurface = Enum.SurfaceType.Smooth
  858. p42.TopSurface = Enum.SurfaceType.Smooth
  859. b42 = Instance.new("CylinderMesh", p42)
  860. b42.Name = "Mesh"
  861. b42.Scale = Vector3.new(0.667144895, 0.400287062, 0.667144954)
  862. p43 = Instance.new("Part", m)
  863. p43.BrickColor = BrickColor.new("Really black")
  864. p43.Material = Enum.Material.SmoothPlastic
  865. p43.Name = "Circle"
  866. 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)
  867. p43.CanCollide = false
  868. p43.Locked = true
  869. p43.FormFactor = Enum.FormFactor.Custom
  870. p43.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  871. p43.BottomSurface = Enum.SurfaceType.Smooth
  872. p43.TopSurface = Enum.SurfaceType.Smooth
  873. b43 = Instance.new("CylinderMesh", p43)
  874. b43.Name = "Mesh"
  875. b43.Scale = Vector3.new(0.467001408, 0.266858011, 0.467001468)
  876. p44 = Instance.new("Part", m)
  877. p44.BrickColor = BrickColor.new("Dark Indigo")
  878. p44.Material = Enum.Material.Neon
  879. 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)
  880. p44.CanCollide = false
  881. p44.Locked = true
  882. p44.FormFactor = Enum.FormFactor.Custom
  883. p44.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  884. p44.BottomSurface = Enum.SurfaceType.Smooth
  885. p44.TopSurface = Enum.SurfaceType.Smooth
  886. b44 = Instance.new("SpecialMesh", p44)
  887. b44.MeshType = Enum.MeshType.Sphere
  888. b44.Name = "Mesh"
  889. b44.Scale = Vector3.new(0.120086111, 0.903981566, 0.200143546)
  890. p45 = Instance.new("Part", m)
  891. p45.BrickColor = BrickColor.new("Dark Indigo")
  892. p45.Material = Enum.Material.Neon
  893. 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)
  894. p45.CanCollide = false
  895. p45.Locked = true
  896. p45.FormFactor = Enum.FormFactor.Custom
  897. p45.Size = Vector3.new(0.341090173, 0.535896719, 0.341090739)
  898. p45.BottomSurface = Enum.SurfaceType.Smooth
  899. p45.TopSurface = Enum.SurfaceType.Smooth
  900. b45 = Instance.new("SpecialMesh", p45)
  901. b45.MeshType = Enum.MeshType.Sphere
  902. b45.Name = "Mesh"
  903. b45.Scale = Vector3.new(0.253515095, 1, 0.333572537)
  904. p46 = Instance.new("Part", m)
  905. p46.BrickColor = BrickColor.new("Dark Indigo")
  906. p46.Material = Enum.Material.Neon
  907. 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)
  908. p46.CanCollide = false
  909. p46.Locked = true
  910. p46.FormFactor = Enum.FormFactor.Custom
  911. p46.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  912. p46.BottomSurface = Enum.SurfaceType.Smooth
  913. p46.TopSurface = Enum.SurfaceType.Smooth
  914. b46 = Instance.new("SpecialMesh", p46)
  915. b46.MeshType = Enum.MeshType.Sphere
  916. b46.Name = "Mesh"
  917. b46.Scale = Vector3.new(0.120086111, 0.903981566, 0.200143546)
  918. p47 = Instance.new("Part", m)
  919. p47.BrickColor = BrickColor.new("Really black")
  920. p47.Material = Enum.Material.SmoothPlastic
  921. p47.Name = "Handle"
  922. 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)
  923. p47.CanCollide = false
  924. p47.Locked = true
  925. p47.FormFactor = Enum.FormFactor.Custom
  926. p47.Size = Vector3.new(0.341090173, 1.06951797, 0.341090739)
  927. p47.BottomSurface = Enum.SurfaceType.Smooth
  928. p47.TopSurface = Enum.SurfaceType.Smooth
  929. b47 = Instance.new("CylinderMesh", p47)
  930. b47.Name = "Mesh"
  931. b47.Scale = Vector3.new(0.333572447, 1, 0.467001528)
  932. p48 = Instance.new("Part", m)
  933. p48.BrickColor = BrickColor.new("Really black")
  934. p48.Material = Enum.Material.SmoothPlastic
  935. p48.Name = "Block"
  936. 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)
  937. p48.CanCollide = false
  938. p48.Locked = true
  939. p48.FormFactor = Enum.FormFactor.Custom
  940. p48.Size = Vector3.new(0.341090173, 0.364091188, 0.341090739)
  941. p48.BottomSurface = Enum.SurfaceType.Smooth
  942. p48.TopSurface = Enum.SurfaceType.Smooth
  943. b48 = Instance.new("SpecialMesh", p48)
  944. b48.MeshType = Enum.MeshType.Wedge
  945. b48.Name = "WedgeMesh"
  946. b48.Scale = Vector3.new(0.533715785, 1, 0.263522238)
  947. p49 = Instance.new("Part", m)
  948. p49.BrickColor = BrickColor.new("Really black")
  949. p49.Material = Enum.Material.SmoothPlastic
  950. p49.Name = "Block"
  951. 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)
  952. p49.CanCollide = false
  953. p49.Locked = true
  954. p49.FormFactor = Enum.FormFactor.Custom
  955. p49.Size = Vector3.new(0.341090173, 0.364091188, 0.341090739)
  956. p49.BottomSurface = Enum.SurfaceType.Smooth
  957. p49.TopSurface = Enum.SurfaceType.Smooth
  958. b49 = Instance.new("SpecialMesh", p49)
  959. b49.MeshType = Enum.MeshType.Wedge
  960. b49.Name = "WedgeMesh"
  961. b49.Scale = Vector3.new(0.533715785, 1, 0.263522238)
  962. p50 = Instance.new("Part", m)
  963. p50.BrickColor = BrickColor.new("Really black")
  964. p50.Material = Enum.Material.SmoothPlastic
  965. p50.Name = "Block"
  966. 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)
  967. p50.CanCollide = false
  968. p50.Locked = true
  969. p50.FormFactor = Enum.FormFactor.Custom
  970. p50.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  971. p50.BottomSurface = Enum.SurfaceType.Smooth
  972. p50.TopSurface = Enum.SurfaceType.Smooth
  973. b50 = Instance.new("BlockMesh", p50)
  974. b50.Name = "Mesh"
  975. b50.Scale = Vector3.new(0.533715785, 0.266858011, 0.300215244)
  976. p51 = Instance.new("Part", m)
  977. p51.BrickColor = BrickColor.new("Really black")
  978. p51.Material = Enum.Material.SmoothPlastic
  979. p51.Name = "Block"
  980. 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)
  981. p51.CanCollide = false
  982. p51.Locked = true
  983. p51.FormFactor = Enum.FormFactor.Custom
  984. p51.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  985. p51.BottomSurface = Enum.SurfaceType.Smooth
  986. p51.TopSurface = Enum.SurfaceType.Smooth
  987. b51 = Instance.new("BlockMesh", p51)
  988. b51.Name = "Mesh"
  989. b51.Scale = Vector3.new(0.533715785, 0.266858011, 0.300215244)
  990. p52 = Instance.new("Part", m)
  991. p52.BrickColor = BrickColor.new("Really black")
  992. p52.Material = Enum.Material.SmoothPlastic
  993. p52.Name = "Block"
  994. 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)
  995. p52.CanCollide = false
  996. p52.Locked = true
  997. p52.FormFactor = Enum.FormFactor.Custom
  998. p52.Size = Vector3.new(0.341090173, 0.341090739, 0.523380995)
  999. p52.BottomSurface = Enum.SurfaceType.Smooth
  1000. p52.TopSurface = Enum.SurfaceType.Smooth
  1001. b52 = Instance.new("BlockMesh", p52)
  1002. b52.Name = "Mesh"
  1003. b52.Scale = Vector3.new(0.533715785, 0.0667145103, 1)
  1004. p53 = Instance.new("Part", m)
  1005. p53.BrickColor = BrickColor.new("Deep orange")
  1006. p53.Material = Enum.Material.Neon
  1007. p53.Name = "Circle"
  1008. 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)
  1009. p53.CanCollide = false
  1010. p53.Locked = true
  1011. p53.FormFactor = Enum.FormFactor.Custom
  1012. p53.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  1013. p53.BottomSurface = Enum.SurfaceType.Smooth
  1014. p53.TopSurface = Enum.SurfaceType.Smooth
  1015. b53 = Instance.new("CylinderMesh", p53)
  1016. b53.Name = "Mesh"
  1017. b53.Scale = Vector3.new(0.533715785, 0.467001498, 0.42771104)
  1018. p54 = Instance.new("Part", m)
  1019. p54.BrickColor = BrickColor.new("Really black")
  1020. p54.Material = Enum.Material.Neon
  1021. p54.Name = "Circle"
  1022. 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)
  1023. p54.CanCollide = false
  1024. p54.Locked = true
  1025. p54.FormFactor = Enum.FormFactor.Custom
  1026. p54.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  1027. p54.BottomSurface = Enum.SurfaceType.Smooth
  1028. p54.TopSurface = Enum.SurfaceType.Smooth
  1029. b54 = Instance.new("CylinderMesh", p54)
  1030. b54.Name = "Mesh"
  1031. b54.Scale = Vector3.new(0.533715785, 0.490944952, 0.188277081)
  1032. p55 = Instance.new("Part", m)
  1033. p55.BrickColor = BrickColor.new("Dark Indigo")
  1034. p55.Material = Enum.Material.Metal
  1035. 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)
  1036. p55.CanCollide = false
  1037. p55.Locked = true
  1038. p55.FormFactor = Enum.FormFactor.Custom
  1039. p55.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  1040. p55.BottomSurface = Enum.SurfaceType.Smooth
  1041. p55.TopSurface = Enum.SurfaceType.Smooth
  1042. b55 = Instance.new("SpecialMesh", p55)
  1043. b55.MeshType = Enum.MeshType.Sphere
  1044. b55.Name = "Mesh"
  1045. b55.Scale = Vector3.new(0.253515154, 0.903981686, 0.400287092)
  1046. p56 = Instance.new("Part", m)
  1047. p56.BrickColor = BrickColor.new("Dark Indigo")
  1048. p56.Material = Enum.Material.Metal
  1049. 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)
  1050. p56.CanCollide = false
  1051. p56.Locked = true
  1052. p56.FormFactor = Enum.FormFactor.Custom
  1053. p56.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  1054. p56.BottomSurface = Enum.SurfaceType.Smooth
  1055. p56.TopSurface = Enum.SurfaceType.Smooth
  1056. b56 = Instance.new("SpecialMesh", p56)
  1057. b56.MeshType = Enum.MeshType.Sphere
  1058. b56.Name = "Mesh"
  1059. b56.Scale = Vector3.new(0.253515154, 0.903981686, 0.400287092)
  1060. p57 = Instance.new("Part", m)
  1061. p57.BrickColor = BrickColor.new("Dark Indigo")
  1062. p57.Material = Enum.Material.Metal
  1063. 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)
  1064. p57.CanCollide = false
  1065. p57.Locked = true
  1066. p57.FormFactor = Enum.FormFactor.Custom
  1067. p57.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  1068. p57.BottomSurface = Enum.SurfaceType.Smooth
  1069. p57.TopSurface = Enum.SurfaceType.Smooth
  1070. b57 = Instance.new("SpecialMesh", p57)
  1071. b57.MeshType = Enum.MeshType.Sphere
  1072. b57.Name = "Mesh"
  1073. b57.Scale = Vector3.new(0.253515154, 0.903981686, 0.400287092)
  1074. p58 = Instance.new("Part", m)
  1075. p58.BrickColor = BrickColor.new("Really black")
  1076. p58.Material = Enum.Material.SmoothPlastic
  1077. p58.Name = "Block"
  1078. 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)
  1079. p58.CanCollide = false
  1080. p58.Locked = true
  1081. p58.FormFactor = Enum.FormFactor.Custom
  1082. p58.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  1083. p58.BottomSurface = Enum.SurfaceType.Smooth
  1084. p58.TopSurface = Enum.SurfaceType.Smooth
  1085. b58 = Instance.new("SpecialMesh", p58)
  1086. b58.MeshType = Enum.MeshType.Wedge
  1087. b58.Name = "WedgeMesh"
  1088. b58.Scale = Vector3.new(0.533715785, 0.43030858, 0.0667144954)
  1089. p59 = Instance.new("Part", m)
  1090. p59.BrickColor = BrickColor.new("Really black")
  1091. p59.Material = Enum.Material.SmoothPlastic
  1092. p59.Name = "Block"
  1093. 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)
  1094. p59.CanCollide = false
  1095. p59.Locked = true
  1096. p59.FormFactor = Enum.FormFactor.Custom
  1097. p59.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  1098. p59.BottomSurface = Enum.SurfaceType.Smooth
  1099. p59.TopSurface = Enum.SurfaceType.Smooth
  1100. b59 = Instance.new("SpecialMesh", p59)
  1101. b59.MeshType = Enum.MeshType.Wedge
  1102. b59.Name = "WedgeMesh"
  1103. b59.Scale = Vector3.new(0.533715785, 0.430308461, 0.066714488)
  1104. p60 = Instance.new("Part", m)
  1105. p60.BrickColor = BrickColor.new("Really black")
  1106. p60.Material = Enum.Material.SmoothPlastic
  1107. p60.Name = "Block"
  1108. 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)
  1109. p60.CanCollide = false
  1110. p60.Locked = true
  1111. p60.FormFactor = Enum.FormFactor.Custom
  1112. p60.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  1113. p60.BottomSurface = Enum.SurfaceType.Smooth
  1114. p60.TopSurface = Enum.SurfaceType.Smooth
  1115. b60 = Instance.new("SpecialMesh", p60)
  1116. b60.MeshType = Enum.MeshType.Wedge
  1117. b60.Name = "WedgeMesh"
  1118. b60.Scale = Vector3.new(0.533715785, 0.133429006, 0.0667144954)
  1119. p61 = Instance.new("Part", m)
  1120. p61.BrickColor = BrickColor.new("Really black")
  1121. p61.Material = Enum.Material.SmoothPlastic
  1122. p61.Name = "Block"
  1123. 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)
  1124. p61.CanCollide = false
  1125. p61.Locked = true
  1126. p61.FormFactor = Enum.FormFactor.Custom
  1127. p61.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  1128. p61.BottomSurface = Enum.SurfaceType.Smooth
  1129. p61.TopSurface = Enum.SurfaceType.Smooth
  1130. b61 = Instance.new("SpecialMesh", p61)
  1131. b61.MeshType = Enum.MeshType.Wedge
  1132. b61.Name = "WedgeMesh"
  1133. b61.Scale = Vector3.new(0.533715785, 0.133429006, 0.066714488)
  1134. p62 = Instance.new("Part", m)
  1135. p62.BrickColor = BrickColor.new("Dark Indigo")
  1136. p62.Material = Enum.Material.Neon
  1137. 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)
  1138. p62.CanCollide = false
  1139. p62.Locked = true
  1140. p62.FormFactor = Enum.FormFactor.Custom
  1141. p62.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  1142. p62.BottomSurface = Enum.SurfaceType.Smooth
  1143. p62.TopSurface = Enum.SurfaceType.Smooth
  1144. b62 = Instance.new("SpecialMesh", p62)
  1145. b62.MeshType = Enum.MeshType.Sphere
  1146. b62.Name = "Mesh"
  1147. b62.Scale = Vector3.new(0.120086111, 0.903981566, 0.200143546)
  1148. p63 = Instance.new("Part", m)
  1149. p63.BrickColor = BrickColor.new("Dark Indigo")
  1150. p63.Material = Enum.Material.Neon
  1151. 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)
  1152. p63.CanCollide = false
  1153. p63.Locked = true
  1154. p63.FormFactor = Enum.FormFactor.Custom
  1155. p63.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  1156. p63.BottomSurface = Enum.SurfaceType.Smooth
  1157. p63.TopSurface = Enum.SurfaceType.Smooth
  1158. b63 = Instance.new("SpecialMesh", p63)
  1159. b63.MeshType = Enum.MeshType.Sphere
  1160. b63.Name = "Mesh"
  1161. b63.Scale = Vector3.new(0.120086111, 0.903981566, 0.200143546)
  1162. p64 = Instance.new("Part", m)
  1163. p64.BrickColor = BrickColor.new("Dark Indigo")
  1164. p64.Material = Enum.Material.Neon
  1165. p64.Name = "Blade"
  1166. 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)
  1167. p64.CanCollide = false
  1168. p64.Locked = true
  1169. p64.FormFactor = Enum.FormFactor.Custom
  1170. p64.Size = Vector3.new(0.341090173, 5.01877022, 0.341090739)
  1171. p64.BottomSurface = Enum.SurfaceType.Smooth
  1172. p64.TopSurface = Enum.SurfaceType.Smooth
  1173. b64 = Instance.new("SpecialMesh", p64)
  1174. b64.MeshType = Enum.MeshType.Sphere
  1175. b64.Name = "Mesh"
  1176. b64.Scale = Vector3.new(0.787231028, 1, 0.333572537)
  1177. p65 = Instance.new("Part", m)
  1178. p65.BrickColor = BrickColor.new("Dark Indigo")
  1179. p65.Material = Enum.Material.Neon
  1180. 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)
  1181. p65.CanCollide = false
  1182. p65.Locked = true
  1183. p65.FormFactor = Enum.FormFactor.Custom
  1184. p65.Size = Vector3.new(0.341090173, 0.535896719, 0.341090739)
  1185. p65.BottomSurface = Enum.SurfaceType.Smooth
  1186. p65.TopSurface = Enum.SurfaceType.Smooth
  1187. b65 = Instance.new("SpecialMesh", p65)
  1188. b65.MeshType = Enum.MeshType.Sphere
  1189. b65.Name = "Mesh"
  1190. b65.Scale = Vector3.new(0.253515095, 1, 0.333572537)
  1191. p66 = Instance.new("Part", m)
  1192. p66.BrickColor = BrickColor.new("Dark Indigo")
  1193. p66.Material = Enum.Material.Neon
  1194. 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)
  1195. p66.CanCollide = false
  1196. p66.Locked = true
  1197. p66.FormFactor = Enum.FormFactor.Custom
  1198. p66.Size = Vector3.new(0.341090173, 3.76720667, 0.341090739)
  1199. p66.BottomSurface = Enum.SurfaceType.Smooth
  1200. p66.TopSurface = Enum.SurfaceType.Smooth
  1201. b66 = Instance.new("SpecialMesh", p66)
  1202. b66.MeshType = Enum.MeshType.Sphere
  1203. b66.Name = "Mesh"
  1204. b66.Scale = Vector3.new(0.920660138, 1, 0.333572537)
  1205. p67 = Instance.new("Part", m)
  1206. p67.BrickColor = BrickColor.new("Gold")
  1207. p67.Material = Enum.Material.SmoothPlastic
  1208. p67.Reflectance = 0.30000001192093
  1209. p67.Name = "Circle"
  1210. 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)
  1211. p67.CanCollide = false
  1212. p67.Locked = true
  1213. p67.FormFactor = Enum.FormFactor.Custom
  1214. p67.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  1215. p67.BottomSurface = Enum.SurfaceType.Smooth
  1216. p67.TopSurface = Enum.SurfaceType.Smooth
  1217. b67 = Instance.new("CylinderMesh", p67)
  1218. b67.Name = "Mesh"
  1219. b67.Scale = Vector3.new(0.400286883, 0.533716023, 0.467001468)
  1220. p68 = Instance.new("Part", m)
  1221. p68.BrickColor = BrickColor.new("Gold")
  1222. p68.Material = Enum.Material.SmoothPlastic
  1223. p68.Reflectance = 0.30000001192093
  1224. p68.Name = "Circle"
  1225. 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)
  1226. p68.CanCollide = false
  1227. p68.Locked = true
  1228. p68.FormFactor = Enum.FormFactor.Custom
  1229. p68.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  1230. p68.BottomSurface = Enum.SurfaceType.Smooth
  1231. p68.TopSurface = Enum.SurfaceType.Smooth
  1232. b68 = Instance.new("CylinderMesh", p68)
  1233. b68.Name = "Mesh"
  1234. b68.Scale = Vector3.new(0.467001408, 0.266858011, 0.467001468)
  1235. p69 = Instance.new("Part", m)
  1236. p69.BrickColor = BrickColor.new("Really black")
  1237. p69.Material = Enum.Material.SmoothPlastic
  1238. p69.Name = "Block"
  1239. 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)
  1240. p69.CanCollide = false
  1241. p69.Locked = true
  1242. p69.FormFactor = Enum.FormFactor.Custom
  1243. p69.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  1244. p69.BottomSurface = Enum.SurfaceType.Smooth
  1245. p69.TopSurface = Enum.SurfaceType.Smooth
  1246. b69 = Instance.new("SpecialMesh", p69)
  1247. b69.MeshType = Enum.MeshType.Wedge
  1248. b69.Name = "WedgeMesh"
  1249. b69.Scale = Vector3.new(0.533715904, 0.29687953, 0.300215244)
  1250. p70 = Instance.new("Part", m)
  1251. p70.BrickColor = BrickColor.new("Really black")
  1252. p70.Material = Enum.Material.SmoothPlastic
  1253. p70.Name = "Block"
  1254. 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)
  1255. p70.CanCollide = false
  1256. p70.Locked = true
  1257. p70.FormFactor = Enum.FormFactor.Custom
  1258. p70.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  1259. p70.BottomSurface = Enum.SurfaceType.Smooth
  1260. p70.TopSurface = Enum.SurfaceType.Smooth
  1261. b70 = Instance.new("SpecialMesh", p70)
  1262. b70.MeshType = Enum.MeshType.Wedge
  1263. b70.Name = "WedgeMesh"
  1264. b70.Scale = Vector3.new(0.533715785, 0.29687953, 0.300215244)
  1265. w1 = Instance.new("Weld", p1)
  1266. w1.Name = "Part_Weld"
  1267. w1.Part0 = p1
  1268. 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)
  1269. w1.Part1 = p2
  1270. 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)
  1271. w2 = Instance.new("Weld", p2)
  1272. w2.Name = "Part_Weld"
  1273. w2.Part0 = p2
  1274. 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)
  1275. w2.Part1 = p3
  1276. 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)
  1277. w3 = Instance.new("Weld", p3)
  1278. w3.Name = "Part_Weld"
  1279. w3.Part0 = p3
  1280. 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)
  1281. w3.Part1 = p4
  1282. 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)
  1283. w4 = Instance.new("Weld", p4)
  1284. w4.Name = "Part_Weld"
  1285. w4.Part0 = p4
  1286. 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)
  1287. w4.Part1 = p5
  1288. 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)
  1289. w5 = Instance.new("Weld", p5)
  1290. w5.Name = "Part_Weld"
  1291. w5.Part0 = p5
  1292. 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)
  1293. w5.Part1 = p6
  1294. 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)
  1295. w6 = Instance.new("Weld", p6)
  1296. w6.Name = "Part_Weld"
  1297. w6.Part0 = p6
  1298. 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)
  1299. w6.Part1 = p7
  1300. 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)
  1301. w7 = Instance.new("Weld", p7)
  1302. w7.Name = "Part_Weld"
  1303. w7.Part0 = p7
  1304. 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)
  1305. w7.Part1 = p8
  1306. 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)
  1307. w8 = Instance.new("Weld", p8)
  1308. w8.Name = "Part_Weld"
  1309. w8.Part0 = p8
  1310. 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)
  1311. w8.Part1 = p9
  1312. 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)
  1313. w9 = Instance.new("Weld", p9)
  1314. w9.Name = "Part_Weld"
  1315. w9.Part0 = p9
  1316. 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)
  1317. w9.Part1 = p10
  1318. 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)
  1319. w10 = Instance.new("Weld", p10)
  1320. w10.Name = "Part_Weld"
  1321. w10.Part0 = p10
  1322. 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)
  1323. w10.Part1 = p11
  1324. 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)
  1325. w11 = Instance.new("Weld", p11)
  1326. w11.Name = "Part_Weld"
  1327. w11.Part0 = p11
  1328. 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)
  1329. w11.Part1 = p12
  1330. 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)
  1331. w12 = Instance.new("Weld", p12)
  1332. w12.Name = "Part_Weld"
  1333. w12.Part0 = p12
  1334. 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)
  1335. w12.Part1 = p13
  1336. 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)
  1337. w13 = Instance.new("Weld", p13)
  1338. w13.Name = "Part_Weld"
  1339. w13.Part0 = p13
  1340. 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)
  1341. w13.Part1 = p14
  1342. 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)
  1343. w14 = Instance.new("Weld", p14)
  1344. w14.Name = "Part_Weld"
  1345. w14.Part0 = p14
  1346. 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)
  1347. w14.Part1 = p15
  1348. 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)
  1349. w15 = Instance.new("Weld", p15)
  1350. w15.Name = "Part_Weld"
  1351. w15.Part0 = p15
  1352. 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)
  1353. w15.Part1 = p16
  1354. 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)
  1355. w16 = Instance.new("Weld", p16)
  1356. w16.Name = "Part_Weld"
  1357. w16.Part0 = p16
  1358. 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)
  1359. w16.Part1 = p17
  1360. 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)
  1361. w17 = Instance.new("Weld", p17)
  1362. w17.Name = "Part_Weld"
  1363. w17.Part0 = p17
  1364. 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)
  1365. w17.Part1 = p18
  1366. 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)
  1367. w18 = Instance.new("Weld", p18)
  1368. w18.Name = "Part_Weld"
  1369. w18.Part0 = p18
  1370. 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)
  1371. w18.Part1 = p19
  1372. 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)
  1373. w19 = Instance.new("Weld", p19)
  1374. w19.Name = "Part_Weld"
  1375. w19.Part0 = p19
  1376. 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)
  1377. w19.Part1 = p20
  1378. 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)
  1379. w20 = Instance.new("Weld", p20)
  1380. w20.Name = "Part_Weld"
  1381. w20.Part0 = p20
  1382. 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)
  1383. w20.Part1 = p21
  1384. 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)
  1385. w21 = Instance.new("Weld", p21)
  1386. w21.Name = "Part_Weld"
  1387. w21.Part0 = p21
  1388. 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)
  1389. w21.Part1 = p22
  1390. 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)
  1391. w22 = Instance.new("Weld", p22)
  1392. w22.Name = "Part_Weld"
  1393. w22.Part0 = p22
  1394. 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)
  1395. w22.Part1 = p23
  1396. 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)
  1397. w23 = Instance.new("Weld", p23)
  1398. w23.Name = "Part_Weld"
  1399. w23.Part0 = p23
  1400. 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)
  1401. w23.Part1 = p24
  1402. 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)
  1403. w24 = Instance.new("Weld", p24)
  1404. w24.Name = "Part_Weld"
  1405. w24.Part0 = p24
  1406. 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)
  1407. w24.Part1 = p25
  1408. 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)
  1409. w25 = Instance.new("Weld", p25)
  1410. w25.Name = "Part_Weld"
  1411. w25.Part0 = p25
  1412. 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)
  1413. w25.Part1 = p26
  1414. 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)
  1415. w26 = Instance.new("Weld", p26)
  1416. w26.Name = "Part_Weld"
  1417. w26.Part0 = p26
  1418. 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)
  1419. w26.Part1 = p27
  1420. 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)
  1421. w27 = Instance.new("Weld", p27)
  1422. w27.Name = "Part_Weld"
  1423. w27.Part0 = p27
  1424. 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)
  1425. w27.Part1 = p28
  1426. 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)
  1427. w28 = Instance.new("Weld", p28)
  1428. w28.Name = "Part_Weld"
  1429. w28.Part0 = p28
  1430. 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)
  1431. w28.Part1 = p29
  1432. 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)
  1433. w29 = Instance.new("Weld", p29)
  1434. w29.Name = "Part_Weld"
  1435. w29.Part0 = p29
  1436. 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)
  1437. w29.Part1 = p30
  1438. 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)
  1439. w30 = Instance.new("Weld", p30)
  1440. w30.Name = "Part_Weld"
  1441. w30.Part0 = p30
  1442. 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)
  1443. w30.Part1 = p31
  1444. 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)
  1445. w31 = Instance.new("Weld", p31)
  1446. w31.Name = "Part_Weld"
  1447. w31.Part0 = p31
  1448. 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)
  1449. w31.Part1 = p32
  1450. 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)
  1451. w32 = Instance.new("Weld", p32)
  1452. w32.Name = "Part_Weld"
  1453. w32.Part0 = p32
  1454. 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)
  1455. w32.Part1 = p33
  1456. 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)
  1457. w33 = Instance.new("Weld", p33)
  1458. w33.Name = "Part_Weld"
  1459. w33.Part0 = p33
  1460. 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)
  1461. w33.Part1 = p34
  1462. 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)
  1463. w34 = Instance.new("Weld", p34)
  1464. w34.Name = "Part_Weld"
  1465. w34.Part0 = p34
  1466. 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)
  1467. w34.Part1 = p35
  1468. 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)
  1469. w35 = Instance.new("Weld", p35)
  1470. w35.Name = "Part_Weld"
  1471. w35.Part0 = p35
  1472. 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)
  1473. w35.Part1 = p36
  1474. 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)
  1475. w36 = Instance.new("Weld", p36)
  1476. w36.Name = "Part_Weld"
  1477. w36.Part0 = p36
  1478. 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)
  1479. w36.Part1 = p37
  1480. 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)
  1481. w37 = Instance.new("Weld", p37)
  1482. w37.Name = "Part_Weld"
  1483. w37.Part0 = p37
  1484. 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)
  1485. w37.Part1 = p38
  1486. 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)
  1487. w38 = Instance.new("Weld", p38)
  1488. w38.Name = "Circle_Weld"
  1489. w38.Part0 = p38
  1490. 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)
  1491. w38.Part1 = p39
  1492. 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)
  1493. w39 = Instance.new("Weld", p39)
  1494. w39.Name = "Block_Weld"
  1495. w39.Part0 = p39
  1496. 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)
  1497. w39.Part1 = p40
  1498. 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)
  1499. w40 = Instance.new("Weld", p40)
  1500. w40.Name = "Block_Weld"
  1501. w40.Part0 = p40
  1502. 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)
  1503. w40.Part1 = p41
  1504. 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)
  1505. w41 = Instance.new("Weld", p41)
  1506. w41.Name = "Circle_Weld"
  1507. w41.Part0 = p41
  1508. 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)
  1509. w41.Part1 = p42
  1510. 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)
  1511. w42 = Instance.new("Weld", p42)
  1512. w42.Name = "Circle_Weld"
  1513. w42.Part0 = p42
  1514. 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)
  1515. w42.Part1 = p43
  1516. 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)
  1517. w43 = Instance.new("Weld", p43)
  1518. w43.Name = "Part_Weld"
  1519. w43.Part0 = p43
  1520. 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)
  1521. w43.Part1 = p44
  1522. 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)
  1523. w44 = Instance.new("Weld", p44)
  1524. w44.Name = "Part_Weld"
  1525. w44.Part0 = p44
  1526. 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)
  1527. w44.Part1 = p45
  1528. 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)
  1529. w45 = Instance.new("Weld", p45)
  1530. w45.Name = "Part_Weld"
  1531. w45.Part0 = p45
  1532. 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)
  1533. w45.Part1 = p46
  1534. 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)
  1535. w46 = Instance.new("Weld", p46)
  1536. w46.Name = "Handle_Weld"
  1537. w46.Part0 = p46
  1538. 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)
  1539. w46.Part1 = p47
  1540. 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)
  1541. w47 = Instance.new("Weld", p47)
  1542. w47.Name = "Block_Weld"
  1543. w47.Part0 = p47
  1544. 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)
  1545. w47.Part1 = p48
  1546. 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)
  1547. w48 = Instance.new("Weld", p48)
  1548. w48.Name = "Block_Weld"
  1549. w48.Part0 = p48
  1550. 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)
  1551. w48.Part1 = p49
  1552. 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)
  1553. w49 = Instance.new("Weld", p49)
  1554. w49.Name = "Block_Weld"
  1555. w49.Part0 = p49
  1556. 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)
  1557. w49.Part1 = p50
  1558. 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)
  1559. w50 = Instance.new("Weld", p50)
  1560. w50.Name = "Block_Weld"
  1561. w50.Part0 = p50
  1562. 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)
  1563. w50.Part1 = p51
  1564. 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)
  1565. w51 = Instance.new("Weld", p51)
  1566. w51.Name = "Block_Weld"
  1567. w51.Part0 = p51
  1568. 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)
  1569. w51.Part1 = p52
  1570. 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)
  1571. w52 = Instance.new("Weld", p52)
  1572. w52.Name = "Circle_Weld"
  1573. w52.Part0 = p52
  1574. 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)
  1575. w52.Part1 = p53
  1576. 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)
  1577. w53 = Instance.new("Weld", p53)
  1578. w53.Name = "Circle_Weld"
  1579. w53.Part0 = p53
  1580. 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)
  1581. w53.Part1 = p54
  1582. 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)
  1583. w54 = Instance.new("Weld", p54)
  1584. w54.Name = "Part_Weld"
  1585. w54.Part0 = p54
  1586. 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)
  1587. w54.Part1 = p55
  1588. 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)
  1589. w55 = Instance.new("Weld", p55)
  1590. w55.Name = "Part_Weld"
  1591. w55.Part0 = p55
  1592. 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)
  1593. w55.Part1 = p56
  1594. 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)
  1595. w56 = Instance.new("Weld", p56)
  1596. w56.Name = "Part_Weld"
  1597. w56.Part0 = p56
  1598. 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)
  1599. w56.Part1 = p57
  1600. 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)
  1601. w57 = Instance.new("Weld", p57)
  1602. w57.Name = "Block_Weld"
  1603. w57.Part0 = p57
  1604. 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)
  1605. w57.Part1 = p58
  1606. 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)
  1607. w58 = Instance.new("Weld", p58)
  1608. w58.Name = "Block_Weld"
  1609. w58.Part0 = p58
  1610. 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)
  1611. w58.Part1 = p59
  1612. 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)
  1613. w59 = Instance.new("Weld", p59)
  1614. w59.Name = "Block_Weld"
  1615. w59.Part0 = p59
  1616. 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)
  1617. w59.Part1 = p60
  1618. 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)
  1619. w60 = Instance.new("Weld", p60)
  1620. w60.Name = "Block_Weld"
  1621. w60.Part0 = p60
  1622. 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)
  1623. w60.Part1 = p61
  1624. 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)
  1625. w61 = Instance.new("Weld", p61)
  1626. w61.Name = "Part_Weld"
  1627. w61.Part0 = p61
  1628. 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)
  1629. w61.Part1 = p62
  1630. 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)
  1631. w62 = Instance.new("Weld", p62)
  1632. w62.Name = "Part_Weld"
  1633. w62.Part0 = p62
  1634. 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)
  1635. w62.Part1 = p63
  1636. 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)
  1637. w63 = Instance.new("Weld", p63)
  1638. w63.Name = "Blade_Weld"
  1639. w63.Part0 = p63
  1640. 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)
  1641. w63.Part1 = p64
  1642. 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)
  1643. w64 = Instance.new("Weld", p64)
  1644. w64.Name = "Part_Weld"
  1645. w64.Part0 = p64
  1646. 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)
  1647. w64.Part1 = p65
  1648. 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)
  1649. w65 = Instance.new("Weld", p65)
  1650. w65.Name = "Part_Weld"
  1651. w65.Part0 = p65
  1652. 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)
  1653. w65.Part1 = p66
  1654. 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)
  1655. w66 = Instance.new("Weld", p66)
  1656. w66.Name = "Circle_Weld"
  1657. w66.Part0 = p66
  1658. 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)
  1659. w66.Part1 = p67
  1660. 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)
  1661. w67 = Instance.new("Weld", p67)
  1662. w67.Name = "Circle_Weld"
  1663. w67.Part0 = p67
  1664. 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)
  1665. w67.Part1 = p68
  1666. 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)
  1667. w68 = Instance.new("Weld", p68)
  1668. w68.Name = "Block_Weld"
  1669. w68.Part0 = p68
  1670. 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)
  1671. w68.Part1 = p69
  1672. 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)
  1673. w69 = Instance.new("Weld", p69)
  1674. w69.Name = "Block_Weld"
  1675. w69.Part0 = p69
  1676. 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)
  1677. w69.Part1 = p70
  1678. 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)
  1679. m.Parent = char
  1680. m:MakeJoints()
  1681. ----------------------------------------------------
  1682. local cor = Instance.new("Part", char.Sword)
  1683. cor.Name = "Thingy"
  1684. cor.Locked = true
  1685. cor.BottomSurface = 0
  1686. cor.CanCollide = false
  1687. cor.Size = Vector3.new(1, 1, 1)
  1688. cor.Transparency = 1
  1689. cor.TopSurface = 0
  1690. corw = Instance.new("Weld", cor)
  1691. corw.Part0 = rarm
  1692. corw.Part1 = cor
  1693. corw.C0 = CFrame.new(0, -0.85, 0) * CFrame.Angles(math.rad(-90), math.rad(0), math.rad(0))
  1694. corw.C1 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  1695. weld1 = Instance.new("Weld", char.Sword)
  1696. weld1.Part0 = cor
  1697. weld1.Part1 = char.Sword.Handle
  1698. weld1.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  1699. ----------------------------------------------------
  1700. local m2 = Instance.new("Model")
  1701. m2.Name = "Wings"
  1702. p1 = Instance.new("Part", m2)
  1703. p1.BrickColor = BrickColor.new("Dark Indigo")
  1704. p1.Material = Enum.Material.Neon
  1705. 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)
  1706. p1.FormFactor = Enum.FormFactor.Custom
  1707. p1.Size = Vector3.new(0.61060679, 3.09150696, 0.221234918)
  1708. p1.BottomSurface = Enum.SurfaceType.Smooth
  1709. p1.TopSurface = Enum.SurfaceType.Smooth
  1710. b1 = Instance.new("SpecialMesh", p1)
  1711. b1.MeshType = Enum.MeshType.Sphere
  1712. b1.Name = "Mesh"
  1713. p2 = Instance.new("Part", m2)
  1714. p2.BrickColor = BrickColor.new("Dark Indigo")
  1715. p2.Material = Enum.Material.SmoothPlastic
  1716. p2.Reflectance = 0.30000001192093
  1717. 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)
  1718. p2.CanCollide = false
  1719. p2.FormFactor = Enum.FormFactor.Custom
  1720. p2.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  1721. p2.BottomSurface = Enum.SurfaceType.Smooth
  1722. p2.TopSurface = Enum.SurfaceType.Smooth
  1723. b2 = Instance.new("SpecialMesh", p2)
  1724. b2.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1725. b2.TextureId = ""
  1726. b2.MeshType = Enum.MeshType.FileMesh
  1727. b2.Name = "Mesh"
  1728. b2.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  1729. p3 = Instance.new("Part", m2)
  1730. p3.BrickColor = BrickColor.new("Dark Indigo")
  1731. p3.Material = Enum.Material.SmoothPlastic
  1732. p3.Reflectance = 0.30000001192093
  1733. 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)
  1734. p3.CanCollide = false
  1735. p3.FormFactor = Enum.FormFactor.Custom
  1736. p3.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  1737. p3.BottomSurface = Enum.SurfaceType.Smooth
  1738. p3.TopSurface = Enum.SurfaceType.Smooth
  1739. b3 = Instance.new("SpecialMesh", p3)
  1740. b3.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1741. b3.TextureId = ""
  1742. b3.MeshType = Enum.MeshType.FileMesh
  1743. b3.Name = "Mesh"
  1744. b3.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  1745. p4 = Instance.new("Part", m2)
  1746. p4.BrickColor = BrickColor.new("Dark Indigo")
  1747. p4.Material = Enum.Material.SmoothPlastic
  1748. p4.Reflectance = 0.30000001192093
  1749. 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)
  1750. p4.CanCollide = false
  1751. p4.FormFactor = Enum.FormFactor.Custom
  1752. p4.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  1753. p4.BottomSurface = Enum.SurfaceType.Smooth
  1754. p4.TopSurface = Enum.SurfaceType.Smooth
  1755. b4 = Instance.new("SpecialMesh", p4)
  1756. b4.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1757. b4.TextureId = ""
  1758. b4.MeshType = Enum.MeshType.FileMesh
  1759. b4.Name = "Mesh"
  1760. b4.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  1761. p5 = Instance.new("Part", m2)
  1762. p5.BrickColor = BrickColor.new("Dark Indigo")
  1763. p5.Material = Enum.Material.SmoothPlastic
  1764. p5.Reflectance = 0.30000001192093
  1765. 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)
  1766. p5.CanCollide = false
  1767. p5.FormFactor = Enum.FormFactor.Custom
  1768. p5.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  1769. p5.BottomSurface = Enum.SurfaceType.Smooth
  1770. p5.TopSurface = Enum.SurfaceType.Smooth
  1771. b5 = Instance.new("SpecialMesh", p5)
  1772. b5.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1773. b5.TextureId = ""
  1774. b5.MeshType = Enum.MeshType.FileMesh
  1775. b5.Name = "Mesh"
  1776. b5.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  1777. p6 = Instance.new("Part", m2)
  1778. p6.BrickColor = BrickColor.new("Dark Indigo")
  1779. p6.Material = Enum.Material.SmoothPlastic
  1780. p6.Reflectance = 0.30000001192093
  1781. 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)
  1782. p6.CanCollide = false
  1783. p6.FormFactor = Enum.FormFactor.Custom
  1784. p6.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  1785. p6.BottomSurface = Enum.SurfaceType.Smooth
  1786. p6.TopSurface = Enum.SurfaceType.Smooth
  1787. b6 = Instance.new("SpecialMesh", p6)
  1788. b6.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1789. b6.TextureId = ""
  1790. b6.MeshType = Enum.MeshType.FileMesh
  1791. b6.Name = "Mesh"
  1792. b6.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  1793. p7 = Instance.new("Part", m2)
  1794. p7.BrickColor = BrickColor.new("Dark Indigo")
  1795. p7.Material = Enum.Material.SmoothPlastic
  1796. p7.Reflectance = 0.30000001192093
  1797. 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)
  1798. p7.CanCollide = false
  1799. p7.FormFactor = Enum.FormFactor.Custom
  1800. p7.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  1801. p7.BottomSurface = Enum.SurfaceType.Smooth
  1802. p7.TopSurface = Enum.SurfaceType.Smooth
  1803. b7 = Instance.new("SpecialMesh", p7)
  1804. b7.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1805. b7.TextureId = ""
  1806. b7.MeshType = Enum.MeshType.FileMesh
  1807. b7.Name = "Mesh"
  1808. b7.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  1809. p8 = Instance.new("Part", m2)
  1810. p8.BrickColor = BrickColor.new("Dark Indigo")
  1811. p8.Material = Enum.Material.SmoothPlastic
  1812. p8.Reflectance = 0.30000001192093
  1813. 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)
  1814. p8.CanCollide = false
  1815. p8.FormFactor = Enum.FormFactor.Custom
  1816. p8.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  1817. p8.BottomSurface = Enum.SurfaceType.Smooth
  1818. p8.TopSurface = Enum.SurfaceType.Smooth
  1819. b8 = Instance.new("SpecialMesh", p8)
  1820. b8.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1821. b8.TextureId = ""
  1822. b8.MeshType = Enum.MeshType.FileMesh
  1823. b8.Name = "Mesh"
  1824. b8.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  1825. p9 = Instance.new("Part", m2)
  1826. p9.BrickColor = BrickColor.new("Dark Indigo")
  1827. p9.Material = Enum.Material.SmoothPlastic
  1828. p9.Reflectance = 0.30000001192093
  1829. 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)
  1830. p9.CanCollide = false
  1831. p9.FormFactor = Enum.FormFactor.Custom
  1832. p9.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  1833. p9.BottomSurface = Enum.SurfaceType.Smooth
  1834. p9.TopSurface = Enum.SurfaceType.Smooth
  1835. b9 = Instance.new("SpecialMesh", p9)
  1836. b9.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1837. b9.TextureId = ""
  1838. b9.MeshType = Enum.MeshType.FileMesh
  1839. b9.Name = "Mesh"
  1840. b9.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  1841. p10 = Instance.new("Part", m2)
  1842. p10.BrickColor = BrickColor.new("Dark Indigo")
  1843. p10.Material = Enum.Material.SmoothPlastic
  1844. p10.Reflectance = 0.30000001192093
  1845. 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)
  1846. p10.CanCollide = false
  1847. p10.FormFactor = Enum.FormFactor.Custom
  1848. p10.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  1849. p10.BottomSurface = Enum.SurfaceType.Smooth
  1850. p10.TopSurface = Enum.SurfaceType.Smooth
  1851. b10 = Instance.new("SpecialMesh", p10)
  1852. b10.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1853. b10.TextureId = ""
  1854. b10.MeshType = Enum.MeshType.FileMesh
  1855. b10.Name = "Mesh"
  1856. b10.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  1857. p11 = Instance.new("Part", m2)
  1858. p11.BrickColor = BrickColor.new("Dark Indigo")
  1859. p11.Material = Enum.Material.SmoothPlastic
  1860. p11.Reflectance = 0.30000001192093
  1861. 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)
  1862. p11.CanCollide = false
  1863. p11.FormFactor = Enum.FormFactor.Custom
  1864. p11.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  1865. p11.BottomSurface = Enum.SurfaceType.Smooth
  1866. p11.TopSurface = Enum.SurfaceType.Smooth
  1867. b11 = Instance.new("SpecialMesh", p11)
  1868. b11.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1869. b11.TextureId = ""
  1870. b11.MeshType = Enum.MeshType.FileMesh
  1871. b11.Name = "Mesh"
  1872. b11.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  1873. p12 = Instance.new("Part", m2)
  1874. p12.BrickColor = BrickColor.new("Dark Indigo")
  1875. p12.Material = Enum.Material.SmoothPlastic
  1876. p12.Reflectance = 0.30000001192093
  1877. 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)
  1878. p12.CanCollide = false
  1879. p12.FormFactor = Enum.FormFactor.Custom
  1880. p12.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  1881. p12.BottomSurface = Enum.SurfaceType.Smooth
  1882. p12.TopSurface = Enum.SurfaceType.Smooth
  1883. b12 = Instance.new("SpecialMesh", p12)
  1884. b12.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1885. b12.TextureId = ""
  1886. b12.MeshType = Enum.MeshType.FileMesh
  1887. b12.Name = "Mesh"
  1888. b12.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  1889. p13 = Instance.new("Part", m2)
  1890. p13.BrickColor = BrickColor.new("Dark Indigo")
  1891. p13.Material = Enum.Material.SmoothPlastic
  1892. p13.Reflectance = 0.30000001192093
  1893. 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)
  1894. p13.CanCollide = false
  1895. p13.FormFactor = Enum.FormFactor.Custom
  1896. p13.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  1897. p13.BottomSurface = Enum.SurfaceType.Smooth
  1898. p13.TopSurface = Enum.SurfaceType.Smooth
  1899. b13 = Instance.new("SpecialMesh", p13)
  1900. b13.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1901. b13.TextureId = ""
  1902. b13.MeshType = Enum.MeshType.FileMesh
  1903. b13.Name = "Mesh"
  1904. b13.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  1905. p14 = Instance.new("Part", m2)
  1906. p14.BrickColor = BrickColor.new("Dark Indigo")
  1907. p14.Material = Enum.Material.SmoothPlastic
  1908. p14.Reflectance = 0.30000001192093
  1909. 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)
  1910. p14.CanCollide = false
  1911. p14.FormFactor = Enum.FormFactor.Custom
  1912. p14.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  1913. p14.BottomSurface = Enum.SurfaceType.Smooth
  1914. p14.TopSurface = Enum.SurfaceType.Smooth
  1915. b14 = Instance.new("SpecialMesh", p14)
  1916. b14.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1917. b14.TextureId = ""
  1918. b14.MeshType = Enum.MeshType.FileMesh
  1919. b14.Name = "Mesh"
  1920. b14.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  1921. p15 = Instance.new("Part", m2)
  1922. p15.BrickColor = BrickColor.new("Dark Indigo")
  1923. p15.Material = Enum.Material.SmoothPlastic
  1924. p15.Reflectance = 0.30000001192093
  1925. 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)
  1926. p15.CanCollide = false
  1927. p15.FormFactor = Enum.FormFactor.Custom
  1928. p15.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  1929. p15.BottomSurface = Enum.SurfaceType.Smooth
  1930. p15.TopSurface = Enum.SurfaceType.Smooth
  1931. b15 = Instance.new("SpecialMesh", p15)
  1932. b15.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1933. b15.TextureId = ""
  1934. b15.MeshType = Enum.MeshType.FileMesh
  1935. b15.Name = "Mesh"
  1936. b15.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  1937. p16 = Instance.new("Part", m2)
  1938. p16.BrickColor = BrickColor.new("Dark Indigo")
  1939. p16.Material = Enum.Material.SmoothPlastic
  1940. p16.Reflectance = 0.30000001192093
  1941. 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)
  1942. p16.CanCollide = false
  1943. p16.FormFactor = Enum.FormFactor.Custom
  1944. p16.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  1945. p16.BottomSurface = Enum.SurfaceType.Smooth
  1946. p16.TopSurface = Enum.SurfaceType.Smooth
  1947. b16 = Instance.new("SpecialMesh", p16)
  1948. b16.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1949. b16.TextureId = ""
  1950. b16.MeshType = Enum.MeshType.FileMesh
  1951. b16.Name = "Mesh"
  1952. b16.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  1953. p17 = Instance.new("Part", m2)
  1954. p17.BrickColor = BrickColor.new("Dark Indigo")
  1955. p17.Material = Enum.Material.SmoothPlastic
  1956. p17.Reflectance = 0.30000001192093
  1957. 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)
  1958. p17.CanCollide = false
  1959. p17.FormFactor = Enum.FormFactor.Custom
  1960. p17.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  1961. p17.BottomSurface = Enum.SurfaceType.Smooth
  1962. p17.TopSurface = Enum.SurfaceType.Smooth
  1963. b17 = Instance.new("SpecialMesh", p17)
  1964. b17.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1965. b17.TextureId = ""
  1966. b17.MeshType = Enum.MeshType.FileMesh
  1967. b17.Name = "Mesh"
  1968. b17.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  1969. p18 = Instance.new("Part", m2)
  1970. p18.BrickColor = BrickColor.new("Dark Indigo")
  1971. p18.Material = Enum.Material.SmoothPlastic
  1972. p18.Reflectance = 0.30000001192093
  1973. 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)
  1974. p18.CanCollide = false
  1975. p18.FormFactor = Enum.FormFactor.Custom
  1976. p18.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  1977. p18.BottomSurface = Enum.SurfaceType.Smooth
  1978. p18.TopSurface = Enum.SurfaceType.Smooth
  1979. b18 = Instance.new("SpecialMesh", p18)
  1980. b18.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1981. b18.TextureId = ""
  1982. b18.MeshType = Enum.MeshType.FileMesh
  1983. b18.Name = "Mesh"
  1984. b18.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  1985. p19 = Instance.new("Part", m2)
  1986. p19.BrickColor = BrickColor.new("Dark Indigo")
  1987. p19.Material = Enum.Material.SmoothPlastic
  1988. p19.Reflectance = 0.30000001192093
  1989. 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)
  1990. p19.CanCollide = false
  1991. p19.FormFactor = Enum.FormFactor.Custom
  1992. p19.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  1993. p19.BottomSurface = Enum.SurfaceType.Smooth
  1994. p19.TopSurface = Enum.SurfaceType.Smooth
  1995. b19 = Instance.new("SpecialMesh", p19)
  1996. b19.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1997. b19.TextureId = ""
  1998. b19.MeshType = Enum.MeshType.FileMesh
  1999. b19.Name = "Mesh"
  2000. b19.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  2001. p20 = Instance.new("Part", m2)
  2002. p20.BrickColor = BrickColor.new("Dark Indigo")
  2003. p20.Material = Enum.Material.SmoothPlastic
  2004. p20.Reflectance = 0.30000001192093
  2005. 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)
  2006. p20.CanCollide = false
  2007. p20.FormFactor = Enum.FormFactor.Custom
  2008. p20.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  2009. p20.BottomSurface = Enum.SurfaceType.Smooth
  2010. p20.TopSurface = Enum.SurfaceType.Smooth
  2011. b20 = Instance.new("SpecialMesh", p20)
  2012. b20.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2013. b20.TextureId = ""
  2014. b20.MeshType = Enum.MeshType.FileMesh
  2015. b20.Name = "Mesh"
  2016. b20.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  2017. p21 = Instance.new("Part", m2)
  2018. p21.BrickColor = BrickColor.new("Dark Indigo")
  2019. p21.Material = Enum.Material.SmoothPlastic
  2020. p21.Reflectance = 0.30000001192093
  2021. 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)
  2022. p21.CanCollide = false
  2023. p21.FormFactor = Enum.FormFactor.Custom
  2024. p21.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  2025. p21.BottomSurface = Enum.SurfaceType.Smooth
  2026. p21.TopSurface = Enum.SurfaceType.Smooth
  2027. b21 = Instance.new("SpecialMesh", p21)
  2028. b21.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2029. b21.TextureId = ""
  2030. b21.MeshType = Enum.MeshType.FileMesh
  2031. b21.Name = "Mesh"
  2032. b21.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  2033. p22 = Instance.new("Part", m2)
  2034. p22.BrickColor = BrickColor.new("Dark Indigo")
  2035. p22.Material = Enum.Material.SmoothPlastic
  2036. p22.Reflectance = 0.30000001192093
  2037. 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)
  2038. p22.CanCollide = false
  2039. p22.FormFactor = Enum.FormFactor.Custom
  2040. p22.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  2041. p22.BottomSurface = Enum.SurfaceType.Smooth
  2042. p22.TopSurface = Enum.SurfaceType.Smooth
  2043. b22 = Instance.new("SpecialMesh", p22)
  2044. b22.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2045. b22.TextureId = ""
  2046. b22.MeshType = Enum.MeshType.FileMesh
  2047. b22.Name = "Mesh"
  2048. b22.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  2049. p23 = Instance.new("Part", m2)
  2050. p23.BrickColor = BrickColor.new("Dark Indigo")
  2051. p23.Material = Enum.Material.SmoothPlastic
  2052. p23.Reflectance = 0.30000001192093
  2053. 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)
  2054. p23.CanCollide = false
  2055. p23.FormFactor = Enum.FormFactor.Custom
  2056. p23.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  2057. p23.BottomSurface = Enum.SurfaceType.Smooth
  2058. p23.TopSurface = Enum.SurfaceType.Smooth
  2059. b23 = Instance.new("SpecialMesh", p23)
  2060. b23.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2061. b23.TextureId = ""
  2062. b23.MeshType = Enum.MeshType.FileMesh
  2063. b23.Name = "Mesh"
  2064. b23.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  2065. p24 = Instance.new("Part", m2)
  2066. p24.BrickColor = BrickColor.new("Dark Indigo")
  2067. p24.Material = Enum.Material.SmoothPlastic
  2068. p24.Reflectance = 0.30000001192093
  2069. 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)
  2070. p24.CanCollide = false
  2071. p24.FormFactor = Enum.FormFactor.Custom
  2072. p24.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  2073. p24.BottomSurface = Enum.SurfaceType.Smooth
  2074. p24.TopSurface = Enum.SurfaceType.Smooth
  2075. b24 = Instance.new("SpecialMesh", p24)
  2076. b24.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2077. b24.TextureId = ""
  2078. b24.MeshType = Enum.MeshType.FileMesh
  2079. b24.Name = "Mesh"
  2080. b24.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  2081. p25 = Instance.new("Part", m2)
  2082. p25.BrickColor = BrickColor.new("Dark Indigo")
  2083. p25.Material = Enum.Material.SmoothPlastic
  2084. p25.Reflectance = 0.30000001192093
  2085. 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)
  2086. p25.CanCollide = false
  2087. p25.FormFactor = Enum.FormFactor.Custom
  2088. p25.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  2089. p25.BottomSurface = Enum.SurfaceType.Smooth
  2090. p25.TopSurface = Enum.SurfaceType.Smooth
  2091. b25 = Instance.new("SpecialMesh", p25)
  2092. b25.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2093. b25.TextureId = ""
  2094. b25.MeshType = Enum.MeshType.FileMesh
  2095. b25.Name = "Mesh"
  2096. b25.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  2097. p26 = Instance.new("Part", m2)
  2098. p26.BrickColor = BrickColor.new("Dark Indigo")
  2099. p26.Material = Enum.Material.SmoothPlastic
  2100. p26.Reflectance = 0.30000001192093
  2101. 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)
  2102. p26.CanCollide = false
  2103. p26.FormFactor = Enum.FormFactor.Custom
  2104. p26.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  2105. p26.BottomSurface = Enum.SurfaceType.Smooth
  2106. p26.TopSurface = Enum.SurfaceType.Smooth
  2107. b26 = Instance.new("SpecialMesh", p26)
  2108. b26.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2109. b26.TextureId = ""
  2110. b26.MeshType = Enum.MeshType.FileMesh
  2111. b26.Name = "Mesh"
  2112. b26.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  2113. p27 = Instance.new("Part", m2)
  2114. p27.BrickColor = BrickColor.new("Dark Indigo")
  2115. p27.Material = Enum.Material.SmoothPlastic
  2116. p27.Reflectance = 0.30000001192093
  2117. 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)
  2118. p27.CanCollide = false
  2119. p27.FormFactor = Enum.FormFactor.Custom
  2120. p27.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  2121. p27.BottomSurface = Enum.SurfaceType.Smooth
  2122. p27.TopSurface = Enum.SurfaceType.Smooth
  2123. b27 = Instance.new("SpecialMesh", p27)
  2124. b27.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2125. b27.TextureId = ""
  2126. b27.MeshType = Enum.MeshType.FileMesh
  2127. b27.Name = "Mesh"
  2128. b27.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  2129. p28 = Instance.new("Part", m2)
  2130. p28.BrickColor = BrickColor.new("Dark Indigo")
  2131. p28.Material = Enum.Material.SmoothPlastic
  2132. p28.Reflectance = 0.30000001192093
  2133. 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)
  2134. p28.CanCollide = false
  2135. p28.FormFactor = Enum.FormFactor.Custom
  2136. p28.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  2137. p28.BottomSurface = Enum.SurfaceType.Smooth
  2138. p28.TopSurface = Enum.SurfaceType.Smooth
  2139. b28 = Instance.new("SpecialMesh", p28)
  2140. b28.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2141. b28.TextureId = ""
  2142. b28.MeshType = Enum.MeshType.FileMesh
  2143. b28.Name = "Mesh"
  2144. b28.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  2145. p29 = Instance.new("Part", m2)
  2146. p29.BrickColor = BrickColor.new("Dark Indigo")
  2147. p29.Material = Enum.Material.Neon
  2148. 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)
  2149. p29.FormFactor = Enum.FormFactor.Custom
  2150. p29.Size = Vector3.new(0.61060679, 3.09150696, 0.221234918)
  2151. p29.BottomSurface = Enum.SurfaceType.Smooth
  2152. p29.TopSurface = Enum.SurfaceType.Smooth
  2153. b29 = Instance.new("SpecialMesh", p29)
  2154. b29.MeshType = Enum.MeshType.Sphere
  2155. b29.Name = "Mesh"
  2156. p30 = Instance.new("Part", m2)
  2157. p30.BrickColor = BrickColor.new("Dark Indigo")
  2158. p30.Material = Enum.Material.SmoothPlastic
  2159. p30.Reflectance = 0.30000001192093
  2160. 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)
  2161. p30.CanCollide = false
  2162. p30.FormFactor = Enum.FormFactor.Custom
  2163. p30.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  2164. p30.BottomSurface = Enum.SurfaceType.Smooth
  2165. p30.TopSurface = Enum.SurfaceType.Smooth
  2166. b30 = Instance.new("SpecialMesh", p30)
  2167. b30.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2168. b30.TextureId = ""
  2169. b30.MeshType = Enum.MeshType.FileMesh
  2170. b30.Name = "Mesh"
  2171. b30.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  2172. p31 = Instance.new("Part", m2)
  2173. p31.BrickColor = BrickColor.new("Dark Indigo")
  2174. p31.Material = Enum.Material.SmoothPlastic
  2175. p31.Reflectance = 0.30000001192093
  2176. 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)
  2177. p31.CanCollide = false
  2178. p31.FormFactor = Enum.FormFactor.Custom
  2179. p31.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  2180. p31.BottomSurface = Enum.SurfaceType.Smooth
  2181. p31.TopSurface = Enum.SurfaceType.Smooth
  2182. b31 = Instance.new("SpecialMesh", p31)
  2183. b31.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2184. b31.TextureId = ""
  2185. b31.MeshType = Enum.MeshType.FileMesh
  2186. b31.Name = "Mesh"
  2187. b31.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  2188. p32 = Instance.new("Part", m2)
  2189. p32.BrickColor = BrickColor.new("Dark Indigo")
  2190. p32.Material = Enum.Material.SmoothPlastic
  2191. p32.Reflectance = 0.30000001192093
  2192. 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)
  2193. p32.CanCollide = false
  2194. p32.FormFactor = Enum.FormFactor.Custom
  2195. p32.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  2196. p32.BottomSurface = Enum.SurfaceType.Smooth
  2197. p32.TopSurface = Enum.SurfaceType.Smooth
  2198. b32 = Instance.new("SpecialMesh", p32)
  2199. b32.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2200. b32.TextureId = ""
  2201. b32.MeshType = Enum.MeshType.FileMesh
  2202. b32.Name = "Mesh"
  2203. b32.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  2204. p33 = Instance.new("Part", m2)
  2205. p33.BrickColor = BrickColor.new("Dark Indigo")
  2206. p33.Material = Enum.Material.Neon
  2207. 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)
  2208. p33.FormFactor = Enum.FormFactor.Custom
  2209. p33.Size = Vector3.new(0.61060679, 7.32508755, 0.221234918)
  2210. p33.BottomSurface = Enum.SurfaceType.Smooth
  2211. p33.TopSurface = Enum.SurfaceType.Smooth
  2212. b33 = Instance.new("SpecialMesh", p33)
  2213. b33.MeshType = Enum.MeshType.Sphere
  2214. b33.Name = "Mesh"
  2215. p34 = Instance.new("Part", m2)
  2216. p34.BrickColor = BrickColor.new("Dark Indigo")
  2217. p34.Material = Enum.Material.SmoothPlastic
  2218. p34.Reflectance = 0.30000001192093
  2219. 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)
  2220. p34.CanCollide = false
  2221. p34.FormFactor = Enum.FormFactor.Custom
  2222. p34.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  2223. p34.BottomSurface = Enum.SurfaceType.Smooth
  2224. p34.TopSurface = Enum.SurfaceType.Smooth
  2225. b34 = Instance.new("SpecialMesh", p34)
  2226. b34.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2227. b34.TextureId = ""
  2228. b34.MeshType = Enum.MeshType.FileMesh
  2229. b34.Name = "Mesh"
  2230. b34.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  2231. p35 = Instance.new("Part", m2)
  2232. p35.BrickColor = BrickColor.new("Dark Indigo")
  2233. p35.Material = Enum.Material.SmoothPlastic
  2234. p35.Reflectance = 0.30000001192093
  2235. 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)
  2236. p35.CanCollide = false
  2237. p35.FormFactor = Enum.FormFactor.Custom
  2238. p35.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  2239. p35.BottomSurface = Enum.SurfaceType.Smooth
  2240. p35.TopSurface = Enum.SurfaceType.Smooth
  2241. b35 = Instance.new("SpecialMesh", p35)
  2242. b35.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2243. b35.TextureId = ""
  2244. b35.MeshType = Enum.MeshType.FileMesh
  2245. b35.Name = "Mesh"
  2246. b35.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  2247. p36 = Instance.new("Part", m2)
  2248. p36.BrickColor = BrickColor.new("Dark Indigo")
  2249. p36.Material = Enum.Material.SmoothPlastic
  2250. p36.Reflectance = 0.30000001192093
  2251. 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)
  2252. p36.CanCollide = false
  2253. p36.FormFactor = Enum.FormFactor.Custom
  2254. p36.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  2255. p36.BottomSurface = Enum.SurfaceType.Smooth
  2256. p36.TopSurface = Enum.SurfaceType.Smooth
  2257. b36 = Instance.new("SpecialMesh", p36)
  2258. b36.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2259. b36.TextureId = ""
  2260. b36.MeshType = Enum.MeshType.FileMesh
  2261. b36.Name = "Mesh"
  2262. b36.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  2263. p37 = Instance.new("Part", m2)
  2264. p37.BrickColor = BrickColor.new("Dark Indigo")
  2265. p37.Material = Enum.Material.Neon
  2266. 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)
  2267. p37.FormFactor = Enum.FormFactor.Custom
  2268. p37.Size = Vector3.new(0.61060679, 7.32508755, 0.221234918)
  2269. p37.BottomSurface = Enum.SurfaceType.Smooth
  2270. p37.TopSurface = Enum.SurfaceType.Smooth
  2271. b37 = Instance.new("SpecialMesh", p37)
  2272. b37.MeshType = Enum.MeshType.Sphere
  2273. b37.Name = "Mesh"
  2274. p38 = Instance.new("Part", m2)
  2275. p38.BrickColor = BrickColor.new("Dark Indigo")
  2276. p38.Material = Enum.Material.Neon
  2277. 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)
  2278. p38.FormFactor = Enum.FormFactor.Custom
  2279. p38.Size = Vector3.new(0.61060679, 8.03632927, 0.221234918)
  2280. p38.BottomSurface = Enum.SurfaceType.Smooth
  2281. p38.TopSurface = Enum.SurfaceType.Smooth
  2282. b38 = Instance.new("SpecialMesh", p38)
  2283. b38.MeshType = Enum.MeshType.Sphere
  2284. b38.Name = "Mesh"
  2285. p39 = Instance.new("Part", m2)
  2286. p39.BrickColor = BrickColor.new("Dark Indigo")
  2287. p39.Material = Enum.Material.SmoothPlastic
  2288. p39.Reflectance = 0.30000001192093
  2289. 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)
  2290. p39.CanCollide = false
  2291. p39.FormFactor = Enum.FormFactor.Custom
  2292. p39.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  2293. p39.BottomSurface = Enum.SurfaceType.Smooth
  2294. p39.TopSurface = Enum.SurfaceType.Smooth
  2295. b39 = Instance.new("SpecialMesh", p39)
  2296. b39.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2297. b39.TextureId = ""
  2298. b39.MeshType = Enum.MeshType.FileMesh
  2299. b39.Name = "Mesh"
  2300. b39.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  2301. p40 = Instance.new("Part", m2)
  2302. p40.BrickColor = BrickColor.new("Dark Indigo")
  2303. p40.Material = Enum.Material.SmoothPlastic
  2304. p40.Reflectance = 0.30000001192093
  2305. 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)
  2306. p40.CanCollide = false
  2307. p40.FormFactor = Enum.FormFactor.Custom
  2308. p40.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  2309. p40.BottomSurface = Enum.SurfaceType.Smooth
  2310. p40.TopSurface = Enum.SurfaceType.Smooth
  2311. b40 = Instance.new("SpecialMesh", p40)
  2312. b40.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2313. b40.TextureId = ""
  2314. b40.MeshType = Enum.MeshType.FileMesh
  2315. b40.Name = "Mesh"
  2316. b40.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  2317. p41 = Instance.new("Part", m2)
  2318. p41.BrickColor = BrickColor.new("Dark Indigo")
  2319. p41.Material = Enum.Material.SmoothPlastic
  2320. p41.Reflectance = 0.30000001192093
  2321. 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)
  2322. p41.CanCollide = false
  2323. p41.FormFactor = Enum.FormFactor.Custom
  2324. p41.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  2325. p41.BottomSurface = Enum.SurfaceType.Smooth
  2326. p41.TopSurface = Enum.SurfaceType.Smooth
  2327. b41 = Instance.new("SpecialMesh", p41)
  2328. b41.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2329. b41.TextureId = ""
  2330. b41.MeshType = Enum.MeshType.FileMesh
  2331. b41.Name = "Mesh"
  2332. b41.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  2333. p42 = Instance.new("Part", m2)
  2334. p42.BrickColor = BrickColor.new("Dark Indigo")
  2335. p42.Material = Enum.Material.SmoothPlastic
  2336. p42.Reflectance = 0.30000001192093
  2337. 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)
  2338. p42.CanCollide = false
  2339. p42.FormFactor = Enum.FormFactor.Custom
  2340. p42.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  2341. p42.BottomSurface = Enum.SurfaceType.Smooth
  2342. p42.TopSurface = Enum.SurfaceType.Smooth
  2343. b42 = Instance.new("SpecialMesh", p42)
  2344. b42.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2345. b42.TextureId = ""
  2346. b42.MeshType = Enum.MeshType.FileMesh
  2347. b42.Name = "Mesh"
  2348. b42.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  2349. p43 = Instance.new("Part", m2)
  2350. p43.BrickColor = BrickColor.new("Dark Indigo")
  2351. p43.Material = Enum.Material.SmoothPlastic
  2352. p43.Reflectance = 0.30000001192093
  2353. 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)
  2354. p43.CanCollide = false
  2355. p43.FormFactor = Enum.FormFactor.Custom
  2356. p43.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  2357. p43.BottomSurface = Enum.SurfaceType.Smooth
  2358. p43.TopSurface = Enum.SurfaceType.Smooth
  2359. b43 = Instance.new("SpecialMesh", p43)
  2360. b43.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2361. b43.TextureId = ""
  2362. b43.MeshType = Enum.MeshType.FileMesh
  2363. b43.Name = "Mesh"
  2364. b43.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  2365. p44 = Instance.new("Part", m2)
  2366. p44.BrickColor = BrickColor.new("Dark Indigo")
  2367. p44.Material = Enum.Material.SmoothPlastic
  2368. p44.Reflectance = 0.30000001192093
  2369. 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)
  2370. p44.CanCollide = false
  2371. p44.FormFactor = Enum.FormFactor.Custom
  2372. p44.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  2373. p44.BottomSurface = Enum.SurfaceType.Smooth
  2374. p44.TopSurface = Enum.SurfaceType.Smooth
  2375. b44 = Instance.new("SpecialMesh", p44)
  2376. b44.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2377. b44.TextureId = ""
  2378. b44.MeshType = Enum.MeshType.FileMesh
  2379. b44.Name = "Mesh"
  2380. b44.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  2381. p45 = Instance.new("Part", m2)
  2382. p45.BrickColor = BrickColor.new("Dark Indigo")
  2383. p45.Material = Enum.Material.SmoothPlastic
  2384. p45.Reflectance = 0.30000001192093
  2385. 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)
  2386. p45.CanCollide = false
  2387. p45.FormFactor = Enum.FormFactor.Custom
  2388. p45.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  2389. p45.BottomSurface = Enum.SurfaceType.Smooth
  2390. p45.TopSurface = Enum.SurfaceType.Smooth
  2391. b45 = Instance.new("SpecialMesh", p45)
  2392. b45.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2393. b45.TextureId = ""
  2394. b45.MeshType = Enum.MeshType.FileMesh
  2395. b45.Name = "Mesh"
  2396. b45.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  2397. p46 = Instance.new("Part", m2)
  2398. p46.BrickColor = BrickColor.new("Dark Indigo")
  2399. p46.Material = Enum.Material.SmoothPlastic
  2400. p46.Reflectance = 0.30000001192093
  2401. 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)
  2402. p46.CanCollide = false
  2403. p46.FormFactor = Enum.FormFactor.Custom
  2404. p46.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  2405. p46.BottomSurface = Enum.SurfaceType.Smooth
  2406. p46.TopSurface = Enum.SurfaceType.Smooth
  2407. b46 = Instance.new("SpecialMesh", p46)
  2408. b46.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2409. b46.TextureId = ""
  2410. b46.MeshType = Enum.MeshType.FileMesh
  2411. b46.Name = "Mesh"
  2412. b46.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  2413. p47 = Instance.new("Part", m2)
  2414. p47.BrickColor = BrickColor.new("Dark Indigo")
  2415. p47.Material = Enum.Material.SmoothPlastic
  2416. p47.Reflectance = 0.30000001192093
  2417. 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)
  2418. p47.CanCollide = false
  2419. p47.FormFactor = Enum.FormFactor.Custom
  2420. p47.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  2421. p47.BottomSurface = Enum.SurfaceType.Smooth
  2422. p47.TopSurface = Enum.SurfaceType.Smooth
  2423. b47 = Instance.new("SpecialMesh", p47)
  2424. b47.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2425. b47.TextureId = ""
  2426. b47.MeshType = Enum.MeshType.FileMesh
  2427. b47.Name = "Mesh"
  2428. b47.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  2429. p48 = Instance.new("Part", m2)
  2430. p48.BrickColor = BrickColor.new("Dark Indigo")
  2431. p48.Material = Enum.Material.Neon
  2432. 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)
  2433. p48.FormFactor = Enum.FormFactor.Custom
  2434. p48.Size = Vector3.new(0.61060679, 3.09150696, 0.221234918)
  2435. p48.BottomSurface = Enum.SurfaceType.Smooth
  2436. p48.TopSurface = Enum.SurfaceType.Smooth
  2437. b48 = Instance.new("SpecialMesh", p48)
  2438. b48.MeshType = Enum.MeshType.Sphere
  2439. b48.Name = "Mesh"
  2440. p49 = Instance.new("Part", m2)
  2441. p49.BrickColor = BrickColor.new("Dark Indigo")
  2442. p49.Material = Enum.Material.SmoothPlastic
  2443. p49.Reflectance = 0.30000001192093
  2444. 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)
  2445. p49.CanCollide = false
  2446. p49.FormFactor = Enum.FormFactor.Custom
  2447. p49.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  2448. p49.BottomSurface = Enum.SurfaceType.Smooth
  2449. p49.TopSurface = Enum.SurfaceType.Smooth
  2450. b49 = Instance.new("SpecialMesh", p49)
  2451. b49.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2452. b49.TextureId = ""
  2453. b49.MeshType = Enum.MeshType.FileMesh
  2454. b49.Name = "Mesh"
  2455. b49.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  2456. p50 = Instance.new("Part", m2)
  2457. p50.BrickColor = BrickColor.new("Dark Indigo")
  2458. p50.Material = Enum.Material.SmoothPlastic
  2459. p50.Reflectance = 0.30000001192093
  2460. 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)
  2461. p50.CanCollide = false
  2462. p50.FormFactor = Enum.FormFactor.Custom
  2463. p50.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  2464. p50.BottomSurface = Enum.SurfaceType.Smooth
  2465. p50.TopSurface = Enum.SurfaceType.Smooth
  2466. b50 = Instance.new("SpecialMesh", p50)
  2467. b50.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2468. b50.TextureId = ""
  2469. b50.MeshType = Enum.MeshType.FileMesh
  2470. b50.Name = "Mesh"
  2471. b50.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  2472. p51 = Instance.new("Part", m2)
  2473. p51.BrickColor = BrickColor.new("Dark Indigo")
  2474. p51.Material = Enum.Material.SmoothPlastic
  2475. p51.Reflectance = 0.30000001192093
  2476. 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)
  2477. p51.CanCollide = false
  2478. p51.FormFactor = Enum.FormFactor.Custom
  2479. p51.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  2480. p51.BottomSurface = Enum.SurfaceType.Smooth
  2481. p51.TopSurface = Enum.SurfaceType.Smooth
  2482. b51 = Instance.new("SpecialMesh", p51)
  2483. b51.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2484. b51.TextureId = ""
  2485. b51.MeshType = Enum.MeshType.FileMesh
  2486. b51.Name = "Mesh"
  2487. b51.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  2488. p52 = Instance.new("Part", m2)
  2489. p52.BrickColor = BrickColor.new("Dark Indigo")
  2490. p52.Material = Enum.Material.Neon
  2491. 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)
  2492. p52.FormFactor = Enum.FormFactor.Custom
  2493. p52.Size = Vector3.new(0.61060679, 7.32508755, 0.221234918)
  2494. p52.BottomSurface = Enum.SurfaceType.Smooth
  2495. p52.TopSurface = Enum.SurfaceType.Smooth
  2496. b52 = Instance.new("SpecialMesh", p52)
  2497. b52.MeshType = Enum.MeshType.Sphere
  2498. b52.Name = "Mesh"
  2499. p53 = Instance.new("Part", m2)
  2500. p53.BrickColor = BrickColor.new("Dark Indigo")
  2501. p53.Material = Enum.Material.Neon
  2502. 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)
  2503. p53.FormFactor = Enum.FormFactor.Custom
  2504. p53.Size = Vector3.new(0.61060679, 7.32508755, 0.221234918)
  2505. p53.BottomSurface = Enum.SurfaceType.Smooth
  2506. p53.TopSurface = Enum.SurfaceType.Smooth
  2507. b53 = Instance.new("SpecialMesh", p53)
  2508. b53.MeshType = Enum.MeshType.Sphere
  2509. b53.Name = "Mesh"
  2510. p54 = Instance.new("Part", m2)
  2511. p54.BrickColor = BrickColor.new("Dark Indigo")
  2512. p54.Material = Enum.Material.Neon
  2513. 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)
  2514. p54.FormFactor = Enum.FormFactor.Custom
  2515. p54.Size = Vector3.new(0.61060679, 8.03632927, 0.221234918)
  2516. p54.BottomSurface = Enum.SurfaceType.Smooth
  2517. p54.TopSurface = Enum.SurfaceType.Smooth
  2518. b54 = Instance.new("SpecialMesh", p54)
  2519. b54.MeshType = Enum.MeshType.Sphere
  2520. b54.Name = "Mesh"
  2521. p55 = Instance.new("Part", m2)
  2522. p55.BrickColor = BrickColor.new("Dark Indigo")
  2523. p55.Material = Enum.Material.Neon
  2524. 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)
  2525. p55.FormFactor = Enum.FormFactor.Custom
  2526. p55.Size = Vector3.new(0.61060679, 3.09150696, 0.221234918)
  2527. p55.BottomSurface = Enum.SurfaceType.Smooth
  2528. p55.TopSurface = Enum.SurfaceType.Smooth
  2529. b55 = Instance.new("SpecialMesh", p55)
  2530. b55.MeshType = Enum.MeshType.Sphere
  2531. b55.Name = "Mesh"
  2532. p56 = Instance.new("Part", m2)
  2533. p56.BrickColor = BrickColor.new("Dark Indigo")
  2534. p56.Material = Enum.Material.SmoothPlastic
  2535. p56.Reflectance = 0.30000001192093
  2536. 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)
  2537. p56.CanCollide = false
  2538. p56.FormFactor = Enum.FormFactor.Custom
  2539. p56.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  2540. p56.BottomSurface = Enum.SurfaceType.Smooth
  2541. p56.TopSurface = Enum.SurfaceType.Smooth
  2542. b56 = Instance.new("SpecialMesh", p56)
  2543. b56.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2544. b56.TextureId = ""
  2545. b56.MeshType = Enum.MeshType.FileMesh
  2546. b56.Name = "Mesh"
  2547. b56.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  2548. p57 = Instance.new("Part", m2)
  2549. p57.BrickColor = BrickColor.new("Dark Indigo")
  2550. p57.Material = Enum.Material.SmoothPlastic
  2551. p57.Reflectance = 0.30000001192093
  2552. 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)
  2553. p57.CanCollide = false
  2554. p57.FormFactor = Enum.FormFactor.Custom
  2555. p57.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  2556. p57.BottomSurface = Enum.SurfaceType.Smooth
  2557. p57.TopSurface = Enum.SurfaceType.Smooth
  2558. b57 = Instance.new("SpecialMesh", p57)
  2559. b57.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2560. b57.TextureId = ""
  2561. b57.MeshType = Enum.MeshType.FileMesh
  2562. b57.Name = "Mesh"
  2563. b57.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  2564. p58 = Instance.new("Part", m2)
  2565. p58.BrickColor = BrickColor.new("Dark Indigo")
  2566. p58.Material = Enum.Material.SmoothPlastic
  2567. p58.Reflectance = 0.30000001192093
  2568. 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)
  2569. p58.CanCollide = false
  2570. p58.FormFactor = Enum.FormFactor.Custom
  2571. p58.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  2572. p58.BottomSurface = Enum.SurfaceType.Smooth
  2573. p58.TopSurface = Enum.SurfaceType.Smooth
  2574. b58 = Instance.new("SpecialMesh", p58)
  2575. b58.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2576. b58.TextureId = ""
  2577. b58.MeshType = Enum.MeshType.FileMesh
  2578. b58.Name = "Mesh"
  2579. b58.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  2580. p59 = Instance.new("Part", m2)
  2581. p59.BrickColor = BrickColor.new("Dark Indigo")
  2582. p59.Material = Enum.Material.SmoothPlastic
  2583. p59.Reflectance = 0.30000001192093
  2584. 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)
  2585. p59.CanCollide = false
  2586. p59.FormFactor = Enum.FormFactor.Custom
  2587. p59.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  2588. p59.BottomSurface = Enum.SurfaceType.Smooth
  2589. p59.TopSurface = Enum.SurfaceType.Smooth
  2590. b59 = Instance.new("SpecialMesh", p59)
  2591. b59.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2592. b59.TextureId = ""
  2593. b59.MeshType = Enum.MeshType.FileMesh
  2594. b59.Name = "Mesh"
  2595. b59.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  2596. p60 = Instance.new("Part", m2)
  2597. p60.BrickColor = BrickColor.new("Dark Indigo")
  2598. p60.Material = Enum.Material.SmoothPlastic
  2599. p60.Reflectance = 0.30000001192093
  2600. 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)
  2601. p60.CanCollide = false
  2602. p60.FormFactor = Enum.FormFactor.Custom
  2603. p60.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  2604. p60.BottomSurface = Enum.SurfaceType.Smooth
  2605. p60.TopSurface = Enum.SurfaceType.Smooth
  2606. b60 = Instance.new("SpecialMesh", p60)
  2607. b60.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2608. b60.TextureId = ""
  2609. b60.MeshType = Enum.MeshType.FileMesh
  2610. b60.Name = "Mesh"
  2611. b60.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  2612. p61 = Instance.new("Part", m2)
  2613. p61.BrickColor = BrickColor.new("Dark Indigo")
  2614. p61.Material = Enum.Material.SmoothPlastic
  2615. p61.Reflectance = 0.30000001192093
  2616. 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)
  2617. p61.CanCollide = false
  2618. p61.FormFactor = Enum.FormFactor.Custom
  2619. p61.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  2620. p61.BottomSurface = Enum.SurfaceType.Smooth
  2621. p61.TopSurface = Enum.SurfaceType.Smooth
  2622. b61 = Instance.new("SpecialMesh", p61)
  2623. b61.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2624. b61.TextureId = ""
  2625. b61.MeshType = Enum.MeshType.FileMesh
  2626. b61.Name = "Mesh"
  2627. b61.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  2628. p62 = Instance.new("Part", m2)
  2629. p62.BrickColor = BrickColor.new("Dark Indigo")
  2630. p62.Material = Enum.Material.SmoothPlastic
  2631. p62.Reflectance = 0.30000001192093
  2632. 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)
  2633. p62.CanCollide = false
  2634. p62.FormFactor = Enum.FormFactor.Custom
  2635. p62.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  2636. p62.BottomSurface = Enum.SurfaceType.Smooth
  2637. p62.TopSurface = Enum.SurfaceType.Smooth
  2638. b62 = Instance.new("SpecialMesh", p62)
  2639. b62.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2640. b62.TextureId = ""
  2641. b62.MeshType = Enum.MeshType.FileMesh
  2642. b62.Name = "Mesh"
  2643. b62.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  2644. p63 = Instance.new("Part", m2)
  2645. p63.BrickColor = BrickColor.new("Dark Indigo")
  2646. p63.Material = Enum.Material.SmoothPlastic
  2647. p63.Reflectance = 0.30000001192093
  2648. 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)
  2649. p63.CanCollide = false
  2650. p63.FormFactor = Enum.FormFactor.Custom
  2651. p63.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  2652. p63.BottomSurface = Enum.SurfaceType.Smooth
  2653. p63.TopSurface = Enum.SurfaceType.Smooth
  2654. b63 = Instance.new("SpecialMesh", p63)
  2655. b63.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2656. b63.TextureId = ""
  2657. b63.MeshType = Enum.MeshType.FileMesh
  2658. b63.Name = "Mesh"
  2659. b63.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  2660. p64 = Instance.new("Part", m2)
  2661. p64.BrickColor = BrickColor.new("Dark Indigo")
  2662. p64.Material = Enum.Material.SmoothPlastic
  2663. p64.Reflectance = 0.30000001192093
  2664. 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)
  2665. p64.CanCollide = false
  2666. p64.FormFactor = Enum.FormFactor.Custom
  2667. p64.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  2668. p64.BottomSurface = Enum.SurfaceType.Smooth
  2669. p64.TopSurface = Enum.SurfaceType.Smooth
  2670. b64 = Instance.new("SpecialMesh", p64)
  2671. b64.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2672. b64.TextureId = ""
  2673. b64.MeshType = Enum.MeshType.FileMesh
  2674. b64.Name = "Mesh"
  2675. b64.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  2676. p65 = Instance.new("Part", m2)
  2677. p65.BrickColor = BrickColor.new("Medium stone grey")
  2678. p65.Transparency = 1
  2679. p65.Name = "TorsoPart"
  2680. 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)
  2681. p65.FormFactor = Enum.FormFactor.Symmetric
  2682. p65.Size = Vector3.new(4, 4, 2)
  2683. w1 = Instance.new("Weld", p1)
  2684. w1.Name = "Part_Weld"
  2685. w1.Part0 = p1
  2686. 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)
  2687. w1.Part1 = p2
  2688. 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)
  2689. w2 = Instance.new("Weld", p2)
  2690. w2.Name = "Part_Weld"
  2691. w2.Part0 = p2
  2692. 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)
  2693. w2.Part1 = p3
  2694. 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)
  2695. w3 = Instance.new("Weld", p3)
  2696. w3.Name = "Part_Weld"
  2697. w3.Part0 = p3
  2698. 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)
  2699. w3.Part1 = p4
  2700. 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)
  2701. w4 = Instance.new("Weld", p4)
  2702. w4.Name = "Part_Weld"
  2703. w4.Part0 = p4
  2704. 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)
  2705. w4.Part1 = p5
  2706. 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)
  2707. w5 = Instance.new("Weld", p5)
  2708. w5.Name = "Part_Weld"
  2709. w5.Part0 = p5
  2710. 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)
  2711. w5.Part1 = p6
  2712. 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)
  2713. w6 = Instance.new("Weld", p6)
  2714. w6.Name = "Part_Weld"
  2715. w6.Part0 = p6
  2716. 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)
  2717. w6.Part1 = p7
  2718. 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)
  2719. w7 = Instance.new("Weld", p7)
  2720. w7.Name = "Part_Weld"
  2721. w7.Part0 = p7
  2722. 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)
  2723. w7.Part1 = p8
  2724. 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)
  2725. w8 = Instance.new("Weld", p8)
  2726. w8.Name = "Part_Weld"
  2727. w8.Part0 = p8
  2728. 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)
  2729. w8.Part1 = p9
  2730. 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)
  2731. w9 = Instance.new("Weld", p9)
  2732. w9.Name = "Part_Weld"
  2733. w9.Part0 = p9
  2734. 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)
  2735. w9.Part1 = p10
  2736. 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)
  2737. w10 = Instance.new("Weld", p10)
  2738. w10.Name = "Part_Weld"
  2739. w10.Part0 = p10
  2740. 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)
  2741. w10.Part1 = p11
  2742. 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)
  2743. w11 = Instance.new("Weld", p11)
  2744. w11.Name = "Part_Weld"
  2745. w11.Part0 = p11
  2746. 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)
  2747. w11.Part1 = p12
  2748. 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)
  2749. w12 = Instance.new("Weld", p12)
  2750. w12.Name = "Part_Weld"
  2751. w12.Part0 = p12
  2752. 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)
  2753. w12.Part1 = p13
  2754. 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)
  2755. w13 = Instance.new("Weld", p13)
  2756. w13.Name = "Part_Weld"
  2757. w13.Part0 = p13
  2758. 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)
  2759. w13.Part1 = p14
  2760. 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)
  2761. w14 = Instance.new("Weld", p14)
  2762. w14.Name = "Part_Weld"
  2763. w14.Part0 = p14
  2764. 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)
  2765. w14.Part1 = p15
  2766. 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)
  2767. w15 = Instance.new("Weld", p15)
  2768. w15.Name = "Part_Weld"
  2769. w15.Part0 = p15
  2770. 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)
  2771. w15.Part1 = p16
  2772. 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)
  2773. w16 = Instance.new("Weld", p16)
  2774. w16.Name = "Part_Weld"
  2775. w16.Part0 = p16
  2776. 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)
  2777. w16.Part1 = p17
  2778. 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)
  2779. w17 = Instance.new("Weld", p17)
  2780. w17.Name = "Part_Weld"
  2781. w17.Part0 = p17
  2782. 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)
  2783. w17.Part1 = p18
  2784. 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)
  2785. w18 = Instance.new("Weld", p18)
  2786. w18.Name = "Part_Weld"
  2787. w18.Part0 = p18
  2788. 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)
  2789. w18.Part1 = p19
  2790. 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)
  2791. w19 = Instance.new("Weld", p19)
  2792. w19.Name = "Part_Weld"
  2793. w19.Part0 = p19
  2794. 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)
  2795. w19.Part1 = p20
  2796. 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)
  2797. w20 = Instance.new("Weld", p20)
  2798. w20.Name = "Part_Weld"
  2799. w20.Part0 = p20
  2800. 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)
  2801. w20.Part1 = p21
  2802. 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)
  2803. w21 = Instance.new("Weld", p21)
  2804. w21.Name = "Part_Weld"
  2805. w21.Part0 = p21
  2806. 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)
  2807. w21.Part1 = p22
  2808. 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)
  2809. w22 = Instance.new("Weld", p22)
  2810. w22.Name = "Part_Weld"
  2811. w22.Part0 = p22
  2812. 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)
  2813. w22.Part1 = p23
  2814. 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)
  2815. w23 = Instance.new("Weld", p23)
  2816. w23.Name = "Part_Weld"
  2817. w23.Part0 = p23
  2818. 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)
  2819. w23.Part1 = p24
  2820. 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)
  2821. w24 = Instance.new("Weld", p24)
  2822. w24.Name = "Part_Weld"
  2823. w24.Part0 = p24
  2824. 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)
  2825. w24.Part1 = p25
  2826. 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)
  2827. w25 = Instance.new("Weld", p25)
  2828. w25.Name = "Part_Weld"
  2829. w25.Part0 = p25
  2830. 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)
  2831. w25.Part1 = p26
  2832. 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)
  2833. w26 = Instance.new("Weld", p26)
  2834. w26.Name = "Part_Weld"
  2835. w26.Part0 = p26
  2836. 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)
  2837. w26.Part1 = p27
  2838. 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)
  2839. w27 = Instance.new("Weld", p27)
  2840. w27.Name = "Part_Weld"
  2841. w27.Part0 = p27
  2842. 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)
  2843. w27.Part1 = p28
  2844. 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)
  2845. w28 = Instance.new("Weld", p28)
  2846. w28.Name = "Part_Weld"
  2847. w28.Part0 = p28
  2848. 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)
  2849. w28.Part1 = p29
  2850. 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)
  2851. w29 = Instance.new("Weld", p29)
  2852. w29.Name = "Part_Weld"
  2853. w29.Part0 = p29
  2854. 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)
  2855. w29.Part1 = p30
  2856. 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)
  2857. w30 = Instance.new("Weld", p30)
  2858. w30.Name = "Part_Weld"
  2859. w30.Part0 = p30
  2860. 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)
  2861. w30.Part1 = p31
  2862. 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)
  2863. w31 = Instance.new("Weld", p31)
  2864. w31.Name = "Part_Weld"
  2865. w31.Part0 = p31
  2866. 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)
  2867. w31.Part1 = p32
  2868. 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)
  2869. w32 = Instance.new("Weld", p32)
  2870. w32.Name = "Part_Weld"
  2871. w32.Part0 = p32
  2872. 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)
  2873. w32.Part1 = p33
  2874. 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)
  2875. w33 = Instance.new("Weld", p33)
  2876. w33.Name = "Part_Weld"
  2877. w33.Part0 = p33
  2878. 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)
  2879. w33.Part1 = p34
  2880. 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)
  2881. w34 = Instance.new("Weld", p34)
  2882. w34.Name = "Part_Weld"
  2883. w34.Part0 = p34
  2884. 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)
  2885. w34.Part1 = p35
  2886. 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)
  2887. w35 = Instance.new("Weld", p35)
  2888. w35.Name = "Part_Weld"
  2889. w35.Part0 = p35
  2890. 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)
  2891. w35.Part1 = p36
  2892. 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)
  2893. w36 = Instance.new("Weld", p36)
  2894. w36.Name = "Part_Weld"
  2895. w36.Part0 = p36
  2896. 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)
  2897. w36.Part1 = p37
  2898. 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)
  2899. w37 = Instance.new("Weld", p37)
  2900. w37.Name = "Part_Weld"
  2901. w37.Part0 = p37
  2902. 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)
  2903. w37.Part1 = p38
  2904. 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)
  2905. w38 = Instance.new("Weld", p38)
  2906. w38.Name = "Part_Weld"
  2907. w38.Part0 = p38
  2908. 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)
  2909. w38.Part1 = p39
  2910. 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)
  2911. w39 = Instance.new("Weld", p39)
  2912. w39.Name = "Part_Weld"
  2913. w39.Part0 = p39
  2914. 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)
  2915. w39.Part1 = p40
  2916. 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)
  2917. w40 = Instance.new("Weld", p40)
  2918. w40.Name = "Part_Weld"
  2919. w40.Part0 = p40
  2920. 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)
  2921. w40.Part1 = p41
  2922. 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)
  2923. w41 = Instance.new("Weld", p41)
  2924. w41.Name = "Part_Weld"
  2925. w41.Part0 = p41
  2926. 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)
  2927. w41.Part1 = p42
  2928. 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)
  2929. w42 = Instance.new("Weld", p42)
  2930. w42.Name = "Part_Weld"
  2931. w42.Part0 = p42
  2932. 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)
  2933. w42.Part1 = p43
  2934. 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)
  2935. w43 = Instance.new("Weld", p43)
  2936. w43.Name = "Part_Weld"
  2937. w43.Part0 = p43
  2938. 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)
  2939. w43.Part1 = p44
  2940. 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)
  2941. w44 = Instance.new("Weld", p44)
  2942. w44.Name = "Part_Weld"
  2943. w44.Part0 = p44
  2944. 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)
  2945. w44.Part1 = p45
  2946. 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)
  2947. w45 = Instance.new("Weld", p45)
  2948. w45.Name = "Part_Weld"
  2949. w45.Part0 = p45
  2950. 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)
  2951. w45.Part1 = p46
  2952. 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)
  2953. w46 = Instance.new("Weld", p46)
  2954. w46.Name = "Part_Weld"
  2955. w46.Part0 = p46
  2956. 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)
  2957. w46.Part1 = p47
  2958. 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)
  2959. w47 = Instance.new("Weld", p47)
  2960. w47.Name = "Part_Weld"
  2961. w47.Part0 = p47
  2962. 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)
  2963. w47.Part1 = p48
  2964. 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)
  2965. w48 = Instance.new("Weld", p48)
  2966. w48.Name = "Part_Weld"
  2967. w48.Part0 = p48
  2968. 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)
  2969. w48.Part1 = p49
  2970. 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)
  2971. w49 = Instance.new("Weld", p49)
  2972. w49.Name = "Part_Weld"
  2973. w49.Part0 = p49
  2974. 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)
  2975. w49.Part1 = p50
  2976. 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)
  2977. w50 = Instance.new("Weld", p50)
  2978. w50.Name = "Part_Weld"
  2979. w50.Part0 = p50
  2980. 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)
  2981. w50.Part1 = p51
  2982. 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)
  2983. w51 = Instance.new("Weld", p51)
  2984. w51.Name = "Part_Weld"
  2985. w51.Part0 = p51
  2986. 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)
  2987. w51.Part1 = p52
  2988. 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)
  2989. w52 = Instance.new("Weld", p52)
  2990. w52.Name = "Part_Weld"
  2991. w52.Part0 = p52
  2992. 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)
  2993. w52.Part1 = p53
  2994. 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)
  2995. w53 = Instance.new("Weld", p53)
  2996. w53.Name = "Part_Weld"
  2997. w53.Part0 = p53
  2998. 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)
  2999. w53.Part1 = p54
  3000. 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)
  3001. w54 = Instance.new("Weld", p54)
  3002. w54.Name = "Part_Weld"
  3003. w54.Part0 = p54
  3004. 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)
  3005. w54.Part1 = p55
  3006. 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)
  3007. w55 = Instance.new("Weld", p55)
  3008. w55.Name = "Part_Weld"
  3009. w55.Part0 = p55
  3010. 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)
  3011. w55.Part1 = p56
  3012. 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)
  3013. w56 = Instance.new("Weld", p56)
  3014. w56.Name = "Part_Weld"
  3015. w56.Part0 = p56
  3016. 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)
  3017. w56.Part1 = p57
  3018. 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)
  3019. w57 = Instance.new("Weld", p57)
  3020. w57.Name = "Part_Weld"
  3021. w57.Part0 = p57
  3022. 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)
  3023. w57.Part1 = p58
  3024. 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)
  3025. w58 = Instance.new("Weld", p58)
  3026. w58.Name = "Part_Weld"
  3027. w58.Part0 = p58
  3028. 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)
  3029. w58.Part1 = p59
  3030. 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)
  3031. w59 = Instance.new("Weld", p59)
  3032. w59.Name = "Part_Weld"
  3033. w59.Part0 = p59
  3034. 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)
  3035. w59.Part1 = p60
  3036. 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)
  3037. w60 = Instance.new("Weld", p60)
  3038. w60.Name = "Part_Weld"
  3039. w60.Part0 = p60
  3040. 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)
  3041. w60.Part1 = p61
  3042. 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)
  3043. w61 = Instance.new("Weld", p61)
  3044. w61.Name = "Part_Weld"
  3045. w61.Part0 = p61
  3046. 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)
  3047. w61.Part1 = p62
  3048. 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)
  3049. w62 = Instance.new("Weld", p62)
  3050. w62.Name = "Part_Weld"
  3051. w62.Part0 = p62
  3052. 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)
  3053. w62.Part1 = p63
  3054. 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)
  3055. w63 = Instance.new("Weld", p63)
  3056. w63.Name = "Part_Weld"
  3057. w63.Part0 = p63
  3058. 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)
  3059. w63.Part1 = p64
  3060. 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)
  3061. w64 = Instance.new("Weld", p64)
  3062. w64.Name = "TorsoPart_Weld"
  3063. w64.Part0 = p64
  3064. 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)
  3065. w64.Part1 = p65
  3066. w64.C1 = CFrame.new(-27.0399971, -25.1251144, -25.3600025, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3067. m2.Parent = char
  3068. m2:MakeJoints()
  3069. ----------------------------------------------------
  3070. local cor2 = Instance.new("Part", char.Wings)
  3071. cor2.Name = "Thingy"
  3072. cor2.Locked = true
  3073. cor2.BottomSurface = 0
  3074. cor2.CanCollide = false
  3075. cor2.Size = Vector3.new(0.2, 0.2, 0.2)
  3076. cor2.Transparency = 1
  3077. cor2.TopSurface = 0
  3078. corw2 = Instance.new("Weld", cor2)
  3079. corw2.Part0 = torso
  3080. corw2.Part1 = cor2
  3081. corw2.C0 = CFrame.new(0, 0.7, 0.8) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(0))
  3082. corw2.C1 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  3083. weld2 = Instance.new("Weld", char.Wings)
  3084. weld2.Part0 = cor2
  3085. weld2.Part1 = char.Wings.TorsoPart
  3086. weld2.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  3087. ----------------------------------------------------
  3088. local animpose = "Idle"
  3089. local lastanimpose = "Idle"
  3090. local sine = 0
  3091. local change = 1
  3092. local val = 0
  3093. local ffing = false
  3094. local och = 0
  3095. ----------------------------------------------------
  3096. wPart = function(x,y,z,color,tr,cc,an,parent)
  3097. local wp = Instance.new('WedgePart',parent or Weapon)
  3098. wp.formFactor = 'Custom'
  3099. wp.Size = Vector3.new(x,y,z)
  3100. wp.BrickColor = BrickColor.new(color)
  3101. wp.CanCollide = cc
  3102. wp.Transparency = tr
  3103. wp.Anchored = an
  3104. wp.TopSurface,wp.BottomSurface = 0,0
  3105. return wp
  3106. end
  3107.  
  3108. Mesh = function(par,num,x,y,z)
  3109. local msh = _
  3110. if num == 1 then
  3111. msh = Instance.new("CylinderMesh",par)
  3112. elseif num == 2 then
  3113. msh = Instance.new("SpecialMesh",par)
  3114. msh.MeshType = 3
  3115. elseif num == 3 then
  3116. msh = Instance.new("BlockMesh",par)
  3117. elseif num == 4 then
  3118. msh = Instance.new("SpecialMesh",par)
  3119. msh.MeshType = "Torso"
  3120. elseif type(num) == 'string' then
  3121. msh = Instance.new("SpecialMesh",par)
  3122. msh.MeshId = num
  3123. end
  3124. msh.Scale = Vector3.new(x,y,z)
  3125. return msh
  3126. end
  3127.  
  3128. local function CFrameFromTopBack(at, top, back)
  3129. local right = top:Cross(back)
  3130. return CFrame.new(at.x, at.y, at.z,
  3131. right.x, top.x, back.x,
  3132. right.y, top.y, back.y,
  3133. right.z, top.z, back.z)
  3134. end
  3135.  
  3136. function Triangle(a, b, c)
  3137. local edg1 = (c-a):Dot((b-a).unit)
  3138. local edg2 = (a-b):Dot((c-b).unit)
  3139. local edg3 = (b-c):Dot((a-c).unit)
  3140. if edg1 <= (b-a).magnitude and edg1 >= 0 then
  3141. a, b, c = a, b, c
  3142. elseif edg2 <= (c-b).magnitude and edg2 >= 0 then
  3143. a, b, c = b, c, a
  3144. elseif edg3 <= (a-c).magnitude and edg3 >= 0 then
  3145. a, b, c = c, a, b
  3146. else
  3147. print("unreachable")
  3148. end
  3149. local len1 = (c-a):Dot((b-a).unit)
  3150. local len2 = (b-a).magnitude - len1
  3151. local width = (a + (b-a).unit*len1 - c).magnitude
  3152. local maincf = CFrameFromTopBack(a, (b-a):Cross(c-b).unit, -(b-a).unit)
  3153. local list = {}
  3154. if len1 > 0.01 then
  3155. local w1 = wPart(0,0,0,'Dark Indigo',0.5,false,true,char)
  3156. local sz = Vector3.new(0.2, width, len1)
  3157. w1.Size = sz
  3158. local sp = Mesh(w1,2,0,0,0)
  3159. sp.MeshType='Wedge'
  3160. sp.Scale=Vector3.new(0,1,1)*sz/w1.Size
  3161. w1:BreakJoints()
  3162. w1.Anchored = true
  3163. w1.Transparency = 0.7
  3164. Spawn(function()
  3165. for i=0,1,0.1 do
  3166. wait()
  3167. w1.Transparency=w1.Transparency+0.03
  3168. end
  3169. end)
  3170. w1.CFrame = maincf*CFrame.Angles(math.pi,0,math.pi/2)*CFrame.new(0,width/2,len1/2)
  3171. table.insert(list,w1)
  3172. end
  3173. if len2 > 0.01 then
  3174. local w2 = wPart(0,0,0,'Dark Indigo',0.5,false,true,char)
  3175. local sz = Vector3.new(0.2, width, len2)
  3176. w2.Size = sz
  3177. local sp = Mesh(w2,2,0,0,0)
  3178. sp.MeshType='Wedge'
  3179. sp.Scale=Vector3.new(0,1,1)*sz/w2.Size
  3180. w2:BreakJoints()
  3181. w2.Anchored = true
  3182. w2.Transparency = 0.7
  3183. Spawn(function()
  3184. for i=0,1,0.1 do
  3185. wait()
  3186. w2.Transparency=w2.Transparency+0.03
  3187. end
  3188. end)
  3189. w2.CFrame = maincf*CFrame.Angles(math.pi,math.pi,-math.pi/2)*CFrame.new(0,width/2,-len1 - len2/2)
  3190. table.insert(list,w2)
  3191. end
  3192. return unpack(list)
  3193. end
  3194.  
  3195. function trail(p,t,h)
  3196. Spawn(function()
  3197. local blcf = p.CFrame
  3198. local scfr = blcf
  3199. for i=1,t do
  3200. local blcf = p.CFrame
  3201. if scfr and (p.Position-scfr.p).magnitude > .1 then
  3202. 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)
  3203. if a then game.Debris:AddItem(a,1) end
  3204. if b then game.Debris:AddItem(b,1) end
  3205. 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)
  3206. if a then game.Debris:AddItem(a,1) end
  3207. if b then game.Debris:AddItem(b,1) end
  3208. scfr = blcf
  3209. elseif not scfr then
  3210. scfr = blcf
  3211. end
  3212. game:service'RunService'.RenderStepped:wait()
  3213. end
  3214. scfr=nil
  3215. end)
  3216. end
  3217. trail(char.Sword.Blade,1e1000,5)
  3218. ----------------------------------------------------
  3219. char.Sword.Blade.Touched:connect(function(ht)
  3220. hit = ht.Parent
  3221. if ht and hit:IsA("Model") then
  3222. if hit:FindFirstChild("Humanoid") then
  3223. if hit.Name ~= p.Name then
  3224. if Debounces.Slashing == true and Debounces.Slashed == false then
  3225. Debounces.Slashed = true
  3226. hit:FindFirstChild("Humanoid"):TakeDamage(math.random(8000,10000))
  3227. wait(.3)
  3228. Debounces.Slashed = false
  3229. end
  3230. end
  3231. end
  3232. elseif ht and hit:IsA("Hat") then
  3233. if hit.Parent.Name ~= p.Name then
  3234. if hit.Parent:FindFirstChild("Humanoid") then
  3235. if Debounces.Slashing == true and Debounces.Slashed == false then
  3236. Debounces.Slashed = true
  3237. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(math.random(8000,1000))
  3238. wait(.3)
  3239. Debounces.Slashed = false
  3240. end
  3241. end
  3242. end
  3243. end
  3244. end)
  3245.  
  3246. ----------------------------------------------------
  3247. function attackone()
  3248. for i = 1, 10 do
  3249. 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)
  3250. 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)
  3251. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, .2)*CFrame.Angles(math.rad(10),math.rad(-46),0), 0.47)
  3252. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(-8), math.rad(46), 0), 0.55)
  3253. 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)
  3254. 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)
  3255. if Debounces.on == false then break end
  3256. rs:wait()
  3257. end
  3258. --trail(char.Sword.Blade,5,6)
  3259. Debounces.Slashing = true
  3260. z = Instance.new("Sound", hed)
  3261. z.SoundId = "rbxassetid://"..idz[math.random(1,#idz)]
  3262. z.Pitch = ptz[math.random(1,#ptz)]
  3263. z.Volume = 1
  3264. wait(.01)
  3265. z:Play()
  3266. for i = 1, 10 do
  3267. 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)
  3268. 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)
  3269. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, -.2)*CFrame.Angles(math.rad(-14),math.rad(40),0), 0.54)
  3270. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(-10), math.rad(-40), 0), 0.66)
  3271. 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)
  3272. 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)
  3273. if Debounces.on == false then break end
  3274. rs:wait()
  3275. end
  3276. Debounces.Slashing = false
  3277. end
  3278. ----------------------------------------------------
  3279. function attacktwo()
  3280. for i = 1, 5 do
  3281. 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)
  3282. 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)
  3283. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, .2)*CFrame.Angles(math.rad(-10),math.rad(46),0), 0.8)
  3284. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(8), math.rad(-46), 0), 0.8)
  3285. 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)
  3286. 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)
  3287. if Debounces.on == false then break end
  3288. rs:wait()
  3289. end
  3290. --trail(char.Sword.Blade,5,6)
  3291. Debounces.Slashing = true
  3292. z = Instance.new("Sound", hed)
  3293. z.SoundId = "rbxassetid://"..idz[math.random(1,#idz)]
  3294. z.Pitch = ptz[math.random(1,#ptz)]
  3295. z.Volume = 1
  3296. wait(.01)
  3297. z:Play()
  3298. for i = 1, 10 do
  3299. 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)
  3300. 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)
  3301. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, -.2)*CFrame.Angles(math.rad(-14),math.rad(-40),0), 0.54)
  3302. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(-9), math.rad(40), 0), 0.66)
  3303. 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)
  3304. 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)
  3305. if Debounces.on == false then break end
  3306. rs:wait()
  3307. end
  3308. Debounces.Slashing = false
  3309. end
  3310. ----------------------------------------------------
  3311. function attackthree()
  3312. for i = 1, 10 do
  3313. 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)
  3314. 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)
  3315. 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)
  3316. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(10), math.rad(0), 0), 0.66)
  3317. 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)
  3318. 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)
  3319. corw.C0 = Lerp(corw.C0, CFrame.new(0, -0.85, 0) * CFrame.Angles(math.rad(-90), math.rad(-40), math.rad(0)), 0.4)
  3320. if Debounces.on == false then
  3321. break
  3322. end
  3323. rs:wait()
  3324. end
  3325. --trail(char.Sword.Blade,5,6)
  3326. Debounces.Slashing = true
  3327. z = Instance.new("Sound", hed)
  3328. z.SoundId = "rbxassetid://"..idz[math.random(1,#idz)]
  3329. z.Pitch = ptz[math.random(1,#ptz)]
  3330. z.Volume = 1
  3331. wait(.01)
  3332. z:Play()
  3333. for i = 1, 10 do
  3334. 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)
  3335. 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)
  3336. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-40), 0, 0), 0.7)
  3337. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, 0) * CFrame.Angles(math.rad(10), 0, 0), 0.7)
  3338. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, -.1) * CFrame.Angles(math.rad(-16), 0, 0), 0.7)
  3339. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, -.1) * CFrame.Angles(math.rad(-16), 0, 0), 0.7)
  3340. corw.C0 = Lerp(corw.C0, CFrame.new(0, -0.85, 0) * CFrame.Angles(math.rad(-90), math.rad(-40), math.rad(0)), 0.4)
  3341. if Debounces.on==false then
  3342. break
  3343. end
  3344. rs:wait()
  3345. end
  3346. Debounces.Slashing = false
  3347. end
  3348. ----------------------------------------------------
  3349. ComboNum = 0
  3350. mouse.Button1Down:connect(function()
  3351. if Debounces.CanAttack == true then
  3352. Debounces.CanAttack = false
  3353. Debounces.NoIdl = true
  3354. Debounces.on = true
  3355. if ComboNum == 0 then
  3356. attackone()
  3357. elseif ComboNum == 1 then
  3358. attacktwo()
  3359. elseif ComboNum == 2 then
  3360. attackthree()
  3361. end
  3362. ComboNum = ComboNum + 1
  3363. Debounces.CanAttack = true
  3364. Debounces.NoIdl = false
  3365. Debounces.on = false
  3366. wait(.5)
  3367. if Debounces.CanAttack == true then
  3368. ComboNum = 0
  3369. end
  3370. end
  3371. end)
  3372. ----------------------------------------------------
  3373. local player = game.Players.LocalPlayer
  3374. local pchar = player.Character
  3375. local mouse = player:GetMouse()
  3376. local cam = workspace.CurrentCamera
  3377.  
  3378. local rad = math.rad
  3379.  
  3380. local keysDown = {}
  3381. local flySpeed = 0
  3382. local MAX_FLY_SPEED = 150
  3383.  
  3384. local canFly = false
  3385. local flyToggled = false
  3386.  
  3387. local forward, side = 0, 0
  3388. local lastForward, lastSide = 0, 0
  3389.  
  3390. local floatBP = Instance.new("BodyPosition")
  3391. floatBP.maxForce = Vector3.new(0, math.huge, 0)
  3392. local flyBV = Instance.new("BodyVelocity")
  3393. flyBV.maxForce = Vector3.new(9e9, 9e9, 9e9)
  3394. local turnBG = Instance.new("BodyGyro")
  3395. turnBG.maxTorque = Vector3.new(math.huge, math.huge, math.huge)
  3396.  
  3397. mouse.KeyDown:connect(function(key)
  3398. keysDown[key] = true
  3399.  
  3400. if key == "f" then
  3401. flyToggled = not flyToggled
  3402.  
  3403. if not flyToggled then
  3404. stanceToggle = "Normal"
  3405. floatBP.Parent = nil
  3406. flyBV.Parent = nil
  3407. turnBG.Parent = nil
  3408. root.Velocity = Vector3.new()
  3409. pchar.Humanoid.PlatformStand = false
  3410. end
  3411. end
  3412.  
  3413. end)
  3414. mouse.KeyUp:connect(function(key)
  3415. keysDown[key] = nil
  3416. end)
  3417.  
  3418. local function updateFly()
  3419.  
  3420. if not flyToggled then return end
  3421.  
  3422. lastForward = forward
  3423. lastSide = side
  3424.  
  3425. forward = 0
  3426. side = 0
  3427.  
  3428. if keysDown.w then
  3429. forward = forward + 1
  3430. end
  3431. if keysDown.s then
  3432. forward = forward - 1
  3433. end
  3434. if keysDown.a then
  3435. side = side - 1
  3436. end
  3437. if keysDown.d then
  3438. side = side + 1
  3439. end
  3440.  
  3441. canFly = (forward ~= 0 or side ~= 0)
  3442.  
  3443. if canFly then
  3444. stanceToggle = "Floating"
  3445. turnBG.Parent = root
  3446. floatBP.Parent = nil
  3447. flyBV.Parent = root
  3448.  
  3449. flySpeed = flySpeed + 1 + (flySpeed / MAX_FLY_SPEED)
  3450. if flySpeed > MAX_FLY_SPEED then flySpeed = MAX_FLY_SPEED end
  3451. else
  3452. floatBP.position = root.Position
  3453. floatBP.Parent = root
  3454.  
  3455. flySpeed = flySpeed - 1
  3456. if flySpeed < 0 then flySpeed = 0 end
  3457. end
  3458.  
  3459. local camCF = cam.CoordinateFrame
  3460. local in_forward = canFly and forward or lastForward
  3461. local in_side = canFly and side or lastSide
  3462.  
  3463. flyBV.velocity = ((camCF.lookVector * in_forward) + (camCF * CFrame.new(in_side,
  3464. in_forward * 0.2, 0).p) - camCF.p) * flySpeed
  3465.  
  3466. turnBG.cframe = camCF * CFrame.Angles(-rad(forward * (flySpeed / MAX_FLY_SPEED)), 0,
  3467. 0)
  3468. end
  3469.  
  3470. game:service'RunService'.RenderStepped:connect(function()
  3471. if flyToggled then
  3472. pchar.Humanoid.PlatformStand = true
  3473. end
  3474. updateFly()
  3475. end)
  3476. ----------------------------------------------------
  3477. function Charge()
  3478. pt=Instance.new('Part',torso)
  3479. pt.Anchored=true
  3480. pt.CanCollide=false
  3481. pt.Locked = true
  3482. pt.FormFactor='Custom'
  3483. pt.Size=Vector3.new(1,1,1)
  3484. pt.CFrame=root.CFrame*CFrame.new(0,-1,0)
  3485. pt.Transparency=0.2
  3486. pt.BrickColor=BrickColor.new("Dark Indigo")
  3487. msh=Instance.new('SpecialMesh',pt)
  3488. msh.MeshId='http://www.roblox.com/asset/?id=20329976'
  3489. msh.Scale=Vector3.new(6,3,6)
  3490. pt2=pt:clone()
  3491. pt2.Parent = torso
  3492. pt2.Transparency=0.4
  3493. pt2.CFrame=root.CFrame*CFrame.new(0,-1,0)
  3494. pt2.BrickColor=BrickColor.new("Dark Indigo")
  3495. msh2=msh:clone()
  3496. msh2.Parent=pt2
  3497. msh2.Scale=Vector3.new(8,4,8)
  3498. pt3=Instance.new('Part',torso)
  3499. pt3.Anchored=true
  3500. pt3.CanCollide=false
  3501. pt3.Locked = true
  3502. pt3.FormFactor='Custom'
  3503. pt3.Size=Vector3.new(1,1,1)
  3504. pt3.CFrame=root.CFrame*CFrame.new(0,-1,0)
  3505. pt3.Transparency=0.6
  3506. pt3.BrickColor=BrickColor.new("Dark Indigo")
  3507. msh3=Instance.new('SpecialMesh',pt3)
  3508. msh3.MeshId='http://www.roblox.com/asset/?id=20329976'
  3509. msh3.Scale=Vector3.new(12,6,12)
  3510. pt4=pt:clone()
  3511. pt4.Parent = torso
  3512. pt4.CFrame=root.CFrame*CFrame.new(0,-1,0)
  3513. pt4.Transparency=0.8
  3514. pt4.BrickColor=BrickColor.new("Dark Indigo")
  3515. msh4=msh:clone()
  3516. msh4.Parent=pt4
  3517. msh4.Scale=Vector3.new(16,8,16)
  3518. coroutine.resume(coroutine.create(function()
  3519. for i=1, math.huge, 4 do
  3520. if Charging == true then
  3521. wait()
  3522. pt.CFrame = root.CFrame*CFrame.new(0,-1,0) * CFrame.Angles(0,math.rad(i*2+0.11*math.cos(sine/10)),0)
  3523. pt2.CFrame = root.CFrame*CFrame.new(0,-1,0) * CFrame.Angles(0,math.rad(-i*2+0.12*math.cos(sine/12)),0)
  3524. pt3.CFrame = root.CFrame*CFrame.new(0,-1,0) * CFrame.Angles(0,math.rad(i*2+0.13*math.cos(sine/14)),0)
  3525. pt4.CFrame = root.CFrame*CFrame.new(0,-1,0) * CFrame.Angles(0,math.rad(-i*2+0.14*math.cos(sine/16)),0)
  3526. pt.CFrame = pt.CFrame+Vector3.new(0,0.01,0)
  3527. pt2.CFrame = pt2.CFrame+Vector3.new(0,0.01,0)
  3528. pt3.CFrame = pt3.CFrame+Vector3.new(0,0.01,0)
  3529. pt4.CFrame = pt4.CFrame+Vector3.new(0,0.01,0)
  3530. msh.Scale = msh.Scale + Vector3.new(0.05,0.04+0.8*math.cos(sine/9),0.05)
  3531. msh2.Scale = msh2.Scale + Vector3.new(0.05,0.04+0.8*math.cos(sine/7),0.05)
  3532. msh3.Scale = msh3.Scale + Vector3.new(0.05,0.04+0.8*math.cos(sine/5),0.05)
  3533. msh4.Scale = msh4.Scale + Vector3.new(0.05,0.04+0.8*math.cos(sine/3),0.05)
  3534. elseif Charging == false then
  3535. pt:Remove()
  3536. pt2:Remove()
  3537. pt3:Remove()
  3538. pt4:Remove()
  3539. break
  3540. end
  3541. end
  3542. end))
  3543. end
  3544. ----------------------------------------------------
  3545. local chot={}
  3546. local cns=0
  3547. mod3 = Instance.new("Model",char)
  3548. mouse.KeyDown:connect(function(key)
  3549. if key == "e" then
  3550. Charging = true
  3551. if Debounces.CanAttack == true then
  3552. Debounces.CanAttack = false
  3553. Debounces.NoIdl = true
  3554. Debounces.on = true
  3555. chot={}
  3556. Charge()
  3557. for i = 1, 20 do
  3558. 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)
  3559. 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)
  3560. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(-50),0), 0.2)
  3561. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0,0,0)*CFrame.Angles(math.rad(-40),math.rad(0),0), 0.2)
  3562. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 1, 0) * CFrame.Angles(0, math.rad(50), math.rad(0)), 0.05)
  3563. 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)
  3564. 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)
  3565. 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)
  3566. if Debounces.on == false then
  3567. break
  3568. end
  3569. rs:wait()
  3570. end
  3571. local nt=0
  3572. for i=0,5,0.02 do
  3573. nt=nt+1
  3574. cns=i
  3575. if nt>=2 then
  3576. nt=0
  3577. 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")
  3578. debris:AddItem(cho,1)
  3579. cho.Mesh.MeshType=3
  3580. table.insert(chot,cho)
  3581. end
  3582. wait()
  3583. end
  3584. Charging = false
  3585. for i = 1, 10 do
  3586. 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)
  3587. 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)
  3588. 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)
  3589. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(10), math.rad(0), 0), 0.66)
  3590. 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)
  3591. 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)
  3592. corw.C0 = Lerp(corw.C0, CFrame.new(0, -0.85, 0) * CFrame.Angles(math.rad(-90), math.rad(-40), math.rad(0)), 0.4)
  3593. if Debounces.on == false then
  3594. break
  3595. end
  3596. rs:wait()
  3597. end
  3598. Spawn(function()
  3599. local Parts = {}
  3600. for Y = -5,5 do
  3601. local P = Instance.new("Part",char)
  3602. P.Anchored = true
  3603. P.FormFactor = "Custom"
  3604. P.CanCollide = false
  3605. P.Size = Vector3.new(1,2,1)
  3606. P.Material = "Neon"
  3607. P.TopSurface = "SmoothNoOutlines"
  3608. P.BottomSurface = "SmoothNoOutlines"
  3609. P.BrickColor = BrickColor.new("Dark Indigo")
  3610. P.Name = tostring(Y)
  3611. local i = (Y+5)/(10)
  3612. i = 1-math.cos(math.pi*i-(math.pi/2))
  3613. P.CFrame = char.HumanoidRootPart.CFrame*CFrame.new(0,Y,-15+(i*1.5))*CFrame.Angles(math.rad(Y*5),0,0)
  3614. --[[P.Touched:connect(function(ht)
  3615. local hit = ht.Parent
  3616. if hit:FindFirstChild("Humanoid") then
  3617. hit.Humanoid:TakeDamage(math.random(20,50))
  3618. end
  3619. end)]]--
  3620. P.Touched:connect(function(ht)
  3621. hit = ht.Parent
  3622. if ht and hit:IsA("Model") then
  3623. if hit:FindFirstChild("Humanoid") then
  3624. if hit.Name ~= p.Name then
  3625. hit:FindFirstChild("Humanoid"):TakeDamage(math.random(5000,7500))
  3626. hit:FindFirstChild("Humanoid").PlatformStand = true
  3627. wait(1)
  3628. end
  3629. end
  3630. elseif ht and hit:IsA("Hat") then
  3631. if hit.Parent.Name ~= p.Name then
  3632. if hit.Parent:FindFirstChild("Humanoid") then
  3633. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(math.random(5000,7500))
  3634. hit:FindFirstChild("Humanoid").PlatformStand = true
  3635. wait(1)
  3636. end
  3637. end
  3638. end
  3639. end)
  3640. Parts[#Parts+1] = P
  3641. end
  3642. local BREAKIT = false
  3643. local CParts = {}
  3644. local Rocks = {}
  3645. local LastPos = nil
  3646. for i = 1,70 do
  3647. for i2,v in pairs(Parts) do
  3648. v.CFrame = v.CFrame*CFrame.new(0,0,-4)
  3649. local cf = v.CFrame
  3650. v.Size = v.Size+Vector3.new(1.1,0.35,0.2)
  3651. v.CFrame = cf
  3652. v.Transparency = v.Transparency+0.02
  3653. if v.Transparency >= 0.975 then BREAKIT = true end
  3654. if v.Name == "0" then
  3655. local Ignore = {}
  3656. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  3657. if v.Character ~= nil then
  3658. Ignore[#Ignore+1] = v.Character
  3659. end
  3660. end
  3661. local ray = Ray.new(v.Position+Vector3.new(0,20,0),Vector3.new(0,-200,0))
  3662. local Hit,Pos,SurfaceNorm = Workspace:FindPartOnRayWithIgnoreList(ray,Ignore)
  3663. if Hit ~= nil then
  3664. if #Rocks == 0 then
  3665. for i = 1,5 do
  3666. local P = Instance.new("Part",char)
  3667. Rocks[#Rocks+1] = P
  3668. P.Anchored = true
  3669. P.FormFactor = "Custom"
  3670. P.BrickColor = Hit.BrickColor
  3671. P.Material = Hit.Material
  3672. P.TopSurface = "Smooth"
  3673. P.BottomSurface = "Smooth"
  3674. P.Size = Vector3.new(1,1,1)*(math.random(500,900)/100)
  3675. end
  3676. end
  3677. for i,P in pairs(Rocks) do
  3678. 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)))
  3679. end
  3680. local P = Instance.new("Part",char)
  3681. CParts[#CParts+1] = {P,tick()}
  3682. P.Anchored = true
  3683. P.FormFactor = "Custom"
  3684. P.BrickColor = Hit.BrickColor
  3685. P.Material = Hit.Material
  3686. P.TopSurface = "Smooth"
  3687. P.BottomSurface = "Smooth"
  3688. P.Size = Vector3.new(1,1,1)*(math.random(100,300)/100)
  3689. Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(v.Size.X/2,0,0)
  3690. Pos = Pos.p
  3691. 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)))
  3692. local P = P:Clone()
  3693. CParts[#CParts+1] = {P,tick()}
  3694. P.Parent = char
  3695. Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(-v.Size.X,0,0)
  3696. Pos = Pos.p
  3697. 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)))
  3698. if LastPos ~= nil then
  3699. local P = P:Clone()
  3700. CParts[#CParts+1] = {P,tick()}
  3701. P.Parent = char
  3702. P.BrickColor = BrickColor.new("Crimson")
  3703. P.Material = "Granite"
  3704. Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(v.Size.X/2,0,0)
  3705. Pos = Pos.p
  3706. local CFr = (CFrame.new(Pos)*(v.CFrame-v.Position))-Vector3.new(0,0.4,0)
  3707. P.Size = Vector3.new(v.Size.X-0.25,1,(CFr.p-LastPos.p).Magnitude+0.25)
  3708. --P.Velocity = Vector3.new(0,-1000,0)
  3709. P.CFrame = CFrame.new(CFr.p,LastPos.p)*CFrame.new(0,0,-((CFr.p-LastPos.p).Magnitude+0.25)/2)
  3710. end
  3711. LastPos = (CFrame.new(Pos)*(v.CFrame-v.Position))-Vector3.new(0,0.4,0)
  3712. end
  3713. end
  3714. end
  3715. if BREAKIT then break end
  3716. wait(0.002)
  3717. end
  3718. for i,v in pairs(Rocks) do
  3719. CParts[#CParts+1] = {v,tick()}
  3720. end
  3721. for i,v in pairs(Parts) do
  3722. v:Destroy()
  3723. end
  3724. Parts = nil
  3725. while true do
  3726. local t = tick()
  3727. local p = nil
  3728. for i,v in pairs(CParts) do
  3729. if t-v[2] > 4 then
  3730. v[1].Transparency = v[1].Transparency+0.05
  3731. if v[1].Transparency >= 1 then
  3732. v[1]:Destroy()
  3733. CParts[i] = nil
  3734. end
  3735. end
  3736. p = v
  3737. end
  3738. if p == nil then break end
  3739. wait(0.002)
  3740. end
  3741. for i,v in pairs(CParts) do
  3742. v:Destroy()
  3743. end
  3744. CParts = {}
  3745. end)
  3746. for i = 1, 10 do
  3747. 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)
  3748. 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)
  3749. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-40), 0, 0), 0.7)
  3750. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, 0) * CFrame.Angles(math.rad(10), 0, 0), 0.7)
  3751. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, -.1) * CFrame.Angles(math.rad(-16), 0, 0), 0.7)
  3752. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, -.1) * CFrame.Angles(math.rad(-16), 0, 0), 0.7)
  3753. corw.C0 = Lerp(corw.C0, CFrame.new(0, -0.85, 0) * CFrame.Angles(math.rad(-90), math.rad(-40), math.rad(0)), 0.4)
  3754. if Debounces.on==false then
  3755. break
  3756. end
  3757. rs:wait()
  3758. end
  3759. if Debounces.CanAttack == false then
  3760. Debounces.CanAttack = true
  3761. Debounces.NoIdl = false
  3762. Debounces.on = false
  3763. end
  3764. end
  3765. end
  3766. end)
  3767. ----------------------------------------------------
  3768. mouse.KeyDown:connect(function(key)
  3769. if string.byte(key) == 52 then
  3770. char.Humanoid.WalkSpeed = 28
  3771. end
  3772. end)
  3773. mouse.KeyUp:connect(function(key)
  3774. if string.byte(key) == 52 then
  3775. char.Humanoid.WalkSpeed = 16
  3776. end
  3777. end)
  3778. ----------------------------------------------------
  3779. game:GetService("RunService").RenderStepped:connect(function()
  3780. if char.Humanoid.Jump == true then
  3781. jump = true
  3782. else
  3783. jump = false
  3784. end
  3785. char.Humanoid.FreeFalling:connect(function(f)
  3786. if f then
  3787. ffing = true
  3788. else
  3789. ffing = false
  3790. end
  3791. end)
  3792. sine = sine + change
  3793. if jumpn == true then
  3794. animpose = "Jumping"
  3795. elseif ffing == true then
  3796. animpose = "Freefalling"
  3797. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 5 then
  3798. animpose = "Idle"
  3799. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 20 then
  3800. animpose = "Walking"
  3801. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude > 20 then
  3802. animpose = "Running"
  3803. end
  3804. if animpose ~= lastanimpose then
  3805. sine = 0
  3806. if Debounces.NoIdl == false then
  3807. for i = 1, 2 do
  3808. 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)
  3809. 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)
  3810. 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)
  3811. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.2)
  3812. 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)
  3813. 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)
  3814. 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)
  3815. corw.C0 = Lerp(corw.C0, CFrame.new(0, -0.85, 0) * CFrame.Angles(math.rad(-90), math.rad(0), math.rad(0)), 0.4)
  3816. end
  3817. wait()
  3818. end
  3819. else
  3820. end
  3821. lastanimpose = animpose
  3822. if Debounces.NoIdl == false then
  3823. if animpose == "Idle" then
  3824. change = 0.5
  3825. 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)
  3826. 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)
  3827. 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)
  3828. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.2)
  3829. 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)
  3830. 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)
  3831. 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)
  3832. 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)
  3833. corw.C0 = Lerp(corw.C0, CFrame.new(0, -0.85, 0) * CFrame.Angles(math.rad(-90), math.rad(0), math.rad(0)), 0.4)
  3834. --[[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)
  3835. 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)
  3836. 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)
  3837. 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)
  3838. 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)
  3839. 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)
  3840. 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)]]--
  3841. elseif animpose == "Walking" then
  3842. change = 1
  3843. 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)
  3844. 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)
  3845. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, -.2) * CFrame.Angles(math.rad(-14),0,0), 0.4)
  3846. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.2)
  3847. 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)
  3848. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-8), 0, math.rad(-8)), 0.4)
  3849. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-8), 0, math.rad(8)), 0.4)
  3850. 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)
  3851. corw.C0 = Lerp(corw.C0, CFrame.new(0, -0.85, 0) * CFrame.Angles(math.rad(-90), math.rad(0), math.rad(0)), 0.4)
  3852. elseif animpose == "Running" then
  3853. change = 1
  3854. 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)
  3855. 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)
  3856. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, -.2) * CFrame.Angles(math.rad(20),0,0), 0.4)
  3857. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.2)
  3858. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(-40),0, math.rad(0)), 0.05)
  3859. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-4), 0, math.rad(-8)), 0.4)
  3860. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-4), 0, math.rad(8)), 0.4)
  3861. 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)
  3862. corw.C0 = Lerp(corw.C0, CFrame.new(0, -0.85, 0) * CFrame.Angles(math.rad(-90), math.rad(0), math.rad(0)), 0.4)
  3863. end
  3864. end
  3865. och=och+1
  3866. for _,v in pairs(chot) do
  3867. pcall(function()
  3868. v.CFrame=v.CFrame:lerp(char.Sword.Blade.CFrame,0.1)
  3869. 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))
  3870. end)
  3871. end
  3872. end)
  3873. --[[while true do wait(0.2) https://preview.c9users.io/jaspher/rbx_stoof/RMMech.lua
  3874. if charge == true then
  3875. 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)
  3876. end
  3877. end]]--
  3878.  
  3879.  
  3880.  
  3881.  
  3882.  
  3883. Me = game.Players.LocalPlayer
  3884. char = Me.Character
  3885. larm = char["Left Arm"]
  3886. rarm = char["Right Arm"]
  3887. lleg = char["Left Leg"]
  3888. rleg = char["Right Leg"]
  3889. torso = char.Torso
  3890.  
  3891. lleg.Transparency = 1
  3892. rleg.Transparency = 1
  3893. larm.Transparency = 1
  3894. rarm.Transparency = 1
  3895. torso.Transparency = 1
  3896. ------------------------------------------------------------------ Player -------------------------------------------------------------------
  3897.  
  3898. ----------------------------------------------------------------- Left Arm -----------------------------------------------------------------
  3899. larm1 = Instance.new("Part", char)
  3900. larm1.Name = "Middle"
  3901. larm1.BrickColor = BrickColor.new("Royal purple")
  3902. larm1.Size = Vector3.new(1, 2, 1)
  3903. larm1.CanCollide = false
  3904. larm1.BottomSurface = "Smooth"
  3905. larm1.TopSurface = "Smooth"
  3906. larm1.Material = "Neon"
  3907. Weld = Instance.new("Weld",larm)
  3908. Weld.Part0 = larm
  3909. 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)
  3910. Weld.Part1 = larm1
  3911. 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)
  3912.  
  3913. larm2 = Instance.new("Part", char)
  3914. larm2.BrickColor = BrickColor.new("Really black")
  3915. larm2.Size = Vector3.new(1, 0.4, 1)
  3916. larm2.CanCollide = false
  3917. larm2.BottomSurface = "Smooth"
  3918. larm2.TopSurface = "Smooth"
  3919. Weld = Instance.new("Weld",larm)
  3920. Weld.Part0 = larm
  3921. 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)
  3922. Weld.Part1 = larm2
  3923. 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)
  3924.  
  3925. larm3 = Instance.new("Part", char)
  3926. larm3.BrickColor = BrickColor.new("Really black")
  3927. larm3.Size = Vector3.new(1, 0.4, 1)
  3928. larm3.CanCollide = false
  3929. larm3.BottomSurface = "Smooth"
  3930. larm3.TopSurface = "Smooth"
  3931. Weld = Instance.new("Weld",larm)
  3932. Weld.Part0 = larm
  3933. 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)
  3934. Weld.Part1 = larm3
  3935. 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)
  3936.  
  3937. larm4 = Instance.new("Part", char)
  3938. larm4.BrickColor = BrickColor.new("Really black")
  3939. larm4.Size = Vector3.new(1, 0.4, 1)
  3940. larm4.CanCollide = false
  3941. larm4.BottomSurface = "Smooth"
  3942. larm4.TopSurface = "Smooth"
  3943. Weld = Instance.new("Weld",larm)
  3944. Weld.Part0 = larm
  3945. 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)
  3946. Weld.Part1 = larm4
  3947. 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)
  3948.  
  3949. larm5 = Instance.new("Part", char)
  3950. larm5.BrickColor = BrickColor.new("Really black")
  3951. larm5.Size = Vector3.new(1, 0.4, 1)
  3952. larm5.CanCollide = false
  3953. larm5.BottomSurface = "Smooth"
  3954. larm5.TopSurface = "Smooth"
  3955. Weld = Instance.new("Weld",larm)
  3956. Weld.Part0 = larm
  3957. 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)
  3958. Weld.Part1 = larm5
  3959. 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)
  3960.  
  3961. larm6 = Instance.new("Part", char)
  3962. larm6.BrickColor = BrickColor.new("Really black")
  3963. larm6.Size = Vector3.new(1, 0.4, 1)
  3964. larm6.CanCollide = false
  3965. larm6.BottomSurface = "Smooth"
  3966. larm6.TopSurface = "Smooth"
  3967. Mesh = Instance.new("SpecialMesh", larm6)
  3968. Mesh.MeshType = "Brick"
  3969. Mesh.Scale = Vector3.new(1.1, 1.1, 1.1)
  3970. Weld = Instance.new("Weld",larm)
  3971. Weld.Part0 = larm
  3972. 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)
  3973. Weld.Part1 = larm6
  3974. 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)
  3975.  
  3976. larm7 = Instance.new("Part", char)
  3977. larm7.BrickColor = BrickColor.new("Royal purple")
  3978. larm7.Size = Vector3.new(0.5, 0.3, 2)
  3979. larm7.CanCollide = false
  3980. larm7.BottomSurface = "Smooth"
  3981. larm7.TopSurface = "Smooth"
  3982. larm7.Material = "Neon"
  3983. Weld = Instance.new("Weld",larm)
  3984. Weld.Part0 = larm
  3985. 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)
  3986. Weld.Part1 = larm7
  3987. 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)
  3988.  
  3989. larm8 = Instance.new("Part", char)
  3990. larm8.BrickColor = BrickColor.new("Really black")
  3991. larm8.Size = Vector3.new(1, 0.4, 1)
  3992. larm8.CanCollide = false
  3993. larm8.BottomSurface = "Smooth"
  3994. larm8.TopSurface = "Smooth"
  3995. Weld = Instance.new("Weld",larm)
  3996. Weld.Part0 = larm
  3997. 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)
  3998. Weld.Part1 = larm8
  3999. 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)
  4000. ----------------------------------------------------------------- Right Arm -----------------------------------------------------------------
  4001. rarm1 = Instance.new("Part", char)
  4002. rarm1.Name = "Middle"
  4003. rarm1.BrickColor = BrickColor.new("Royal purple")
  4004. rarm1.Size = Vector3.new(1, 2, 1)
  4005. rarm1.CanCollide = false
  4006. rarm1.BottomSurface = "Smooth"
  4007. rarm1.TopSurface = "Smooth"
  4008. rarm1.Material = "Neon"
  4009. Weld = Instance.new("Weld",rarm)
  4010. Weld.Part0 = rarm
  4011. 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)
  4012. Weld.Part1 = rarm1
  4013. 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)
  4014.  
  4015. rarm2 = Instance.new("Part", char)
  4016. rarm2.BrickColor = BrickColor.new("Really black")
  4017. rarm2.Size = Vector3.new(1, 0.4, 1)
  4018. rarm2.CanCollide = false
  4019. rarm2.BottomSurface = "Smooth"
  4020. rarm2.TopSurface = "Smooth"
  4021. Weld = Instance.new("Weld",rarm)
  4022. Weld.Part0 = rarm
  4023. 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)
  4024. Weld.Part1 = rarm2
  4025. 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)
  4026.  
  4027. rarm3 = Instance.new("Part", char)
  4028. rarm3.BrickColor = BrickColor.new("Really black")
  4029. rarm3.Size = Vector3.new(1, 0.4, 1)
  4030. rarm3.CanCollide = false
  4031. rarm3.BottomSurface = "Smooth"
  4032. rarm3.TopSurface = "Smooth"
  4033. Weld = Instance.new("Weld",rarm)
  4034. Weld.Part0 = rarm
  4035. 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)
  4036. Weld.Part1 = rarm3
  4037. 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)
  4038.  
  4039. rarm4 = Instance.new("Part", char)
  4040. rarm4.BrickColor = BrickColor.new("Really black")
  4041. rarm4.Size = Vector3.new(1, 0.4, 1)
  4042. rarm4.CanCollide = false
  4043. rarm4.BottomSurface = "Smooth"
  4044. rarm4.TopSurface = "Smooth"
  4045. Weld = Instance.new("Weld",rarm)
  4046. Weld.Part0 = rarm
  4047. 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)
  4048. Weld.Part1 = rarm4
  4049. 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)
  4050.  
  4051. rarm5 = Instance.new("Part", char)
  4052. rarm5.BrickColor = BrickColor.new("Really black")
  4053. rarm5.Size = Vector3.new(1, 0.4, 1)
  4054. rarm5.CanCollide = false
  4055. rarm5.BottomSurface = "Smooth"
  4056. rarm5.TopSurface = "Smooth"
  4057. Mesh = Instance.new("SpecialMesh", rarm5)
  4058. Mesh.MeshType = "Brick"
  4059. Mesh.Scale = Vector3.new(1.1, 1.1, 1.1)
  4060. Weld = Instance.new("Weld",rarm)
  4061. Weld.Part0 = rarm
  4062. 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)
  4063. Weld.Part1 = rarm5
  4064. 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)
  4065.  
  4066. rarm6 = Instance.new("Part", char)
  4067. rarm6.BrickColor = BrickColor.new("Really black")
  4068. rarm6.Size = Vector3.new(1, 0.4, 1)
  4069. rarm6.CanCollide = false
  4070. rarm6.BottomSurface = "Smooth"
  4071. rarm6.TopSurface = "Smooth"
  4072. Weld = Instance.new("Weld",rarm)
  4073. Weld.Part0 = rarm
  4074. 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)
  4075. Weld.Part1 = rarm6
  4076. 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)
  4077.  
  4078. rarm7 = Instance.new("Part", char)
  4079. rarm7.BrickColor = BrickColor.new("Royal purple")
  4080. rarm7.Size = Vector3.new(0.5, 0.3, 2)
  4081. rarm7.CanCollide = false
  4082. rarm7.BottomSurface = "Smooth"
  4083. rarm7.TopSurface = "Smooth"
  4084. rarm7.Material = "Neon"
  4085. Weld = Instance.new("Weld",rarm)
  4086. Weld.Part0 = rarm
  4087. 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)
  4088. Weld.Part1 = rarm7
  4089. 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)
  4090.  
  4091. rarm8 = Instance.new("Part", char)
  4092. rarm8.BrickColor = BrickColor.new("Really black")
  4093. rarm8.Size = Vector3.new(1, 0.4, 1)
  4094. rarm8.CanCollide = false
  4095. rarm8.BottomSurface = "Smooth"
  4096. rarm8.TopSurface = "Smooth"
  4097. Weld = Instance.new("Weld",rarm)
  4098. Weld.Part0 = rarm
  4099. 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)
  4100. Weld.Part1 = rarm8
  4101. 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)
  4102. ----------------------------------------------------------------- Left Leg -----------------------------------------------------------------
  4103. lleg1 = Instance.new("Part", char)
  4104. lleg1.Name = "Middle"
  4105. lleg1.BrickColor = BrickColor.new("Royal purple")
  4106. lleg1.Size = Vector3.new(1, 2, 1)
  4107. lleg1.CanCollide = false
  4108. lleg1.BottomSurface = "Smooth"
  4109. lleg1.TopSurface = "Smooth"
  4110. lleg1.Material = "Neon"
  4111. Weld = Instance.new("Weld",lleg)
  4112. Weld.Part0 = lleg
  4113. Weld.C0 = CFrame.new(-2.3581152, 0.999663353, -5.17447472, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4114. Weld.Part1 = lleg1
  4115. Weld.C1 = CFrame.new(-2.3581152, 0.999663353, -5.17447472, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4116.  
  4117. lleg2 = Instance.new("Part", char)
  4118. lleg2.BrickColor = BrickColor.new("Really black")
  4119. lleg2.Size = Vector3.new(1, 0.4, 1)
  4120. lleg2.CanCollide = false
  4121. lleg2.BottomSurface = "Smooth"
  4122. lleg2.TopSurface = "Smooth"
  4123. Weld = Instance.new("Weld",lleg)
  4124. Weld.Part0 = lleg
  4125. Weld.C0 = CFrame.new(-2.3581152, 0.999663353, -5.17447472, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4126. Weld.Part1 = lleg2
  4127. 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)
  4128.  
  4129. lleg3 = Instance.new("Part", char)
  4130. lleg3.BrickColor = BrickColor.new("Really black")
  4131. lleg3.Size = Vector3.new(0.5, 0.3, 2)
  4132. lleg3.CanCollide = false
  4133. lleg3.BottomSurface = "Smooth"
  4134. lleg3.TopSurface = "Smooth"
  4135. Weld = Instance.new("Weld",lleg)
  4136. Weld.Part0 = lleg
  4137. Weld.C0 = CFrame.new(-2.3581152, 0.999663353, -5.17447472, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4138. Weld.Part1 = lleg3
  4139. 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)
  4140.  
  4141. lleg4 = Instance.new("Part", char)
  4142. lleg4.BrickColor = BrickColor.new("Really black")
  4143. lleg4.Size = Vector3.new(1, 0.4, 1)
  4144. lleg4.CanCollide = false
  4145. lleg4.BottomSurface = "Smooth"
  4146. lleg4.TopSurface = "Smooth"
  4147. Weld = Instance.new("Weld",lleg)
  4148. Weld.Part0 = lleg
  4149. Weld.C0 = CFrame.new(-2.3581152, 0.999663353, -5.17447472, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4150. Weld.Part1 = lleg4
  4151. 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)
  4152.  
  4153. lleg5 = Instance.new("Part", char)
  4154. lleg5.BrickColor = BrickColor.new("Really black")
  4155. lleg5.Size = Vector3.new(1, 0.4, 1)
  4156. lleg5.CanCollide = false
  4157. lleg5.BottomSurface = "Smooth"
  4158. lleg5.TopSurface = "Smooth"
  4159. Weld = Instance.new("Weld",lleg)
  4160. Weld.Part0 = lleg
  4161. Weld.C0 = CFrame.new(-2.3581152, 0.999663353, -5.17447472, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4162. Weld.Part1 = lleg5
  4163. 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)
  4164.  
  4165. lleg6 = Instance.new("Part", char)
  4166. lleg6.BrickColor = BrickColor.new("Really black")
  4167. lleg6.Size = Vector3.new(1, 0.4, 1)
  4168. lleg6.CanCollide = false
  4169. lleg6.BottomSurface = "Smooth"
  4170. lleg6.TopSurface = "Smooth"
  4171. Weld = Instance.new("Weld",lleg)
  4172. Weld.Part0 = lleg
  4173. Weld.C0 = CFrame.new(-2.3581152, 0.999663353, -5.17447472, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4174. Weld.Part1 = lleg6
  4175. 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)
  4176.  
  4177. lleg7 = Instance.new("Part", char)
  4178. lleg7.BrickColor = BrickColor.new("Really black")
  4179. lleg7.Size = Vector3.new(1, 0.4, 1)
  4180. lleg7.CanCollide = false
  4181. lleg7.BottomSurface = "Smooth"
  4182. lleg7.TopSurface = "Smooth"
  4183. Weld = Instance.new("Weld",lleg)
  4184. Weld.Part0 = lleg
  4185. Weld.C0 = CFrame.new(-2.3581152, 0.999663353, -5.17447472, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4186. Weld.Part1 = lleg7
  4187. 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)
  4188. ----------------------------------------------------------------- Right Leg -----------------------------------------------------------------
  4189. rleg1 = Instance.new("Part", char)
  4190. rleg1.Name = "Middle"
  4191. rleg1.BrickColor = BrickColor.new("Royal purple")
  4192. rleg1.Size = Vector3.new(1, 2, 1)
  4193. rleg1.CanCollide = false
  4194. rleg1.BottomSurface = "Smooth"
  4195. rleg1.TopSurface = "Smooth"
  4196. rleg1.Material = "Neon"
  4197. Weld = Instance.new("Weld",rleg)
  4198. Weld.Part0 = rleg
  4199. Weld.C0 = CFrame.new(-3.3581152, 1.00582027, -5.17447472, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4200. Weld.Part1 = rleg1
  4201. Weld.C1 = CFrame.new(-3.3581152, 1.00582027, -5.17447472, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4202.  
  4203. rleg2 = Instance.new("Part", char)
  4204. rleg2.BrickColor = BrickColor.new("Really black")
  4205. rleg2.Size = Vector3.new(1, 0.4, 1)
  4206. rleg2.CanCollide = false
  4207. rleg2.BottomSurface = "Smooth"
  4208. rleg2.TopSurface = "Smooth"
  4209. Weld = Instance.new("Weld",rleg)
  4210. Weld.Part0 = rleg
  4211. Weld.C0 = CFrame.new(-3.3581152, 1.00582027, -5.17447472, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4212. Weld.Part1 = rleg2
  4213. 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)
  4214.  
  4215. rleg3 = Instance.new("Part", char)
  4216. rleg3.BrickColor = BrickColor.new("Really black")
  4217. rleg3.Size = Vector3.new(1, 0.4, 1)
  4218. rleg3.CanCollide = false
  4219. rleg3.BottomSurface = "Smooth"
  4220. rleg3.TopSurface = "Smooth"
  4221. Weld = Instance.new("Weld",rleg)
  4222. Weld.Part0 = rleg
  4223. Weld.C0 = CFrame.new(-3.3581152, 1.00582027, -5.17447472, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4224. Weld.Part1 = rleg3
  4225. 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)
  4226.  
  4227. rleg4 = Instance.new("Part", char)
  4228. rleg4.BrickColor = BrickColor.new("Really black")
  4229. rleg4.Size = Vector3.new(1, 0.4, 1)
  4230. rleg4.CanCollide = false
  4231. rleg4.BottomSurface = "Smooth"
  4232. rleg4.TopSurface = "Smooth"
  4233. Weld = Instance.new("Weld",rleg)
  4234. Weld.Part0 = rleg
  4235. Weld.C0 = CFrame.new(-3.3581152, 1.00582027, -5.17447472, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4236. Weld.Part1 = rleg4
  4237. 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)
  4238.  
  4239. rleg5 = Instance.new("Part", char)
  4240. rleg5.BrickColor = BrickColor.new("Really black")
  4241. rleg5.Size = Vector3.new(1, 0.4, 1)
  4242. rleg5.CanCollide = false
  4243. rleg5.BottomSurface = "Smooth"
  4244. rleg5.TopSurface = "Smooth"
  4245. Weld = Instance.new("Weld",rleg)
  4246. Weld.Part0 = rleg
  4247. Weld.C0 = CFrame.new(-3.3581152, 1.00582027, -5.17447472, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4248. Weld.Part1 = rleg5
  4249. 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)
  4250.  
  4251. rleg6 = Instance.new("Part", char)
  4252. rleg6.BrickColor = BrickColor.new("Really black")
  4253. rleg6.Size = Vector3.new(1, 0.4, 1)
  4254. rleg6.CanCollide = false
  4255. rleg6.BottomSurface = "Smooth"
  4256. rleg6.TopSurface = "Smooth"
  4257. Weld = Instance.new("Weld",rleg)
  4258. Weld.Part0 = rleg
  4259. Weld.C0 = CFrame.new(-3.3581152, 1.00582027, -5.17447472, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4260. Weld.Part1 = rleg6
  4261. 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)
  4262.  
  4263. rleg7 = Instance.new("Part", char)
  4264. rleg7.BrickColor = BrickColor.new("Really black")
  4265. rleg7.Size = Vector3.new(0.5, 0.3, 2)
  4266. rleg7.CanCollide = false
  4267. rleg7.BottomSurface = "Smooth"
  4268. rleg7.TopSurface = "Smooth"
  4269. Weld = Instance.new("Weld",rleg)
  4270. Weld.Part0 = rleg
  4271. Weld.C0 = CFrame.new(-3.3581152, 1.00582027, -5.17447472, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4272. Weld.Part1 = rleg7
  4273. 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)
  4274. ----------------------------------------------------------------- Torso -----------------------------------------------------------------
  4275. Chest1 = Instance.new("Part", char)
  4276. Chest1.Name = "Ball"
  4277. Chest1.BrickColor = BrickColor.new("Royal purple")
  4278. Chest1.Size = Vector3.new(1, 0.4, 1)
  4279. Chest1.CanCollide = false
  4280. Chest1.BottomSurface = "Smooth"
  4281. Chest1.TopSurface = "Smooth"
  4282. Chest1.Material = "Neon"
  4283. Mesh = Instance.new("CylinderMesh", Chest1)
  4284. Mesh.Scale = Vector3.new(0.9, 0.4, 0.9)
  4285. Weld = Instance.new("Weld",torso)
  4286. Weld.Part0 = torso
  4287. Weld.C0 = CFrame.new(0, 0.0235004425, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4288. Weld.Part1 = Chest1
  4289. Weld.C1 = CFrame.new(0, 0.700000763, 0.176463604, -1, 0, 0, 0, 0, -1, 0, -1, 0)
  4290.  
  4291. Chest2 = Instance.new("Part", char)
  4292. Chest2.BrickColor = BrickColor.new("Royal purple")
  4293. Chest2.Name = "Middle"
  4294. Chest2.Size = Vector3.new(2, 2, 1)
  4295. Chest2.CanCollide = false
  4296. Chest2.BottomSurface = "Smooth"
  4297. Chest2.TopSurface = "Smooth"
  4298. Chest2.Material = "Neon"
  4299. Weld = Instance.new("Weld",torso)
  4300. Weld.Part0 = torso
  4301. Weld.C0 = CFrame.new(0, 0.0235004425, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4302. Weld.Part1 = Chest2
  4303. Weld.C1 = CFrame.new(0, 0.0235004425, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4304.  
  4305. Chest3 = Instance.new("Part", char)
  4306. Chest3.BrickColor = BrickColor.new("Really black")
  4307. Chest3.Size = Vector3.new(1, 0.4, 1)
  4308. Chest3.CanCollide = false
  4309. Chest3.BottomSurface = "Smooth"
  4310. Chest3.TopSurface = "Smooth"
  4311. Weld = Instance.new("Weld",torso)
  4312. Weld.Part0 = torso
  4313. Weld.C0 = CFrame.new(0, 0.0235004425, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4314. Weld.Part1 = Chest3
  4315. 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)
  4316.  
  4317. Chest4 = Instance.new("Part", char)
  4318. Chest4.BrickColor = BrickColor.new("Really black")
  4319. Chest4.Size = Vector3.new(1, 0.4, 1)
  4320. Chest4.CanCollide = false
  4321. Chest4.BottomSurface = "Smooth"
  4322. Chest4.TopSurface = "Smooth"
  4323. Weld = Instance.new("Weld",torso)
  4324. Weld.Part0 = torso
  4325. Weld.C0 = CFrame.new(0, 0.0235004425, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4326. Weld.Part1 = Chest4
  4327. 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)
  4328.  
  4329. Chest5 = Instance.new("Part", char)
  4330. Chest5.BrickColor = BrickColor.new("Really black")
  4331. Chest5.Size = Vector3.new(1, 0.4, 1)
  4332. Chest5.CanCollide = false
  4333. Chest5.BottomSurface = "Smooth"
  4334. Chest5.TopSurface = "Smooth"
  4335. Weld = Instance.new("Weld",torso)
  4336. Weld.Part0 = torso
  4337. Weld.C0 = CFrame.new(0, 0.0235004425, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4338. Weld.Part1 = Chest5
  4339. 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)
  4340.  
  4341. Chest6 = Instance.new("Part", char)
  4342. Chest6.BrickColor = BrickColor.new("Really black")
  4343. Chest6.Size = Vector3.new(1, 0.4, 1)
  4344. Chest6.CanCollide = false
  4345. Chest6.BottomSurface = "Smooth"
  4346. Chest6.TopSurface = "Smooth"
  4347. Weld = Instance.new("Weld",torso)
  4348. Weld.Part0 = torso
  4349. Weld.C0 = CFrame.new(0, 0.0235004425, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4350. Weld.Part1 = Chest6
  4351. 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)
  4352.  
  4353. Chest7 = Instance.new("Part", char)
  4354. Chest7.BrickColor = BrickColor.new("Really black")
  4355. Chest7.Size = Vector3.new(1, 0.4, 1)
  4356. Chest7.CanCollide = false
  4357. Chest7.BottomSurface = "Smooth"
  4358. Chest7.TopSurface = "Smooth"
  4359. Weld = Instance.new("Weld",torso)
  4360. Weld.Part0 = torso
  4361. Weld.C0 = CFrame.new(0, 0.0235004425, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4362. Weld.Part1 = Chest7
  4363. 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)
  4364.  
  4365. Chest8 = Instance.new("Part", char)
  4366. Chest8.BrickColor = BrickColor.new("Really black")
  4367. Chest8.Size = Vector3.new(1, 0.4, 1)
  4368. Chest8.CanCollide = false
  4369. Chest8.BottomSurface = "Smooth"
  4370. Chest8.TopSurface = "Smooth"
  4371. Weld = Instance.new("Weld",torso)
  4372. Weld.Part0 = torso
  4373. Weld.C0 = CFrame.new(0, 0.0235004425, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4374. Weld.Part1 = Chest8
  4375. 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)
  4376.  
  4377. Chest9 = Instance.new("Part", char)
  4378. Chest9.BrickColor = BrickColor.new("Really black")
  4379. Chest9.Size = Vector3.new(0.5, 0.3, 2)
  4380. Chest9.CanCollide = false
  4381. Chest9.BottomSurface = "Smooth"
  4382. Chest9.TopSurface = "Smooth"
  4383. Weld = Instance.new("Weld",torso)
  4384. Weld.Part0 = torso
  4385. Weld.C0 = CFrame.new(0, 0.0235004425, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4386. Weld.Part1 = Chest9
  4387. 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)
  4388.  
  4389. Chest10 = Instance.new("Part", char)
  4390. Chest10.BrickColor = BrickColor.new("Really black")
  4391. Chest10.Size = Vector3.new(1, 0.4, 1)
  4392. Chest10.CanCollide = false
  4393. Chest10.BottomSurface = "Smooth"
  4394. Chest10.TopSurface = "Smooth"
  4395. Mesh = Instance.new("SpecialMesh", Chest10)
  4396. Mesh.Scale = Vector3.new(1.1, 1.1, 1.1)
  4397. Weld = Instance.new("Weld",torso)
  4398. Weld.Part0 = torso
  4399. Weld.C0 = CFrame.new(0, 0.0235004425, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4400. Weld.Part1 = Chest10
  4401. 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)
  4402.  
  4403. Chest11 = Instance.new("Part", char)
  4404. Chest11.BrickColor = BrickColor.new("Really black")
  4405. Chest11.Size = Vector3.new(0.5, 0.3, 2)
  4406. Chest11.CanCollide = false
  4407. Chest11.BottomSurface = "Smooth"
  4408. Chest11.TopSurface = "Smooth"
  4409. Weld = Instance.new("Weld",torso)
  4410. Weld.Part0 = torso
  4411. Weld.C0 = CFrame.new(0, 0.0235004425, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4412. Weld.Part1 = Chest11
  4413. 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)
  4414.  
  4415. Chest12 = Instance.new("Part", char)
  4416. Chest12.BrickColor = BrickColor.new("Really black")
  4417. Chest12.Size = Vector3.new(0.5, 0.3, 2)
  4418. Chest12.CanCollide = false
  4419. Chest12.BottomSurface = "Smooth"
  4420. Chest12.TopSurface = "Smooth"
  4421. Weld = Instance.new("Weld",torso)
  4422. Weld.Part0 = torso
  4423. Weld.C0 = CFrame.new(0, 0.0235004425, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4424. Weld.Part1 = Chest12
  4425. 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)
  4426.  
  4427. Chest13 = Instance.new("Part", char)
  4428. Chest13.BrickColor = BrickColor.new("Really black")
  4429. Chest13.Size = Vector3.new(0.5, 0.3, 2)
  4430. Chest13.CanCollide = false
  4431. Chest13.BottomSurface = "Smooth"
  4432. Chest13.TopSurface = "Smooth"
  4433. Weld = Instance.new("Weld",torso)
  4434. Weld.Part0 = torso
  4435. Weld.C0 = CFrame.new(0, 0.0235004425, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4436. Weld.Part1 = Chest13
  4437. 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)
  4438.  
  4439. Chest14 = Instance.new("Part", char)
  4440. Chest14.BrickColor = BrickColor.new("Really black")
  4441. Chest14.Size = Vector3.new(0.5, 0.3, 2)
  4442. Chest14.CanCollide = false
  4443. Chest14.BottomSurface = "Smooth"
  4444. Chest14.TopSurface = "Smooth"
  4445. Weld = Instance.new("Weld",torso)
  4446. Weld.Part0 = torso
  4447. Weld.C0 = CFrame.new(0, 0.0235004425, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4448. Weld.Part1 = Chest14
  4449. 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)
  4450.  
  4451. Chest15 = Instance.new("Part", char)
  4452. Chest15.BrickColor = BrickColor.new("Really black")
  4453. Chest15.Size = Vector3.new(0.5, 0.3, 2)
  4454. Chest15.CanCollide = false
  4455. Chest15.BottomSurface = "Smooth"
  4456. Chest15.TopSurface = "Smooth"
  4457. Weld = Instance.new("Weld",torso)
  4458. Weld.Part0 = torso
  4459. Weld.C0 = CFrame.new(0, 0.0235004425, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4460. Weld.Part1 = Chest15
  4461. 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)
  4462.  
  4463. Chest16 = Instance.new("Part", char)
  4464. Chest16.BrickColor = BrickColor.new("Really black")
  4465. Chest16.Size = Vector3.new(0.5, 0.3, 2)
  4466. Chest16.CanCollide = false
  4467. Chest16.BottomSurface = "Smooth"
  4468. Chest16.TopSurface = "Smooth"
  4469. Weld = Instance.new("Weld",torso)
  4470. Weld.Part0 = torso
  4471. Weld.C0 = CFrame.new(0, 0.0235004425, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4472. Weld.Part1 = Chest16
  4473. 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)
  4474.  
  4475. Chest17 = Instance.new("Part", char)
  4476. Chest17.BrickColor = BrickColor.new("Really black")
  4477. Chest17.Size = Vector3.new(0.5, 0.3, 2)
  4478. Chest17.CanCollide = false
  4479. Chest17.BottomSurface = "Smooth"
  4480. Chest17.TopSurface = "Smooth"
  4481. Weld = Instance.new("Weld",torso)
  4482. Weld.Part0 = torso
  4483. Weld.C0 = CFrame.new(0, 0.0235004425, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4484. Weld.Part1 = Chest17
  4485. 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)
  4486.  
  4487. Chest18 = Instance.new("Part", char)
  4488. Chest18.BrickColor = BrickColor.new("Really black")
  4489. Chest18.Size = Vector3.new(0.5, 0.3, 2)
  4490. Chest18.CanCollide = false
  4491. Chest18.BottomSurface = "Smooth"
  4492. Chest18.TopSurface = "Smooth"
  4493. Weld = Instance.new("Weld",torso)
  4494. Weld.Part0 = torso
  4495. Weld.C0 = CFrame.new(0, 0.0235004425, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4496. Weld.Part1 = Chest18
  4497. 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)
  4498.  
  4499. Chest19 = Instance.new("Part", char)
  4500. Chest19.BrickColor = BrickColor.new("Really black")
  4501. Chest19.Size = Vector3.new(0.5, 0.3, 2)
  4502. Chest19.CanCollide = false
  4503. Chest19.BottomSurface = "Smooth"
  4504. Chest19.TopSurface = "Smooth"
  4505. Weld = Instance.new("Weld",torso)
  4506. Weld.Part0 = torso
  4507. Weld.C0 = CFrame.new(0, 0.0235004425, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4508. Weld.Part1 = Chest19
  4509. 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)
  4510.  
  4511. Chest20 = Instance.new("Part", char)
  4512. Chest20.BrickColor = BrickColor.new("Really black")
  4513. Chest20.Size = Vector3.new(1, 0.4, 1)
  4514. Chest20.CanCollide = false
  4515. Chest20.BottomSurface = "Smooth"
  4516. Chest20.TopSurface = "Smooth"
  4517. Mesh = Instance.new("SpecialMesh",Chest20)
  4518. Mesh.Scale = Vector3.new(1.1,1.1,1.1)
  4519. Weld = Instance.new("Weld",torso)
  4520. Weld.Part0 = torso
  4521. Weld.C0 = CFrame.new(0, 0.0235004425, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4522. Weld.Part1 = Chest20
  4523. 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)
  4524.  
  4525. Chest21 = Instance.new("Part", char)
  4526. Chest21.BrickColor = BrickColor.new("Really black")
  4527. Chest21.Size = Vector3.new(0.5, 0.3, 2)
  4528. Chest21.CanCollide = false
  4529. Chest21.BottomSurface = "Smooth"
  4530. Chest21.TopSurface = "Smooth"
  4531. Weld = Instance.new("Weld",torso)
  4532. Weld.Part0 = torso
  4533. Weld.C0 = CFrame.new(0, 0.0235004425, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4534. Weld.Part1 = Chest21
  4535. 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)
  4536.  
  4537. Chest22 = Instance.new("Part", char)
  4538. Chest22.BrickColor = BrickColor.new("Really black")
  4539. Chest22.Size = Vector3.new(0.5, 0.3, 2)
  4540. Chest22.CanCollide = false
  4541. Chest22.BottomSurface = "Smooth"
  4542. Chest22.TopSurface = "Smooth"
  4543. Weld = Instance.new("Weld",torso)
  4544. Weld.Part0 = torso
  4545. Weld.C0 = CFrame.new(0, 0.0235004425, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4546. Weld.Part1 = Chest22
  4547. 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)
  4548.  
  4549. Chest23 = Instance.new("Part", char)
  4550. Chest23.BrickColor = BrickColor.new("Really black")
  4551. Chest23.Size = Vector3.new(0.5, 0.3, 2)
  4552. Chest23.CanCollide = false
  4553. Chest23.BottomSurface = "Smooth"
  4554. Chest23.TopSurface = "Smooth"
  4555. Weld = Instance.new("Weld",torso)
  4556. Weld.Part0 = torso
  4557. Weld.C0 = CFrame.new(0, 0.0235004425, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4558. Weld.Part1 = Chest23
  4559. 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)
  4560.  
  4561. Chest24 = Instance.new("Part", char)
  4562. Chest24.BrickColor = BrickColor.new("Really black")
  4563. Chest24.Size = Vector3.new(0.5, 0.3, 2)
  4564. Chest24.CanCollide = false
  4565. Chest24.BottomSurface = "Smooth"
  4566. Chest24.TopSurface = "Smooth"
  4567. Weld = Instance.new("Weld",torso)
  4568. Weld.Part0 = torso
  4569. Weld.C0 = CFrame.new(0, 0.0235004425, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4570. Weld.Part1 = Chest24
  4571. 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)
  4572.  
  4573.  
  4574.  
  4575.  
  4576.  
  4577.  
  4578. local verlet = {}
  4579. verlet.step_time = 1 / 50
  4580. verlet.gravity = Vector3.new(0, -10, 0)
  4581.  
  4582. local char = game.Players.LocalPlayer.Character
  4583. local torso = char:WaitForChild("Torso")
  4584. local parts = {}
  4585. local render = game:GetService("RunService").RenderStepped
  4586.  
  4587. wait(2)
  4588.  
  4589. local point = {}
  4590. local link = {}
  4591. local rope = {}
  4592.  
  4593. local function ccw(A,B,C)
  4594. return (C.y-A.y) * (B.x-A.x) > (B.y-A.y) * (C.x-A.x)
  4595. end
  4596.  
  4597. local function intersect(A,B,C,D)
  4598. return ccw(A,C,D) ~= ccw(B,C,D) and ccw(A,B,C) ~= ccw(A,B,D)
  4599. end
  4600.  
  4601. local function vec2(v)
  4602. return Vector2.new(v.x, v.z)
  4603. end
  4604.  
  4605. function point:step()
  4606. if not self.fixed then
  4607. local derivative = (self.position - self.last_position) * 0.95
  4608. self.last_position = self.position
  4609. self.position = self.position + derivative + (self.velocity * verlet.step_time ^ 2)
  4610. --[[local torsoP = torso.CFrame * CFrame.new(-1, 0, 0.5)
  4611. local torsoE = torso.CFrame * CFrame.new(1, 0, 0.5)
  4612. local pointE = self.position + torso.CFrame.lookVector * 100
  4613. local doIntersect = intersect(vec2(torsoP.p), vec2(torsoE.p), vec2(self.position), vec2(pointE))
  4614. if not doIntersect then
  4615. self.postition = self.position - torso.CFrame.lookVector * 10
  4616. end]]
  4617. end
  4618. end
  4619.  
  4620. function link:step()
  4621. for i = 1, 1 do
  4622. local distance = self.point1.position - self.point2.position
  4623. local magnitude = distance.magnitude
  4624. local differance = (self.length - magnitude) / magnitude
  4625. local translation = ((self.point1.fixed or self.point2.fixed) and 1 or 0.6) * distance * differance
  4626. if not self.point1.fixed then
  4627. self.point1.position = self.point1.position + translation
  4628. end
  4629. if not self.point2.fixed then
  4630. self.point2.position = self.point2.position - translation
  4631. end
  4632. end
  4633. end
  4634.  
  4635. function verlet.new(class, a, b, c)
  4636. if class == "Point" then
  4637. local new = {}
  4638. setmetatable(new, {__index = point})
  4639. new.class = class
  4640. new.position = a or Vector3.new()
  4641. new.last_position = new.position
  4642. new.velocity = verlet.gravity
  4643. new.fixed = false
  4644. return new
  4645. elseif class == "Link" then
  4646. local new = {}
  4647. setmetatable(new, {__index = link})
  4648. new.class = class
  4649. new.point1 = a
  4650. new.point2 = b
  4651. new.length = c or (a.position - b.position).magnitude
  4652. return new
  4653. elseif class == "Rope" then
  4654. local new = {}
  4655. setmetatable(new, {__index = link})
  4656. new.class = class
  4657. new.start_point = a
  4658. new.finish_point = b
  4659. new.points = {}
  4660. new.links = {}
  4661. local inc = (b - a) / 10
  4662. for i = 0, 10 do
  4663. table.insert(new.points, verlet.new("Point", a + (i * inc)))
  4664. end
  4665. for i = 2, #new.points do
  4666. table.insert(new.links, verlet.new("Link", new.points[i - 1], new.points[i]))
  4667. end
  4668. return new
  4669. end
  4670. end
  4671.  
  4672. local tris = {}
  4673. local triParts = {}
  4674.  
  4675. local function GetDiscoColor(hue)
  4676. local section = hue % 1 * 3
  4677. local secondary = 0.5 * math.pi * (section % 1)
  4678. if section < 1 then
  4679. return Color3.new(1, 1 - math.cos(secondary), 1 - math.sin(secondary))
  4680. elseif section < 2 then
  4681. return Color3.new(1 - math.sin(secondary), 1, 1 - math.cos(secondary))
  4682. else
  4683. return Color3.new(1 - math.cos(secondary), 1 - math.sin(secondary), 1)
  4684. end
  4685. end
  4686.  
  4687. local function setupPart(part)
  4688. part.Anchored = true
  4689. part.FormFactor = 3
  4690. part.CanCollide = false
  4691. part.TopSurface = 10
  4692. part.BottomSurface = 10
  4693. part.LeftSurface = 10
  4694. part.RightSurface = 10
  4695. part.FrontSurface = 10
  4696. part.BackSurface = 10
  4697. part.Material = "Neon"
  4698. local m = Instance.new("SpecialMesh", part)
  4699. m.MeshType = "Wedge"
  4700. m.Scale = Vector3.new(0.2, 1, 1)
  4701. return part
  4702. end
  4703.  
  4704. local function CFrameFromTopBack(at, top, back)
  4705. local right = top:Cross(back)
  4706. 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)
  4707. end
  4708.  
  4709. local function drawTri(parent, a, b, c)
  4710. local this = {}
  4711. local mPart1 = table.remove(triParts, 1) or setupPart(Instance.new("Part"))
  4712. local mPart2 = table.remove(triParts, 1) or setupPart(Instance.new("Part"))
  4713. function this:Set(a, b, c)
  4714. local ab, bc, ca = b-a, c-b, a-c
  4715. local abm, bcm, cam = ab.magnitude, bc.magnitude, ca.magnitude
  4716. local edg1 = math.abs(0.5 + ca:Dot(ab)/(abm*abm))
  4717. local edg2 = math.abs(0.5 + ab:Dot(bc)/(bcm*bcm))
  4718. local edg3 = math.abs(0.5 + bc:Dot(ca)/(cam*cam))
  4719. if edg1 < edg2 then
  4720. if edg1 >= edg3 then
  4721. a, b, c = c, a, b
  4722. ab, bc, ca = ca, ab, bc
  4723. abm = cam
  4724. end
  4725. else
  4726. if edg2 < edg3 then
  4727. a, b, c = b, c, a
  4728. ab, bc, ca = bc, ca, ab
  4729. abm = bcm
  4730. else
  4731. a, b, c = c, a, b
  4732. ab, bc, ca = ca, ab, bc
  4733. abm = cam
  4734. end
  4735. end
  4736.  
  4737. local len1 = -ca:Dot(ab)/abm
  4738. local len2 = abm - len1
  4739. local width = (ca + ab.unit*len1).magnitude
  4740.  
  4741. local maincf = CFrameFromTopBack(a, ab:Cross(bc).unit, -ab.unit)
  4742.  
  4743. if len1 > 0.2 then
  4744. mPart1.Parent = parent
  4745. mPart1.Size = Vector3.new(0.2, width, len1)
  4746. mPart1.CFrame = maincf*CFrame.Angles(math.pi,0,math.pi/2)*CFrame.new(0,width/2,len1/2)
  4747. else
  4748. mPart1.Parent = nil
  4749. end
  4750.  
  4751. if len2 > 0.2 then
  4752. mPart2.Parent = parent
  4753. mPart2.Size = Vector3.new(0.2, width, len2)
  4754. mPart2.CFrame = maincf*CFrame.Angles(math.pi,math.pi,-math.pi/2)*CFrame.new(0,width/2,-len1 - len2/2)
  4755. else
  4756. mPart2.Parent = nil
  4757. end
  4758. end
  4759. function this:SetProperty(prop, value)
  4760. mPart1[prop] = value
  4761. mPart2[prop] = value
  4762. end
  4763. this:Set(a, b, c)
  4764. function this:Destroy()
  4765. mPart1:Destroy()
  4766. mPart2:Destroy()
  4767. end
  4768. this.p1 = mPart1
  4769. this.p2 = mPart2
  4770. this.p1.BrickColor = BrickColor.new(GetDiscoColor(math.noise(0.5, 0.5, this.p1.CFrame.Y * 0.5 + time())))
  4771. this.p2.BrickColor = BrickColor.new(GetDiscoColor(math.noise(0.5, 0.5, this.p2.CFrame.Y * 0.5 + time())))
  4772. return this
  4773. end
  4774.  
  4775. function verlet.draw(object, id)
  4776. if object.class == "Point" then
  4777. local part = parts[id]
  4778. part.BrickColor = BrickColor.new(1, 1, 1)
  4779. part.Transparency = 0
  4780. part.formFactor = 3
  4781. part.Anchored = true
  4782. part.CanCollide = false
  4783. part.TopSurface = 0
  4784. part.BottomSurface = 0
  4785. part.Size = Vector3.new(0.35, 0.35, 0.35)
  4786. part.Material = "Neon"
  4787. part.CFrame = CFrame.new(object.position)
  4788. part.Parent = torso
  4789. return part
  4790. elseif object.class == "Link" then
  4791. local part = parts[id]
  4792. local dist = (object.point1.position - object.point2.position).magnitude
  4793. part.Size = Vector3.new(0.2, 0.2, dist)
  4794. part.CFrame = CFrame.new(object.point1.position, object.point2.position) * CFrame.new(0, 0, dist * -0.5)
  4795. part.Parent = torso
  4796. return part
  4797. end
  4798. end
  4799.  
  4800. function verlet.clear()
  4801. for _, v in pairs(workspace:GetChildren()) do
  4802. if v.Name == "Part" then
  4803. v:Destroy()
  4804. end
  4805. end
  4806. end
  4807.  
  4808. local points = {}
  4809. local links = {}
  4810.  
  4811. for x = 0, 2 do
  4812. points[x] = {}
  4813. for y = 0, 3 do
  4814. points[x][y] = verlet.new("Point", torso.Position + Vector3.new(x * 0.8 - 2, 2 - y * 0.8, 5 + y * 0.4))
  4815. points[x][y].fixed = y == 0
  4816. end
  4817. end
  4818.  
  4819. for x = 1, 2 do
  4820. for y = 0, 3 do
  4821. links[#links + 1] = verlet.new("Link", points[x][y], points[x - 1][y], 1 + y * 0.08)
  4822. end
  4823. end
  4824.  
  4825. for x = 0, 2 do
  4826. for y = 1, 3 do
  4827. links[#links + 1] = verlet.new("Link", points[x][y], points[x][y - 1], 1.2 + y * 0.03)
  4828. end
  4829. end
  4830.  
  4831. render:connect(function()
  4832. for x = 0, 2 do
  4833. for y = 0, 3 do
  4834. if y == 0 then
  4835. points[x][y].position = (torso.CFrame * CFrame.new(x * 1 - 1, 1, 0.5)).p
  4836. else
  4837. points[x][y]:step()
  4838. end
  4839. end
  4840. end
  4841. for i = 1, #links do
  4842. links[i]:step()
  4843. end
  4844. for i = 1, #tris do
  4845. triParts[#triParts + 1] = tris[i].p1
  4846. triParts[#triParts + 1] = tris[i].p2
  4847. end
  4848. tris = {}
  4849. for x = 1, 2 do
  4850. for y = 1, 3 do
  4851. tris[#tris + 1] = drawTri(torso, points[x - 1][y - 1].position, points[x - 1][y].position, points[x][y - 1].position)
  4852. tris[#tris + 1] = drawTri(torso, points[x][y].position, points[x - 1][y].position, points[x][y - 1].position)
  4853. end
  4854. end
  4855. end)
  4856.  
  4857.  
  4858.  
  4859. local player = game:GetService('Players').LocalPlayer
  4860. local rightclone = Instance.new('Motor6D')
  4861. rightclone.Name = "Right Shoulder"
  4862. rightclone.C0 = CFrame.new(1, 0.5, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
  4863. rightclone.C1 = CFrame.new(-0.5, 0.5, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
  4864. local leftclone = Instance.new('Motor6D')
  4865. leftclone.Name = "Left Shoulder"
  4866. leftclone.C0 = CFrame.new(-1, 0.5, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
  4867. leftclone.C1 = CFrame.new(0.5, 0.5, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
  4868. local leftlegclone = Instance.new('Motor6D')
  4869. leftlegclone.Name = "Left Hip"
  4870. leftlegclone.C0 = CFrame.new(-1, -1, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
  4871. leftlegclone.C1 = CFrame.new(-0.5, 1, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
  4872. local rightlegclone = Instance.new('Motor6D')
  4873. rightlegclone.Name = "Right Hip"
  4874. rightlegclone.C0 = CFrame.new(1, -1, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
  4875. rightlegclone.C1 = CFrame.new(0.5, 1, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
  4876. local torsoclone = Instance.new('Motor6D')
  4877. torsoclone.Name = "RootJoint"
  4878. torsoclone.C0 = CFrame.new(0, 0, 0, -1, -0, -0, 0, 0, 1, 0, 1, 0)
  4879. torsoclone.C1 = CFrame.new(0, 0, 0, -1, -0, -0, 0, 0, 1, 0, 1, 0)
  4880. local mouse = player:GetMouse()
  4881. local rag1 = true
  4882. local rag2 = true
  4883. local firsttime = true
  4884. local firsttime2 = true
  4885. local firsttime3 = true
  4886. local firsttime4 = true
  4887. local firsttime5 = true
  4888. local childlock = false
  4889. local math1 = math.random(1,5)
  4890. math1 = math1+(math.random(0,9)/10)
  4891. local math2 = math.random(1,15)
  4892. math2 = math2+(math.random(0,9)/10)
  4893. local math3 = math.random(1,10)
  4894. math3 = math3+(math.random(0,9)/10)
  4895. local math4 = math.random(5,100)
  4896. math4 = math4+(math.random(0,9)/10)
  4897. local answer = (math4+(math1*math3))/(math1*math2)
  4898. answer = math.floor((answer*10)+0.5)
  4899. answer = answer/10
  4900. print([[To be fair, you have to have a very high IQ to understand Rick and Morty.
  4901. 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.
  4902. There's also Rick's nihilistic outlook, which is deftly woven into his characterisation -
  4903. his personal philosophy draws heavily from Narodnaya Volya literature, for instance.
  4904. The fans understand this stuff;
  4905. 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.
  4906. As a consequence people who dislike Rick and Morty truly ARE idiots-
  4907. 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.
  4908. 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.
  4909. What fools... how I pity them.
  4910. And yes by the way, I DO have a Rick and Morty tattoo.
  4911. And no, you cannot see it.
  4912. It's for the ladies' eyes only-
  4913. And even they have to demonstrate that they're within ]]..answer..[[ IQ points of my own (preferably lower) beforehand.]])
  4914. local rekt = {}
  4915.  
  4916. -- Objects
  4917.  
  4918. local MainGUI = Instance.new("ScreenGui")
  4919. local Customize = Instance.new("TextButton")
  4920. local Frame = Instance.new("Frame")
  4921. local TextLabel = Instance.new("TextLabel")
  4922. local Frame_2 = Instance.new("Frame")
  4923. local Frame_3 = Instance.new("Frame")
  4924. local ImageLabel = Instance.new("ImageLabel")
  4925. local R = Instance.new("TextBox")
  4926. local G = Instance.new("TextBox")
  4927. local B = Instance.new("TextBox")
  4928. local TextLabel_2 = Instance.new("TextLabel")
  4929. local TextLabel_3 = Instance.new("TextLabel")
  4930. local TextLabel_4 = Instance.new("TextLabel")
  4931. local Slider = Instance.new("Frame")
  4932. local Slidee = Instance.new("ImageButton")
  4933. local ChildLock = Instance.new("Frame")
  4934. local TextLabel_5 = Instance.new("TextLabel")
  4935. local mathz = Instance.new("TextLabel")
  4936. local TextBox = Instance.new("TextBox")
  4937. local Black = Instance.new('Frame')
  4938. local fps = Instance.new('TextLabel')
  4939.  
  4940. -- Properties
  4941.  
  4942. MainGUI.Name = "MainGUI"
  4943. MainGUI.ResetOnSpawn = false
  4944. pcall(function()
  4945. MainGUI.Parent = player.PlayerGui
  4946. end)
  4947. pcall(function()
  4948. MainGUI.Parent = game.CoreGui
  4949. game.CoreGui.RobloxGui.Backpack.Hotbar.AnchorPoint = Vector2.new(0.5,0.5)
  4950. game.CoreGui.RobloxGui.Backpack.Hotbar.Position = UDim2.new(0.5,0,0.85,0)
  4951. end)
  4952.  
  4953.  
  4954. Customize.Name = "Customize"
  4955. Customize.Parent = MainGUI
  4956. Customize.BackgroundColor3 = Color3.new(0, 0.776471, 0.282353)
  4957. Customize.BorderSizePixel = 0
  4958. Customize.Position = UDim2.new(0.15, 0, 0.9, 0)
  4959. Customize.Size = UDim2.new(0.699999988, 0, 0.100000001, 0)
  4960. Customize.Font = Enum.Font.SourceSans
  4961. Customize.FontSize = Enum.FontSize.Size14
  4962. Customize.Text = "Customize Knife V4 Cracked"
  4963. Customize.TextColor3 = Color3.new(1, 1, 1)
  4964. Customize.TextScaled = true
  4965. Customize.TextSize = 14
  4966. Customize.TextWrapped = true
  4967.  
  4968. Frame.Parent = Customize
  4969. Frame.BackgroundColor3 = Color3.new(0.164706, 0.164706, 0.164706)
  4970. Frame.BorderSizePixel = 0
  4971. Frame.Position = UDim2.new(0, 0, 1, 0)
  4972. Frame.Size = UDim2.new(1, 0, 6.5, 0)
  4973.  
  4974. TextLabel.Parent = Frame
  4975. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  4976. TextLabel.BackgroundTransparency = 1
  4977. TextLabel.Position = UDim2.new(0, 0, 0.100000001, 0)
  4978. TextLabel.Size = UDim2.new(0.300000012, 0, 0.200000003, 0)
  4979. TextLabel.Font = Enum.Font.SourceSansLight
  4980. TextLabel.FontSize = Enum.FontSize.Size14
  4981. TextLabel.Text = "Blood Color: [255, 255, 255]"
  4982. TextLabel.TextColor3 = Color3.new(1, 1, 1)
  4983. TextLabel.TextScaled = true
  4984. TextLabel.TextSize = 14
  4985. TextLabel.TextWrapped = true
  4986. TextLabel.TextXAlignment = Enum.TextXAlignment.Right
  4987.  
  4988. Frame_2.Parent = TextLabel
  4989. Frame_2.BackgroundColor3 = Color3.new(0.458824, 0, 0)
  4990. Frame_2.BorderSizePixel = 0
  4991. Frame_2.Position = UDim2.new(1.04999995, 0, 0, 0)
  4992. Frame_2.Size = UDim2.new(1, 0, 1, 0)
  4993. Frame_2.SizeConstraint = Enum.SizeConstraint.RelativeYY
  4994.  
  4995. Frame_3.Parent = Frame
  4996. Frame_3.BackgroundColor3 = Color3.new(1, 1, 1)
  4997. Frame_3.BackgroundTransparency = 1
  4998. Frame_3.BorderSizePixel = 0
  4999. Frame_3.Position = UDim2.new(0.0500000007, 0, 0.449999988, 0)
  5000. Frame_3.Size = UDim2.new(0.5, 0, 0.5, 0)
  5001. Frame_3.SizeConstraint = Enum.SizeConstraint.RelativeYY
  5002.  
  5003. ImageLabel.Parent = Frame_3
  5004. ImageLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  5005. ImageLabel.BackgroundTransparency = 1
  5006. ImageLabel.Size = UDim2.new(1, 0, 1, 0)
  5007. ImageLabel.Image = "rbxassetid://328298876"
  5008.  
  5009. R.Name = "R"
  5010. R.Parent = Frame_3
  5011. R.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
  5012. R.BorderSizePixel = 0
  5013. R.Position = UDim2.new(1.39999998, 0, 0, 0)
  5014. R.Size = UDim2.new(0.75, 0, 0.300000012, 0)
  5015. R.Font = Enum.Font.SourceSans
  5016. R.FontSize = Enum.FontSize.Size14
  5017. R.Text = "Input"
  5018. R.TextColor3 = Color3.new(1, 1, 1)
  5019. R.TextScaled = true
  5020. R.TextSize = 14
  5021. R.TextWrapped = true
  5022. R.TextXAlignment = Enum.TextXAlignment.Left
  5023.  
  5024. G.Name = "G"
  5025. G.Parent = Frame_3
  5026. G.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
  5027. G.BorderSizePixel = 0
  5028. G.Position = UDim2.new(1.39999998, 0, 0.349999994, 0)
  5029. G.Size = UDim2.new(0.75, 0, 0.300000012, 0)
  5030. G.Font = Enum.Font.SourceSans
  5031. G.FontSize = Enum.FontSize.Size14
  5032. G.Text = "Input"
  5033. G.TextColor3 = Color3.new(1, 1, 1)
  5034. G.TextScaled = true
  5035. G.TextSize = 14
  5036. G.TextWrapped = true
  5037. G.TextXAlignment = Enum.TextXAlignment.Left
  5038.  
  5039. B.Name = "B"
  5040. B.Parent = Frame_3
  5041. B.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
  5042. B.BorderSizePixel = 0
  5043. B.Position = UDim2.new(1.39999998, 0, 0.699999988, 0)
  5044. B.Size = UDim2.new(0.75, 0, 0.300000012, 0)
  5045. B.Font = Enum.Font.SourceSans
  5046. B.FontSize = Enum.FontSize.Size14
  5047. B.Text = "Input"
  5048. B.TextColor3 = Color3.new(1, 1, 1)
  5049. B.TextScaled = true
  5050. B.TextSize = 14
  5051. B.TextWrapped = true
  5052. B.TextXAlignment = Enum.TextXAlignment.Left
  5053.  
  5054. TextLabel_2.Parent = Frame_3
  5055. TextLabel_2.BackgroundColor3 = Color3.new(1, 1, 1)
  5056. TextLabel_2.BackgroundTransparency = 1
  5057. TextLabel_2.Position = UDim2.new(1.04999995, 0, 0, 0)
  5058. TextLabel_2.Size = UDim2.new(0.300000012, 0, 0.300000012, 0)
  5059. TextLabel_2.Font = Enum.Font.SourceSansLight
  5060. TextLabel_2.FontSize = Enum.FontSize.Size14
  5061. TextLabel_2.Text = "R"
  5062. TextLabel_2.TextColor3 = Color3.new(1, 1, 1)
  5063. TextLabel_2.TextScaled = true
  5064. TextLabel_2.TextSize = 14
  5065. TextLabel_2.TextWrapped = true
  5066.  
  5067. TextLabel_3.Parent = Frame_3
  5068. TextLabel_3.BackgroundColor3 = Color3.new(1, 1, 1)
  5069. TextLabel_3.BackgroundTransparency = 1
  5070. TextLabel_3.Position = UDim2.new(1.04999995, 0, 0.349999994, 0)
  5071. TextLabel_3.Size = UDim2.new(0.300000012, 0, 0.300000012, 0)
  5072. TextLabel_3.Font = Enum.Font.SourceSansLight
  5073. TextLabel_3.FontSize = Enum.FontSize.Size14
  5074. TextLabel_3.Text = "G"
  5075. TextLabel_3.TextColor3 = Color3.new(1, 1, 1)
  5076. TextLabel_3.TextScaled = true
  5077. TextLabel_3.TextSize = 14
  5078. TextLabel_3.TextWrapped = true
  5079.  
  5080. TextLabel_4.Parent = Frame_3
  5081. TextLabel_4.BackgroundColor3 = Color3.new(1, 1, 1)
  5082. TextLabel_4.BackgroundTransparency = 1
  5083. TextLabel_4.Position = UDim2.new(1.04999995, 0, 0.699999988, 0)
  5084. TextLabel_4.Size = UDim2.new(0.300000012, 0, 0.300000012, 0)
  5085. TextLabel_4.Font = Enum.Font.SourceSansLight
  5086. TextLabel_4.FontSize = Enum.FontSize.Size14
  5087. TextLabel_4.Text = "B"
  5088. TextLabel_4.TextColor3 = Color3.new(1, 1, 1)
  5089. TextLabel_4.TextScaled = true
  5090. TextLabel_4.TextSize = 14
  5091. TextLabel_4.TextWrapped = true
  5092.  
  5093. Slider.Name = "Slider"
  5094. Slider.Parent = Frame
  5095. Slider.BackgroundColor3 = Color3.new(0.121569, 0.121569, 0.121569)
  5096. Slider.Position = UDim2.new(0.0500000007, 0, 0.375, 0)
  5097. Slider.Size = UDim2.new(0.230000004, 0, 0.00999999978, 0)
  5098.  
  5099. Slidee.Name = "Slidee"
  5100. Slidee.Parent = Slider
  5101. Slidee.AnchorPoint = Vector2.new(0.5, 0.5)
  5102. Slidee.BackgroundColor3 = Color3.new(0.0941177, 0.0941177, 0.0941177)
  5103. Slidee.BorderSizePixel = 0
  5104. Slidee.Size = UDim2.new(0.0299999993, 0, 7, 0)
  5105. Slidee.ImageTransparency = 1
  5106.  
  5107. ChildLock.Name = "ChildLock"
  5108. ChildLock.Parent = Frame
  5109. ChildLock.Active = true
  5110. ChildLock.BackgroundColor3 = Color3.new(0, 0, 0)
  5111. ChildLock.BackgroundTransparency = 0.60000002384186
  5112. ChildLock.BorderSizePixel = 0
  5113. ChildLock.Position = UDim2.new(0.600000024, 0, 0, 0)
  5114. ChildLock.Size = UDim2.new(0.400000006, 0, 1, 0)
  5115. ChildLock.ZIndex = 2
  5116.  
  5117. TextLabel_5.Parent = ChildLock
  5118. TextLabel_5.BackgroundColor3 = Color3.new(1, 1, 1)
  5119. TextLabel_5.BackgroundTransparency = 1
  5120. TextLabel_5.BorderSizePixel = 0
  5121. TextLabel_5.Position = UDim2.new(0.125, 0, 0.150000006, 0)
  5122. TextLabel_5.Size = UDim2.new(0.75, 0, 0.200000003, 0)
  5123. TextLabel_5.ZIndex = 3
  5124. TextLabel_5.Font = Enum.Font.SourceSans
  5125. TextLabel_5.FontSize = Enum.FontSize.Size14
  5126. TextLabel_5.Text = "do this math to disable child lock"
  5127. TextLabel_5.TextColor3 = Color3.new(1, 1, 1)
  5128. TextLabel_5.TextScaled = true
  5129. TextLabel_5.TextSize = 14
  5130. TextLabel_5.TextWrapped = true
  5131.  
  5132. mathz.Name = "mathz"
  5133. mathz.Parent = ChildLock
  5134. mathz.BackgroundColor3 = Color3.new(1, 1, 1)
  5135. mathz.BackgroundTransparency = 1
  5136. mathz.Position = UDim2.new(0.125, 0, 0.449999988, 0)
  5137. mathz.Size = UDim2.new(0.75, 0, 0.200000003, 0)
  5138. mathz.ZIndex = 3
  5139. mathz.Font = Enum.Font.SourceSans
  5140. mathz.FontSize = Enum.FontSize.Size14
  5141. mathz.Text = math1.."("..math2.."r - "..math3..") = "..math4
  5142. mathz.TextColor3 = Color3.new(1, 1, 1)
  5143. mathz.TextScaled = true
  5144. mathz.TextSize = 14
  5145. mathz.TextWrapped = true
  5146.  
  5147. fps.Name = "fps"
  5148. fps.Parent = Frame
  5149. fps.BackgroundColor3 = Color3.new(1, 1, 1)
  5150. fps.BackgroundTransparency = 1
  5151. fps.Size = UDim2.new(0.75, 0, 0.05, 0)
  5152. fps.ZIndex = 3
  5153. fps.Font = Enum.Font.SourceSansLight
  5154. fps.FontSize = Enum.FontSize.Size14
  5155. fps.Text = "FPS: N/A"
  5156. fps.TextColor3 = Color3.new(1, 1, 1)
  5157. fps.TextScaled = true
  5158. fps.TextSize = 14
  5159. fps.TextWrapped = true
  5160. fps.TextXAlignment = Enum.TextXAlignment.Left
  5161.  
  5162. TextBox.Parent = ChildLock
  5163. TextBox.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
  5164. TextBox.BorderSizePixel = 0
  5165. TextBox.Position = UDim2.new(0.200000003, 0, 0.699999988, 0)
  5166. TextBox.Size = UDim2.new(0.600000024, 0, 0.200000003, 0)
  5167. TextBox.ZIndex = 3
  5168. TextBox.Font = Enum.Font.SourceSans
  5169. TextBox.FontSize = Enum.FontSize.Size14
  5170. TextBox.Text = "Answer (rounded to nearest tenth)"
  5171. TextBox.TextColor3 = Color3.new(1, 1, 1)
  5172. TextBox.TextScaled = true
  5173. TextBox.TextSize = 14
  5174. TextBox.TextWrapped = true
  5175. TextBox.TextXAlignment = Enum.TextXAlignment.Left
  5176.  
  5177. Black.Size = UDim2.new(1,0,1,0)
  5178. Black.BackgroundTransparency = 1
  5179. Black.BorderSizePixel = 0
  5180. Black.BackgroundColor3 = Color3.new(0,0,0)
  5181. Black.Parent = Frame_3
  5182.  
  5183. TextBox.FocusLost:connect(function()
  5184. 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
  5185. ChildLock:Destroy()
  5186. childlock = false
  5187. notify("Child lock disabled, press B to enable dildo mode.",true)
  5188. end
  5189. end)
  5190.  
  5191. local mousedown = false
  5192. mouse.Button1Down:connect(function()
  5193. mousedown = true
  5194. end)
  5195. mouse.Button1Up:connect(function()
  5196. mousedown = false
  5197. slidee = false
  5198. end)
  5199.  
  5200. Slidee.MouseButton1Down:connect(function()
  5201. slidee = true
  5202. end)
  5203. Slidee.MouseButton1Up:connect(function()
  5204. slidee = false
  5205. end)
  5206.  
  5207. mouse.Move:connect(function()
  5208. if mousedown then
  5209. 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
  5210. local newX = ImageLabel.AbsoluteSize.X-(mouse.X-ImageLabel.AbsolutePosition.X)
  5211. local newY = ImageLabel.AbsoluteSize.Y-(mouse.Y-ImageLabel.AbsolutePosition.Y)
  5212. local newcolor = Color3.fromHSV(newX/ImageLabel.AbsoluteSize.X,newY/ImageLabel.AbsoluteSize.Y,Black.Transparency)
  5213. Frame_2.BackgroundColor3 = newcolor
  5214. TextLabel.Text = "Blood Color: ["..math.floor(255*newcolor.r)..", "..math.floor(255*newcolor.g)..", "..math.floor(255*newcolor.b).."]"
  5215. end
  5216. end
  5217. if slidee then
  5218. local ree = mouse.X
  5219. if ree < Slider.AbsolutePosition.X then
  5220. ree = Slider.AbsolutePosition.X
  5221. elseif ree > Slider.AbsolutePosition.X+Slider.AbsoluteSize.X then
  5222. ree = Slider.AbsolutePosition.X+Slider.AbsoluteSize.X
  5223. end
  5224. Slidee.Position = UDim2.new(0,ree-Slider.AbsolutePosition.X,0,0)
  5225. Black.Transparency = 1-(Slidee.Position.X.Offset/Slider.AbsoluteSize.X)
  5226. end
  5227. end)
  5228.  
  5229. R.FocusLost:connect(function()
  5230. if R.Text ~= "Input" then
  5231. if tonumber(R.Text) then
  5232. if tonumber(R.Text) > 255 then
  5233. R.Text = "255"
  5234. end
  5235. local newcolor = Color3.new(tonumber(R.Text/255),Frame_2.BackgroundColor3.g,Frame_2.BackgroundColor3.b)
  5236. Frame_2.BackgroundColor3 = newcolor
  5237. TextLabel.Text = "Blood Color: ["..math.floor(255*newcolor.r)..", "..math.floor(255*newcolor.g)..", "..math.floor(255*newcolor.b).."]"
  5238. R.Text = "Input"
  5239. end
  5240. end
  5241. end)
  5242. G.FocusLost:connect(function()
  5243. if G.Text ~= "Input" then
  5244. if tonumber(G.Text) then
  5245. if tonumber(G.Text) > 255 then
  5246. G.Text = "255"
  5247. end
  5248. local newcolor = Color3.new(Frame_2.BackgroundColor3.r,tonumber(G.Text/255),Frame_2.BackgroundColor3.b)
  5249. Frame_2.BackgroundColor3 = newcolor
  5250. TextLabel.Text = "Blood Color: ["..math.floor(255*newcolor.r)..", "..math.floor(255*newcolor.g)..", "..math.floor(255*newcolor.b).."]"
  5251. G.Text = "Input"
  5252. end
  5253. end
  5254. end)
  5255. B.FocusLost:connect(function()
  5256. if B.Text ~= "Input" then
  5257. if tonumber(B.Text) then
  5258. if tonumber(B.Text) > 255 then
  5259. B.Text = "255"
  5260. end
  5261. local newcolor = Color3.new(Frame_2.BackgroundColor3.r,Frame_2.BackgroundColor3.g,tonumber(B.Text/255))
  5262. Frame_2.BackgroundColor3 = newcolor
  5263. TextLabel.Text = "Blood Color: ["..math.floor(255*newcolor.r)..", "..math.floor(255*newcolor.g)..", "..math.floor(255*newcolor.b).."]"
  5264. B.Text = "Input"
  5265. end
  5266. end
  5267. end)
  5268.  
  5269. local open = false
  5270. local opening = false
  5271. Customize.MouseButton1Click:connect(function()
  5272. if opening == false then
  5273. if open == false then
  5274. open = true
  5275. opening = true
  5276. Customize:TweenPosition(UDim2.new(0.15, 0, 0.1, 0),Enum.EasingDirection.Out,Enum.EasingStyle.Quint,1)
  5277. wait(1)
  5278. opening = false
  5279. else
  5280. open = false
  5281. opening = true
  5282. Customize:TweenPosition(UDim2.new(0.15, 0, 0.9, 0),Enum.EasingDirection.Out,Enum.EasingStyle.Quint,1)
  5283. wait(1)
  5284. opening = false
  5285. end
  5286. end
  5287. end)
  5288.  
  5289. Frame_2.BackgroundColor3 = Color3.fromRGB(117,0,0)
  5290.  
  5291. function removewelds(part)
  5292. for i,v in pairs(part:GetChildren()) do
  5293. if v:IsA('Weld') then v:Destroy() end
  5294. end
  5295. end
  5296.  
  5297. function notify(msg,remove)
  5298. local coru= coroutine.wrap(function()
  5299. for i,v in pairs(MainGUI:GetChildren()) do
  5300. if v:IsA('TextLabel') then v:Destroy() end
  5301. end
  5302. if msg then
  5303. local TextLabel = Instance.new("TextLabel")
  5304. local Frame = Instance.new("Frame")
  5305.  
  5306. -- Properties
  5307.  
  5308. TextLabel.Parent = MainGUI
  5309. TextLabel.BackgroundColor3 = Color3.new(0.227451, 0.227451, 0.227451)
  5310. TextLabel.BorderSizePixel = 0
  5311. TextLabel.Position = UDim2.new(0.25, 0, 0.05, -10)
  5312. TextLabel.Size = UDim2.new(0.5, 0, 0.1, 0)
  5313. TextLabel.Font = Enum.Font.SourceSans
  5314. TextLabel.FontSize = Enum.FontSize.Size60
  5315. TextLabel.TextColor3 = Color3.new(1, 1, 1)
  5316. TextLabel.TextSize = 50
  5317. TextLabel.Transparency = 1
  5318. TextLabel.TextScaled = true
  5319. TextLabel.TextYAlignment = Enum.TextYAlignment.Top
  5320. TextLabel.Text = ""
  5321. TextLabel.TextXAlignment = Enum.TextXAlignment.Left
  5322.  
  5323. Frame.Parent = TextLabel
  5324. Frame.BackgroundColor3 = Color3.new(0.192157, 0.192157, 0.192157)
  5325. Frame.BorderSizePixel = 0
  5326. Frame.Transparency = 1
  5327. Frame.Position = UDim2.new(0, 0, 1,0)
  5328. Frame.Size = UDim2.new(1, 0, 0, 5)
  5329. for i=1,10 do
  5330. TextLabel.Transparency = TextLabel.Transparency-0.1
  5331. TextLabel.Position = TextLabel.Position+UDim2.new(0,0,0,1)
  5332. Frame.Transparency = Frame.Transparency-0.1
  5333. wait()
  5334. end
  5335. for i=1,#msg do
  5336. TextLabel.Text = string.sub(msg,1,i)
  5337. wait()
  5338. end
  5339. wait(1)
  5340. if remove ~= true then
  5341. for i=1,10 do
  5342. TextLabel.Transparency = TextLabel.Transparency+0.1
  5343. TextLabel.Position = TextLabel.Position-UDim2.new(0,0,0,1)
  5344. Frame.Transparency = Frame.Transparency+0.1
  5345. wait()
  5346. end
  5347. TextLabel:Destroy()
  5348. end
  5349. end
  5350. end)
  5351. coru()
  5352. end
  5353. if workspace.FilteringEnabled == false then
  5354. if workspace:PGSIsEnabled() then
  5355. notify('Press Z to equip. Created by mustardfoot and Tollonis.',true)
  5356. else
  5357. 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)
  5358. end
  5359. else
  5360. notify('LOL this game has filtering enabled so it literally wont work here')
  5361. end
  5362.  
  5363. local handProperties = {
  5364. {"LimitsEnabled", true};
  5365. {"UpperAngle",0};
  5366. {"LowerAngle",0};
  5367. }
  5368. local shinProperties = {
  5369. {"LimitsEnabled", true};
  5370. {"UpperAngle", 0};
  5371. {"LowerAngle", -75};
  5372. }
  5373. local footProperties = {
  5374. {"LimitsEnabled", true};
  5375. {"UpperAngle", 15};
  5376. {"LowerAngle", -45};
  5377. }
  5378.  
  5379. function bleed(frick,OwO)
  5380. while frick.Parent ~= nil and frick.Parent.Parent ~= nil do
  5381. local reeee = coroutine.wrap(function()
  5382. local thing = Instance.new('Part',workspace)
  5383. thing.Size = Vector3.new(0.2,0.2,0.2)
  5384. thing.CFrame = frick.CFrame
  5385. thing.Transparency = 1
  5386. thing.BrickColor = BrickColor.new(Frame_2.BackgroundColor3)
  5387. thing.Material = Enum.Material.SmoothPlastic
  5388. thing.Name = "Blood"
  5389. thing.CanCollide =false
  5390. thing:BreakJoints()
  5391. local rawrxd = Instance.new('BodyForce',thing)
  5392. rawrxd.Force = frick.CFrame.upVector*(math.random()*2)+Vector3.new(math.random(-5, 5)/10,1.5,0)
  5393. local coru = coroutine.wrap(function()
  5394. wait(0.01)
  5395. rawrxd:Destroy()
  5396. end)
  5397. coru()
  5398. local ree = Instance.new('ParticleEmitter',thing)
  5399. if OwO ~= true then
  5400. ree.Color = ColorSequence.new({ColorSequenceKeypoint.new(0,Frame_2.BackgroundColor3),ColorSequenceKeypoint.new(1,Frame_2.BackgroundColor3)})
  5401. else
  5402. ree.Color = ColorSequence.new({ColorSequenceKeypoint.new(0,Color3.new(1,1,1)),ColorSequenceKeypoint.new(1,Color3.new(1,1,1))})
  5403. end
  5404. ree.Size = NumberSequence.new({NumberSequenceKeypoint.new(0,0.1),NumberSequenceKeypoint.new(1,0.1)})
  5405. ree.Texture = 'rbxassetid://867743272'
  5406. ree.Lifetime = NumberRange.new(0.4)
  5407. ree.Rate = 50
  5408. ree.LockedToPart = true
  5409. ree.Speed = NumberRange.new(0, 2)
  5410.  
  5411. thing.Touched:connect(function(tou)
  5412. 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
  5413. local pos = Vector3.new(thing.Position.X,(tou.Position.Y+(tou.Size.Y/2))+0.02,thing.Position.Z)
  5414. local Point1 = pos-Vector3.new(0.01,0.01,0.01)
  5415. local Point2 = pos+Vector3.new(0.01,0.01,0.01)
  5416. local Region = Region3.new(Point1,Point2)
  5417. for _,Part in pairs(game.Workspace:FindPartsInRegion3(Region,nil,math.huge)) do
  5418. if Part.Name == "BloodPuddle" then
  5419. tou = Part
  5420. end
  5421. end
  5422. thing:Destroy()
  5423. if tou.Name == "BloodPuddle" then
  5424. if tou.Size.X < 1 then
  5425. pcall(function()
  5426. tou.Sound:Play()
  5427. end)
  5428. end
  5429. local reee = tou.CFrame
  5430. if tou.Transparency > -0.2 then
  5431. tou.Transparency = tou.Transparency -0.1
  5432. end
  5433. if tou.Size.X < 5 then
  5434. tou.Size = tou.Size+Vector3.new(0.1,0,0.1)
  5435. tou.CFrame = reee
  5436. end
  5437. elseif tou.CanCollide == true then
  5438. local bloodlol = Instance.new('Part',workspace)
  5439. local sound = Instance.new('Sound',bloodlol)
  5440. sound.SoundId = 'rbxassetid://685857471'
  5441. sound.Volume = 0.025
  5442. sound:Play()
  5443. bloodlol.Size=Vector3.new(1,0.2,1)
  5444. bloodlol.Name = "BloodPuddle"
  5445. bloodlol.Anchored = true
  5446. bloodlol.CanCollide = false
  5447. bloodlol.Material = Enum.Material.SmoothPlastic
  5448. if OwO ~= true then
  5449. bloodlol.Color = Frame_2.BackgroundColor3
  5450. else
  5451. bloodlol.Color = Color3.new(1,1,1)
  5452. end
  5453. local cyl = Instance.new('CylinderMesh',bloodlol)
  5454. cyl.Scale = Vector3.new(1,0.1,1)
  5455. bloodlol.CFrame = CFrame.new(pos)
  5456. local coru=coroutine.wrap(function()
  5457. while bloodlol.Parent ~= nil do
  5458. if bloodlol.Transparency < 1 then
  5459. bloodlol.Transparency = bloodlol.Transparency+0.05
  5460. else
  5461. bloodlol:Destroy()
  5462. end
  5463. wait(0.1)
  5464. end
  5465. end)
  5466. coru()
  5467. end
  5468. end
  5469. end)
  5470. local coru = coroutine.wrap(function()
  5471. wait(1)
  5472. thing:Destroy()
  5473. end)
  5474. coru()
  5475. end)
  5476. reeee()
  5477. wait()
  5478. end
  5479. end
  5480.  
  5481. function stun(char)
  5482. local found = false
  5483. pcall(function()
  5484. char:FindFirstChildOfClass('Humanoid'):ChangeState(Enum.HumanoidStateType.Physics)
  5485. end)
  5486. for i,v in pairs(rekt) do
  5487. if v == char then
  5488. found = true
  5489. end
  5490. end
  5491. if found == false then
  5492. table.insert(rekt,char)
  5493. end
  5494. end
  5495. function unstun(char)
  5496. for i,v in pairs(rekt) do
  5497. if v == char then
  5498. if v:FindFirstChildOfClass('Humanoid') and v:FindFirstChildOfClass('Humanoid').Health>0 then
  5499. v:FindFirstChildOfClass('Humanoid'):ChangeState(Enum.HumanoidStateType.Running)
  5500. v:FindFirstChildOfClass('Humanoid').PlatformStand = false
  5501. v:FindFirstChildOfClass('Humanoid').Sit = false
  5502. v:FindFirstChildOfClass('Humanoid').Jump = true
  5503. v:FindFirstChildOfClass('Humanoid').JumpPower = 50
  5504. v:FindFirstChildOfClass('Humanoid').WalkSpeed = 16
  5505. v:FindFirstChildOfClass('Humanoid').Name = "Humanoid"
  5506. end
  5507. table.remove(rekt,i)
  5508. end
  5509. end
  5510. end
  5511.  
  5512. function recurse(root,callback,i)
  5513. i= i or 0
  5514. for _,v in pairs(root:GetChildren()) do
  5515. i = i + 1
  5516. callback(i,v)
  5517.  
  5518. if #v:GetChildren() > 0 then
  5519. i = recurse(v,callback,i)
  5520. end
  5521. end
  5522.  
  5523. return i
  5524. end
  5525.  
  5526. function ragdollJoint(character, part0, part1, attachmentName, className, properties)
  5527. if character:FindFirstChild("RagdollConstraint"..part1.Name) == nil then
  5528. if character:FindFirstChild('HumanoidRootPart')then
  5529. character.HumanoidRootPart.CanCollide = false
  5530. end
  5531. for i,v in pairs(character:GetChildren()) do
  5532. 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
  5533. v.Size = Vector3.new(1,1,1)
  5534. end
  5535. end
  5536. recurse(character, function(_,v)
  5537. if v:IsA("Attachment") and v.Parent.Name ~= "ayybleed" then
  5538. v.Axis = Vector3.new(0, 1, 0)
  5539. v.SecondaryAxis = Vector3.new(0, 0, 1)
  5540. v.Rotation = Vector3.new(0, 0, 0)
  5541. end
  5542. end)
  5543. if part1:FindFirstChildOfClass('Motor6D') then
  5544. part1:FindFirstChildOfClass('Motor6D'):Destroy()
  5545. end
  5546. if attachmentName ~= "NeckAttachment" then
  5547. attachmentName = attachmentName.."RigAttachment"
  5548. end
  5549. local constraint = Instance.new(className.."Constraint")
  5550. constraint.Attachment0 = part0:FindFirstChild(attachmentName)
  5551. constraint.Attachment1 = part1:FindFirstChild(attachmentName)
  5552. constraint.Name = "RagdollConstraint"..part1.Name
  5553. if character:FindFirstChildOfClass('Humanoid').Health > 0 then
  5554. local collidepart = Instance.new('Part',part1)
  5555. collidepart.Size = part1.Size/2
  5556. if string.find(string.lower(part1.Name),"upper") then
  5557. if string.find(string.lower(part1.Name),"leg") then
  5558. collidepart.Size = part1.Size/3
  5559. else
  5560. collidepart.Size = part1.Size/2.5
  5561. end
  5562. end
  5563. collidepart.CanCollide = true
  5564. collidepart.Name = "Collision"
  5565. collidepart.Anchored = false
  5566. collidepart.Transparency = 1
  5567. collidepart.CFrame = part1.CFrame
  5568. collidepart:BreakJoints()
  5569. local attachment0 = Instance.new('Attachment',part1)
  5570. local attachment1 = Instance.new('Attachment',collidepart)
  5571. if attachment0 and attachment1 then
  5572. local constraint = Instance.new("HingeConstraint")
  5573. constraint.Attachment0 = attachment0
  5574. constraint.Attachment1 = attachment1
  5575. constraint.LimitsEnabled = true
  5576. constraint.UpperAngle = 0
  5577. constraint.LowerAngle = 0
  5578. constraint.Parent = character
  5579. end
  5580. if string.find(string.lower(part1.Name),"upper") then
  5581. if string.find(string.lower(part1.Name),"leg") then
  5582. attachment0.Position = Vector3.new(0,0.01,0)
  5583. else
  5584. attachment0.Position = Vector3.new(0,0.25,0)
  5585. end
  5586. else
  5587. attachment0.Position = Vector3.new(0,-0.1,0)
  5588. end
  5589. end
  5590. for _,propertyData in next,properties or {} do
  5591. constraint[propertyData[1]] = propertyData[2]
  5592. end
  5593.  
  5594. constraint.Parent = character
  5595. end
  5596. end
  5597.  
  5598. function R6ragdollJoint(character,limbname,attached,heded)
  5599. pcall(function()
  5600. 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
  5601. local torsoatt = Instance.new('Attachment',character.Torso)
  5602. torsoatt.Name = limbname.."RagdollConstraint"
  5603. torsoatt.Position = Vector3.new(1.45,0.768,-0.009)
  5604. torsoatt.Axis = Vector3.new(1,0,0)
  5605. torsoatt.SecondaryAxis = Vector3.new(0,1,0)
  5606. local limbatt = Instance.new("Attachment",character[limbname])
  5607. limbatt.Position = Vector3.new(-0.086, 0.755, -0.007)
  5608. limbatt.Name = limbname.."RagdollConstraint"
  5609. limbatt.Axis = Vector3.new(1,0,0)
  5610. limbatt.SecondaryAxis = Vector3.new(0,1,0)
  5611. local ballc = Instance.new('BallSocketConstraint',character)
  5612. ballc.Name = "RightArmRagdollRig"
  5613. ballc.Attachment0 = torsoatt
  5614. ballc.Attachment1 = limbatt
  5615. local part1 = character[limbname]
  5616. if character:FindFirstChildOfClass('Humanoid').Health > 0 then
  5617. local collidepart = Instance.new('Part',part1)
  5618. collidepart.Size = part1.Size/1.5
  5619. collidepart.CanCollide = true
  5620. collidepart.Name = "Collision"
  5621. collidepart.Anchored = false
  5622. collidepart.Transparency = 1
  5623. collidepart.CFrame = part1.CFrame
  5624. collidepart:BreakJoints()
  5625. local attachment0 = Instance.new('Attachment',part1)
  5626. local attachment1 = Instance.new('Attachment',collidepart)
  5627. if attachment0 and attachment1 then
  5628. local constraint = Instance.new("HingeConstraint")
  5629. constraint.Attachment0 = attachment0
  5630. constraint.Attachment1 = attachment1
  5631. constraint.LimitsEnabled = true
  5632. constraint.UpperAngle = 0
  5633. constraint.LowerAngle = 0
  5634. constraint.Parent = character
  5635. end
  5636. end
  5637. if character.Torso:FindFirstChild('Right Shoulder') then
  5638. character.Torso:FindFirstChild('Right Shoulder'):Destroy()
  5639. end
  5640. 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
  5641. local torsoatt = Instance.new('Attachment',character.Torso)
  5642. torsoatt.Name = limbname.."RagdollConstraint"
  5643. torsoatt.Position = Vector3.new(-1.45,0.768,-0.009)
  5644. torsoatt.Axis = Vector3.new(1,0,0)
  5645. torsoatt.SecondaryAxis = Vector3.new(0,1,0)
  5646. local limbatt = Instance.new("Attachment",character[limbname])
  5647. limbatt.Position = Vector3.new(-0.086, 0.755, -0.007)
  5648. limbatt.Name = limbname.."RagdollConstraint"
  5649. limbatt.Axis = Vector3.new(1,0,0)
  5650. limbatt.SecondaryAxis = Vector3.new(0,1,0)
  5651. local ballc = Instance.new('BallSocketConstraint',character)
  5652. ballc.Name = "LeftArmRagdollRig"
  5653. ballc.Attachment0 = torsoatt
  5654. ballc.Attachment1 = limbatt
  5655. local part1 = character[limbname]
  5656. if character:FindFirstChildOfClass('Humanoid').Health > 0 then
  5657. local collidepart = Instance.new('Part',part1)
  5658. collidepart.Size = part1.Size/1.5
  5659. collidepart.CanCollide = true
  5660. collidepart.Name = "Collision"
  5661. collidepart.Anchored = false
  5662. collidepart.Transparency = 1
  5663. collidepart.CFrame = part1.CFrame
  5664. collidepart:BreakJoints()
  5665. local attachment0 = Instance.new('Attachment',part1)
  5666. local attachment1 = Instance.new('Attachment',collidepart)
  5667. if attachment0 and attachment1 then
  5668. local constraint = Instance.new("HingeConstraint")
  5669. constraint.Attachment0 = attachment0
  5670. constraint.Attachment1 = attachment1
  5671. constraint.LimitsEnabled = true
  5672. constraint.UpperAngle = 0
  5673. constraint.LowerAngle = 0
  5674. constraint.Parent = character
  5675. end
  5676. end
  5677. if character.Torso:FindFirstChild('Left Shoulder') then
  5678. character.Torso:FindFirstChild('Left Shoulder'):Destroy()
  5679. end
  5680. 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
  5681. stun(character)
  5682. local torsoatt = Instance.new('Attachment',character.Torso)
  5683. torsoatt.Name = limbname.."RagdollConstraint"
  5684. torsoatt.Position = Vector3.new(0.45, -1.242, -0.009)
  5685. torsoatt.Axis = Vector3.new(1,0,0)
  5686. torsoatt.SecondaryAxis = Vector3.new(0,1,0)
  5687. local limbatt = Instance.new("Attachment",character[limbname])
  5688. limbatt.Position = Vector3.new(-0.086, 0.755, -0.007)
  5689. limbatt.Name = limbname.."RagdollConstraint"
  5690. limbatt.Axis = Vector3.new(1,0,0)
  5691. limbatt.SecondaryAxis = Vector3.new(0,1,0)
  5692. local ballc = Instance.new('BallSocketConstraint',character)
  5693. ballc.Name = "RightLegRagdollRig"
  5694. ballc.Attachment0 = torsoatt
  5695. ballc.Attachment1 = limbatt
  5696. local part1 = character[limbname]
  5697. if character:FindFirstChildOfClass('Humanoid').Health > 0 then
  5698. local collidepart = Instance.new('Part',part1)
  5699. collidepart.Size = part1.Size/1.5
  5700. collidepart.CanCollide = true
  5701. collidepart.Name = "Collision"
  5702. collidepart.Anchored = false
  5703. collidepart.Transparency = 1
  5704. collidepart.CFrame = part1.CFrame
  5705. collidepart:BreakJoints()
  5706. local attachment0 = Instance.new('Attachment',part1)
  5707. local attachment1 = Instance.new('Attachment',collidepart)
  5708. if attachment0 and attachment1 then
  5709. local constraint = Instance.new("HingeConstraint")
  5710. constraint.Attachment0 = attachment0
  5711. constraint.Attachment1 = attachment1
  5712. constraint.LimitsEnabled = true
  5713. constraint.UpperAngle = 0
  5714. constraint.LowerAngle = 0
  5715. constraint.Parent = character
  5716. end
  5717. end
  5718. if character.Torso:FindFirstChild('Right Hip') then
  5719. character.Torso:FindFirstChild('Right Hip'):Destroy()
  5720. end
  5721. 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
  5722. stun(character)
  5723. local torsoatt = Instance.new('Attachment',character.Torso)
  5724. torsoatt.Name = limbname.."RagdollConstraint"
  5725. torsoatt.Position = Vector3.new(-0.45, -1.242, -0.009)
  5726. torsoatt.Axis = Vector3.new(1,0,0)
  5727. torsoatt.SecondaryAxis = Vector3.new(0,1,0)
  5728. local limbatt = Instance.new("Attachment",character[limbname])
  5729. limbatt.Position = Vector3.new(-0.086, 0.755, -0.007)
  5730. limbatt.Name = limbname.."RagdollConstraint"
  5731. limbatt.Axis = Vector3.new(1,0,0)
  5732. limbatt.SecondaryAxis = Vector3.new(0,1,0)
  5733. local ballc = Instance.new('BallSocketConstraint',character)
  5734. ballc.Name = "LeftLegRagdollRig"
  5735. ballc.Attachment0 = torsoatt
  5736. ballc.Attachment1 = limbatt
  5737. local part1 = character[limbname]
  5738. if character:FindFirstChildOfClass('Humanoid').Health > 0 then
  5739. local collidepart = Instance.new('Part',part1)
  5740. collidepart.Size = part1.Size/1.5
  5741. collidepart.CanCollide = true
  5742. collidepart.Name = "Collision"
  5743. collidepart.Anchored = false
  5744. collidepart.Transparency = 1
  5745. collidepart.CFrame = part1.CFrame
  5746. collidepart:BreakJoints()
  5747. local attachment0 = Instance.new('Attachment',part1)
  5748. local attachment1 = Instance.new('Attachment',collidepart)
  5749. if attachment0 and attachment1 then
  5750. local constraint = Instance.new("HingeConstraint")
  5751. constraint.Attachment0 = attachment0
  5752. constraint.Attachment1 = attachment1
  5753. constraint.LimitsEnabled = true
  5754. constraint.UpperAngle = 0
  5755. constraint.LowerAngle = 0
  5756. constraint.Parent = character
  5757. end
  5758. end
  5759. if character.Torso:FindFirstChild('Left Hip') then
  5760. character.Torso:FindFirstChild('Left Hip'):Destroy()
  5761. end
  5762. elseif limbname == "Head" or limbname == "Torso" and character:FindFirstChild("Head") and character:FindFirstChild("Torso") and character.Head:FindFirstChild("Neck") == nil then
  5763. if character:FindFirstChildOfClass('Humanoid') then
  5764. character:FindFirstChildOfClass('Humanoid').Health = 0
  5765. end
  5766. while character:FindFirstChildOfClass('Humanoid').Health > 0 do wait() end
  5767. if character:FindFirstChild('HumanoidRootPart') then
  5768. character.HumanoidRootPart:Destroy()
  5769. end
  5770. game:GetService('Debris'):AddItem(character,10)
  5771. for _,child in next,character:GetChildren() do
  5772. if child:IsA("Accoutrement") then
  5773. for _,part in next,child:GetChildren() do
  5774. if part:IsA("BasePart") then
  5775. for _,c in pairs(part:GetChildren()) do
  5776. if c:IsA('Weld') then c:Destroy() end
  5777. end
  5778. local attachment1 = part:FindFirstChildOfClass("Attachment")
  5779. local attachment0 = getAttachment0(character,attachment1.Name)
  5780. if attachment0 and attachment1 then
  5781. local constraint = Instance.new("HingeConstraint")
  5782. constraint.Attachment0 = attachment0
  5783. constraint.Attachment1 = attachment1
  5784. constraint.LimitsEnabled = true
  5785. constraint.UpperAngle = 0
  5786. constraint.LowerAngle = 0
  5787. constraint.Parent = character
  5788. end
  5789. end
  5790. end
  5791. end
  5792. end
  5793. for i,v in pairs(character:GetChildren()) do
  5794. if v:IsA('MeshPart') or v:IsA('BasePart') then
  5795. for _,c in pairs(v:GetChildren()) do
  5796. if c.Name == "Collision" then c:Destroy() end
  5797. end
  5798. end
  5799. end
  5800. if character.Torso:FindFirstChild('Neck') then
  5801. character.Torso.Neck:Destroy()
  5802. end
  5803. if character:FindFirstChild('Torso') then
  5804. local collidepart = Instance.new('Part',character.Torso)
  5805. collidepart.Size = character.Torso.Size/1.5
  5806. collidepart.CanCollide = true
  5807. collidepart.Name = "Collision"
  5808. collidepart.Anchored = false
  5809. collidepart.Transparency = 1
  5810. collidepart.CFrame = character.Torso.CFrame
  5811. collidepart:BreakJoints()
  5812. local attachment0 = Instance.new('Attachment',character.Torso)
  5813. local attachment1 = Instance.new('Attachment',collidepart)
  5814. if attachment0 and attachment1 then
  5815. local constraint = Instance.new("HingeConstraint")
  5816. constraint.Attachment0 = attachment0
  5817. constraint.Attachment1 = attachment1
  5818. constraint.LimitsEnabled = true
  5819. constraint.UpperAngle = 0
  5820. constraint.LowerAngle = 0
  5821. constraint.Parent = character
  5822. end
  5823. end
  5824. if character:FindFirstChild('Torso') and character:FindFirstChild('Head') then
  5825. if character.Torso:FindFirstChild('NeckAttachment') == nil then
  5826. local neck = Instance.new('Attachment',character.Torso)
  5827. neck.Name = "NeckAttachment"
  5828. neck.Position = Vector3.new(0, 1, 0)
  5829. end
  5830. ragdollJoint(character,character.Torso, character.Head, "NeckAttachment", "Hinge", {
  5831. {"LimitsEnabled",true};
  5832. {"UpperAngle",50};
  5833. {"LowerAngle",-50};
  5834. })
  5835. end
  5836. if attached ~= false then
  5837. ragdollpart(character, "Right Leg")
  5838. ragdollpart(character, "Left Leg")
  5839. else
  5840. pcall(function()
  5841. local ayybleed = Instance.new('Part',character)
  5842. ayybleed.Size = Vector3.new(character.Torso.Size.X,0.1,character.Torso.Size.Z)
  5843. ayybleed.Transparency = 1
  5844. ayybleed.CanCollide = false
  5845. ayybleed.CFrame = character.Torso.CFrame
  5846. ayybleed:BreakJoints()
  5847. local attachment1 = Instance.new('Attachment',ayybleed)
  5848. attachment1.Position = Vector3.new(0,-character.Torso.Size.Y/2,0)
  5849. attachment1.Orientation = Vector3.new(0, 0, -180)
  5850. local attachment0 = Instance.new('Attachment',character.Torso)
  5851. if attachment0 and attachment1 then
  5852. local constraint = Instance.new("HingeConstraint")
  5853. constraint.Attachment0 = attachment0
  5854. constraint.Attachment1 = attachment1
  5855. constraint.LimitsEnabled = true
  5856. constraint.UpperAngle = 0
  5857. constraint.LowerAngle = 0
  5858. constraint.Parent = character
  5859. end
  5860. local bleedBLEED= coroutine.wrap(function()
  5861. bleed(ayybleed)
  5862. end)
  5863. bleedBLEED()
  5864. end)
  5865. end
  5866. ragdollpart(character, "Right Arm")
  5867. ragdollpart(character, "Left Arm")
  5868. end
  5869. end)
  5870. end
  5871.  
  5872. function getAttachment0(character,attachmentName)
  5873. for _,child in next,character:GetChildren() do
  5874. local attachment = child:FindFirstChild(attachmentName)
  5875. if attachment then
  5876. return attachment
  5877. end
  5878. end
  5879. end
  5880.  
  5881. function ragdollpart(character,partname,attached,heded)
  5882. if heded ~= false then
  5883. local neck = Instance.new('Attachment',character.Head)
  5884. neck.Name = "NeckAttachment"
  5885. neck.Position = Vector3.new(0,-0.5,0)
  5886. else
  5887. local force = Instance.new('BodyForce',character.Head)
  5888. force.Force = Vector3.new(0,500,0)
  5889. game:GetService('Debris'):AddItem(force,0.25)
  5890. pcall(function()
  5891. local asdf = Instance.new('Attachment',character.Head)
  5892. asdf.Position = Vector3.new(0,-character.Head.Size.Y/2,0)
  5893. local last = asdf
  5894. for i=1,14 do
  5895. local bONE = Instance.new('Part',character)
  5896. bONE.BrickColor = BrickColor.new('Institutional white')
  5897. bONE.Size = Vector3.new(0.1,0.1,0.1)
  5898. bONE.CFrame = character.Head.CFrame+(character.Head.CFrame.upVector*-(i/10))
  5899. local lole = Instance.new('Attachment',bONE)
  5900. local hangurself = Instance.new('RopeConstraint',bONE)
  5901. hangurself.Attachment0 = lole
  5902. hangurself.Attachment1 = last
  5903. hangurself.Visible = true
  5904. hangurself.Thickness = 0.05
  5905. hangurself.Color = BrickColor.new('Bright red')
  5906. hangurself.Length = 0.2
  5907. last = lole
  5908. end
  5909. local bleedee = Instance.new('Part',character.Head)
  5910. bleedee.Size = Vector3.new(0.75,0.25,0.75)
  5911. bleedee.CanCollide = false
  5912. bleedee.Color = Frame_2.BackgroundColor3
  5913. bleedee.CFrame = character.Head.CFrame
  5914. local mehs = Instance.new('CylinderMesh',bleedee)
  5915. bleedee:BreakJoints()
  5916. local attachment1 = Instance.new('Attachment',bleedee)
  5917. attachment1.Position = Vector3.new(0,character.Head.Size.Y/2,0)
  5918. attachment1.Orientation = Vector3.new(0,0,180)
  5919. local attachment0 = Instance.new('Attachment',character.Head)
  5920. if attachment0 and attachment1 then
  5921. local constraint = Instance.new("HingeConstraint")
  5922. constraint.Attachment0 = attachment0
  5923. constraint.Attachment1 = attachment1
  5924. constraint.LimitsEnabled = true
  5925. constraint.UpperAngle = 0
  5926. constraint.LowerAngle = 0
  5927. constraint.Parent = character
  5928. end
  5929. spawn(function()
  5930. bleed(bleedee)
  5931. end)
  5932. end)
  5933. local thing = "Torso"
  5934. if character:FindFirstChild(thing) == nil then
  5935. thing = "UpperTorso"
  5936. end
  5937. pcall(function()
  5938. local bleedee = Instance.new('Part',character[thing])
  5939. bleedee.Size = Vector3.new(0.75,0,0.75)
  5940. bleedee.CanCollide = false
  5941. bleedee.Color = Frame_2.BackgroundColor3
  5942. bleedee.CFrame = character[thing].CFrame
  5943. local mehs = Instance.new('CylinderMesh',bleedee)
  5944. bleedee:BreakJoints()
  5945. local attachment1 = Instance.new('Attachment',bleedee)
  5946. attachment1.Position = Vector3.new(0,-character[thing].Size.Y/2,0)
  5947. attachment1.Orientation = Vector3.new(0,0,180)
  5948. local attachment0 = Instance.new('Attachment',character[thing])
  5949. if attachment0 and attachment1 then
  5950. local constraint = Instance.new("HingeConstraint")
  5951. constraint.Attachment0 = attachment0
  5952. constraint.Attachment1 = attachment1
  5953. constraint.LimitsEnabled = true
  5954. constraint.UpperAngle = 0
  5955. constraint.LowerAngle = 0
  5956. constraint.Parent = character
  5957. end
  5958. spawn(function()
  5959. bleed(bleedee)
  5960. end)
  5961. end)
  5962. end
  5963. pcall(function()
  5964. if workspace.PGSPhysicsSolverEnabled == false then
  5965. workspace.PGSPhysicsSolverEnabled = true
  5966. end
  5967. end)
  5968. if partname == "HumanoidRootPart" then
  5969. if character:FindFirstChild('Torso') then
  5970. partname = "Torso"
  5971. else
  5972. partname = "UpperTorso"
  5973. end
  5974. end
  5975. if attached == false then
  5976. if character:FindFirstChild('UpperTorso') then
  5977. pcall(function()
  5978. character.UpperTorso.WaistRigAttachment:Destroy()
  5979. end)
  5980. pcall(function()
  5981. local ayybleed = Instance.new('Part',character)
  5982. ayybleed.Size = Vector3.new(character.UpperTorso.Size.X,0,character.UpperTorso.Size.Z)
  5983. ayybleed.Transparency = 1
  5984. ayybleed.CanCollide = false
  5985. ayybleed.CFrame = character.UpperTorso.CFrame
  5986. ayybleed:BreakJoints()
  5987. ayybleed.Name = "ayybleed"
  5988. local attachment1 = Instance.new('Attachment',ayybleed)
  5989. attachment1.Position = Vector3.new(0,-character.UpperTorso.Size.Y/2,0)
  5990. attachment1.Orientation = Vector3.new(0,0,180)
  5991. local attachment0 = Instance.new('Attachment',character.UpperTorso)
  5992. if attachment0 and attachment1 then
  5993. local constraint = Instance.new("HingeConstraint")
  5994. constraint.Attachment0 = attachment0
  5995. constraint.Attachment1 = attachment1
  5996. constraint.LimitsEnabled = true
  5997. constraint.UpperAngle = 0
  5998. constraint.LowerAngle = 0
  5999. constraint.Parent = character
  6000. end
  6001. local bleedBLEED= coroutine.wrap(function()
  6002. bleed(ayybleed)
  6003. end)
  6004. bleedBLEED()
  6005. end)
  6006. pcall(function()
  6007. local ayybleed = Instance.new('Part',character)
  6008. ayybleed.Size = Vector3.new(character.LowerTorso.Size.X-0.1,0.1,character.LowerTorso.Size.Z-0.1)
  6009. ayybleed.Transparency = 1
  6010. ayybleed.CanCollide = false
  6011. ayybleed.CFrame = character.LowerTorso.CFrame
  6012. ayybleed:BreakJoints()
  6013. ayybleed.Name = "ayybleed"
  6014. local attachment1 = Instance.new('Attachment',ayybleed)
  6015. attachment1.Position = Vector3.new(0,-character.LowerTorso.Size.Y/2,0)
  6016. attachment1.Orientation = Vector3.new(0,0,0)
  6017. local attachment0 = Instance.new('Attachment',character.LowerTorso)
  6018. if attachment0 and attachment1 then
  6019. local constraint = Instance.new("HingeConstraint")
  6020. constraint.Attachment0 = attachment0
  6021. constraint.Attachment1 = attachment1
  6022. constraint.LimitsEnabled = true
  6023. constraint.UpperAngle = 0
  6024. constraint.LowerAngle = 0
  6025. constraint.Parent = character
  6026. end
  6027. local bleedBLEED= coroutine.wrap(function()
  6028. bleed(ayybleed)
  6029. end)
  6030. bleedBLEED()
  6031. end)
  6032. end
  6033. pcall(function()
  6034. local thang = "Torso"
  6035. if character:FindFirstChild('UpperTorso') then
  6036. thang = "UpperTorso"
  6037. end
  6038. local ayybleed = Instance.new('Part',character)
  6039. ayybleed.Size = Vector3.new(character[thang].Size.X-0.1,0.1,character[thang].Size.Z-0.1)
  6040. ayybleed.Color = Frame_2.BackgroundColor3
  6041. ayybleed.Material = Enum.Material.SmoothPlastic
  6042. ayybleed.Name = "ayybleed"
  6043. ayybleed.CanCollide = false
  6044. ayybleed.Transparency = 0
  6045. ayybleed.CFrame = character[thang].CFrame
  6046. ayybleed:BreakJoints()
  6047. local attachment1 = Instance.new('Attachment',ayybleed)
  6048. attachment1.Position = Vector3.new(0,(character[thang].Size.Y/2)-0.045,0)
  6049. attachment1.Orientation = Vector3.new(0,0,0)
  6050. local attachment0 = Instance.new('Attachment',character[thang])
  6051. if attachment0 and attachment1 then
  6052. local constraint = Instance.new("HingeConstraint")
  6053. constraint.Attachment0 = attachment0
  6054. constraint.Attachment1 = attachment1
  6055. constraint.LimitsEnabled = true
  6056. constraint.UpperAngle = 0
  6057. constraint.LowerAngle = 0
  6058. constraint.Parent = character
  6059. end
  6060. end)
  6061. pcall(function()
  6062. local ree = character.LowerTorso
  6063. local thang = "LowerTorso"
  6064. local ayybleed = Instance.new('Part',character)
  6065. ayybleed.Size = Vector3.new(character[thang].Size.X-0.1,0.1,character[thang].Size.Z-0.1)
  6066. ayybleed.Color = Frame_2.BackgroundColor3
  6067. ayybleed.Material = Enum.Material.SmoothPlastic
  6068. ayybleed.Name = "ayybleed"
  6069. ayybleed.CanCollide = false
  6070. ayybleed.Transparency = 0
  6071. ayybleed.CFrame = character[thang].CFrame
  6072. ayybleed:BreakJoints()
  6073. local attachment1 = Instance.new('Attachment',ayybleed)
  6074. attachment1.Position = Vector3.new(0,(-character[thang].Size.Y/2)+0.045,0)
  6075. attachment1.Orientation = Vector3.new(0,0,0)
  6076. local attachment0 = Instance.new('Attachment',character[thang])
  6077. if attachment0 and attachment1 then
  6078. local constraint = Instance.new("HingeConstraint")
  6079. constraint.Attachment0 = attachment0
  6080. constraint.Attachment1 = attachment1
  6081. constraint.LimitsEnabled = true
  6082. constraint.UpperAngle = 0
  6083. constraint.LowerAngle = 0
  6084. constraint.Parent = character
  6085. end
  6086. end)
  6087. pcall(function()
  6088. local ree = character["Right Leg"]
  6089. local thang = "Right Leg"
  6090. local ayybleed = Instance.new('Part',character)
  6091. ayybleed.Size = Vector3.new(character[thang].Size.X-0.1,0.1,character[thang].Size.Z-0.1)
  6092. ayybleed.Color = Frame_2.BackgroundColor3
  6093. ayybleed.Material = Enum.Material.SmoothPlastic
  6094. ayybleed.Name = "ayybleed"
  6095. ayybleed.CanCollide = false
  6096. ayybleed.Transparency = 0
  6097. ayybleed.CFrame = character[thang].CFrame
  6098. ayybleed:BreakJoints()
  6099. local attachment1 = Instance.new('Attachment',ayybleed)
  6100. attachment1.Position = Vector3.new(0,(-character[thang].Size.Y/2)+0.045,0)
  6101. attachment1.Orientation = Vector3.new(0,0,0)
  6102. local attachment0 = Instance.new('Attachment',character[thang])
  6103. if attachment0 and attachment1 then
  6104. local constraint = Instance.new("HingeConstraint")
  6105. constraint.Attachment0 = attachment0
  6106. constraint.Attachment1 = attachment1
  6107. constraint.LimitsEnabled = true
  6108. constraint.UpperAngle = 0
  6109. constraint.LowerAngle = 0
  6110. constraint.Parent = character
  6111. end
  6112. end)
  6113. pcall(function()
  6114. local ree = character["Left Leg"]
  6115. local thang = "Left Leg"
  6116. local ayybleed = Instance.new('Part',character)
  6117. ayybleed.Size = Vector3.new(character[thang].Size.X-0.1,0.1,character[thang].Size.Z-0.1)
  6118. ayybleed.Color = Frame_2.BackgroundColor3
  6119. ayybleed.Material = Enum.Material.SmoothPlastic
  6120. ayybleed.Name = "ayybleed"
  6121. ayybleed.CanCollide = false
  6122. ayybleed.Transparency = 0
  6123. ayybleed.CFrame = character[thang].CFrame
  6124. ayybleed:BreakJoints()
  6125. local attachment1 = Instance.new('Attachment',ayybleed)
  6126. attachment1.Position = Vector3.new(0,(-character[thang].Size.Y/2)+0.045,0)
  6127. attachment1.Orientation = Vector3.new(0,0,0)
  6128. local attachment0 = Instance.new('Attachment',character[thang])
  6129. if attachment0 and attachment1 then
  6130. local constraint = Instance.new("HingeConstraint")
  6131. constraint.Attachment0 = attachment0
  6132. constraint.Attachment1 = attachment1
  6133. constraint.LimitsEnabled = true
  6134. constraint.UpperAngle = 0
  6135. constraint.LowerAngle = 0
  6136. constraint.Parent = character
  6137. end
  6138. end)
  6139. partname="Head"
  6140. end
  6141. if partname == "RightHand" or partname == "RightLowerArm" or partname == "RightUpperArm" then
  6142. if character:FindFirstChild('RightLowerArm') and character:FindFirstChild('RightHand') then
  6143. ragdollJoint(character,character.RightLowerArm, character.RightHand, "RightWrist", "Hinge", handProperties)
  6144. end
  6145. if character:FindFirstChild('UpperTorso') and character:FindFirstChild('RightUpperArm') then
  6146. ragdollJoint(character, character.UpperTorso, character["RightUpperArm"], "RightShoulder", "BallSocket")
  6147. end
  6148. if character:FindFirstChild('RightUpperArm') and character:FindFirstChild('RightLowerArm') then
  6149. ragdollJoint(character, character.RightUpperArm, character.RightLowerArm, "RightElbow", "BallSocket")
  6150. end
  6151. elseif partname == "LeftHand" or partname == "LeftLowerArm" or partname == "LeftUpperArm" then
  6152. if character:FindFirstChild('LeftLowerArm') and character:FindFirstChild('LeftHand') then
  6153. ragdollJoint(character,character.LeftLowerArm, character.LeftHand, "LeftWrist", "Hinge", handProperties)
  6154. end
  6155. if character:FindFirstChild('UpperTorso') and character:FindFirstChild('LeftUpperArm') then
  6156. ragdollJoint(character, character.UpperTorso, character["LeftUpperArm"], "LeftShoulder", "BallSocket")
  6157. end
  6158. if character:FindFirstChild('LeftUpperArm') and character:FindFirstChild('LeftLowerArm') then
  6159. ragdollJoint(character, character.LeftUpperArm, character.LeftLowerArm, "LeftElbow", "BallSocket")
  6160. end
  6161. elseif partname == "RightFoot" or partname == "RightUpperLeg" or partname == "RightLowerLeg" then
  6162. stun(character)
  6163. if character:FindFirstChild('RightUpperLeg') and character:FindFirstChild('RightLowerLeg') then
  6164. ragdollJoint(character,character.RightUpperLeg, character.RightLowerLeg, "RightKnee", "Hinge", shinProperties)
  6165. end
  6166. if character:FindFirstChild('RightLowerLeg') and character:FindFirstChild('RightFoot') then
  6167. ragdollJoint(character,character.RightLowerLeg, character.RightFoot, "RightAnkle", "Hinge", footProperties)
  6168. end
  6169. if character:FindFirstChild('LowerTorso') and character:FindFirstChild('RightUpperLeg') then
  6170. ragdollJoint(character,character.LowerTorso, character.RightUpperLeg, "RightHip", "BallSocket")
  6171. end
  6172. elseif partname == "LeftFoot" or partname == "LeftUpperLeg" or partname == "LeftLowerLeg" then
  6173. stun(character)
  6174. if character:FindFirstChild('LeftUpperLeg') and character:FindFirstChild('LeftLowerLeg') then
  6175. ragdollJoint(character,character.LeftUpperLeg, character.LeftLowerLeg, "LeftKnee", "Hinge", shinProperties)
  6176. end
  6177. if character:FindFirstChild('LeftLowerLeg') and character:FindFirstChild('LeftFoot') then
  6178. ragdollJoint(character,character.LeftLowerLeg, character.LeftFoot, "LeftAnkle", "Hinge", footProperties)
  6179. end
  6180. if character:FindFirstChild('LowerTorso') and character:FindFirstChild('LeftUpperLeg') then
  6181. ragdollJoint(character,character.LowerTorso, character.LeftUpperLeg, "LeftHip", "BallSocket")
  6182. end
  6183. elseif partname == "Head" or partname == "UpperTorso" or partname == "LowerTorso" then
  6184. if character:FindFirstChildOfClass('Humanoid') and character:FindFirstChildOfClass('Humanoid').RigType == Enum.HumanoidRigType.R15 then
  6185. if character:FindFirstChildOfClass('Humanoid') then
  6186. character:FindFirstChildOfClass('Humanoid').Health = 0
  6187. end
  6188. if character:FindFirstChild('HumanoidRootPart') then
  6189. character.HumanoidRootPart:Destroy()
  6190. end
  6191. while character:FindFirstChildOfClass('Humanoid').Health > 0 do wait() end
  6192. game:GetService('Debris'):AddItem(character,10)
  6193. for _,child in next,character:GetChildren() do
  6194. if child:IsA("Accoutrement") then
  6195. for _,part in next,child:GetChildren() do
  6196. if part:IsA("BasePart") then
  6197. for _,c in pairs(part:GetChildren()) do
  6198. if c:IsA('Weld') then c:Destroy() end
  6199. end
  6200. local attachment1 = part:FindFirstChildOfClass("Attachment")
  6201. local attachment0 = getAttachment0(character,attachment1.Name)
  6202. if attachment0 and attachment1 then
  6203. local constraint = Instance.new("HingeConstraint")
  6204. constraint.Attachment0 = attachment0
  6205. constraint.Attachment1 = attachment1
  6206. constraint.LimitsEnabled = true
  6207. constraint.UpperAngle = 0
  6208. constraint.LowerAngle = 0
  6209. constraint.Parent = character
  6210. end
  6211. end
  6212. end
  6213. end
  6214. end
  6215. for i,v in pairs(character:GetChildren()) do
  6216. if v:IsA('MeshPart') or v:IsA('BasePart') then
  6217. for _,c in pairs(v:GetChildren()) do
  6218. if c.Name == "Collision" then c:Destroy() end
  6219. end
  6220. end
  6221. end
  6222. if heded == false then
  6223. pcall(function()
  6224. local asdf = Instance.new('Attachment',character.Head)
  6225. asdf.Position = Vector3.new(0,-character.Head.Size.Y/2,0)
  6226. local last = asdf
  6227. character.Head.Neck:Destroy()
  6228. character.Head.NeckRigAttachment:Destroy()
  6229. character.UpperTorso:FindFirstChild('NeckAttachment'):Destroy()
  6230. end)
  6231. end
  6232. if character:FindFirstChild('UpperTorso') and character:FindFirstChild('LowerTorso') then
  6233. ragdollJoint(character,character.LowerTorso, character.UpperTorso, "Waist", "BallSocket", {
  6234. {"LimitsEnabled",true};
  6235. {"UpperAngle",5};
  6236. {"Radius",5};
  6237. })
  6238. end
  6239. if character:FindFirstChild('UpperTorso') and character:FindFirstChild('Head') then
  6240. ragdollJoint(character,character.UpperTorso, character.Head, "Neck", "Hinge", {
  6241. {"LimitsEnabled",true};
  6242. {"UpperAngle",50};
  6243. {"LowerAngle",-50};
  6244. })
  6245. end
  6246.  
  6247. local handProperties = {
  6248. {"LimitsEnabled", true};
  6249. {"UpperAngle",0};
  6250. {"LowerAngle",0};
  6251. }
  6252. if character:FindFirstChild('LeftLowerArm') and character:FindFirstChild('LeftHand') then
  6253. ragdollJoint(character,character.LeftLowerArm, character.LeftHand, "LeftWrist", "Hinge", handProperties)
  6254. end
  6255. if character:FindFirstChild('RightLowerArm') and character:FindFirstChild('RightHand') then
  6256. ragdollJoint(character,character.RightLowerArm, character.RightHand, "RightWrist", "Hinge", handProperties)
  6257. end
  6258.  
  6259. local shinProperties = {
  6260. {"LimitsEnabled", true};
  6261. {"UpperAngle", 0};
  6262. {"LowerAngle", -75};
  6263. }
  6264. if character:FindFirstChild('LeftUpperLeg') and character:FindFirstChild('LeftLowerLeg') then
  6265. ragdollJoint(character,character.LeftUpperLeg, character.LeftLowerLeg, "LeftKnee", "Hinge", shinProperties)
  6266. end
  6267. if character:FindFirstChild('RightUpperLeg') and character:FindFirstChild('RightLowerLeg') then
  6268. ragdollJoint(character,character.RightUpperLeg, character.RightLowerLeg, "RightKnee", "Hinge", shinProperties)
  6269. end
  6270.  
  6271. local footProperties = {
  6272. {"LimitsEnabled", true};
  6273. {"UpperAngle", 15};
  6274. {"LowerAngle", -45};
  6275. }
  6276. if character:FindFirstChild('LeftLowerLeg') and character:FindFirstChild('LeftFoot') then
  6277. ragdollJoint(character,character.LeftLowerLeg, character.LeftFoot, "LeftAnkle", "Hinge", footProperties)
  6278. end
  6279. if character:FindFirstChild('RightLowerLeg') and character:FindFirstChild('RightFoot') then
  6280. ragdollJoint(character,character.RightLowerLeg, character.RightFoot, "RightAnkle", "Hinge", footProperties)
  6281. end
  6282. if character:FindFirstChild('UpperTorso') and character:FindFirstChild('LeftUpperArm') then
  6283. ragdollJoint(character,character.UpperTorso, character.LeftUpperArm, "LeftShoulder", "BallSocket")
  6284. end
  6285. if character:FindFirstChild('LeftLowerArm') and character:FindFirstChild('LeftUpperArm') then
  6286. ragdollJoint(character,character.LeftUpperArm, character.LeftLowerArm, "LeftElbow", "BallSocket")
  6287. end
  6288. if character:FindFirstChild('UpperTorso') and character:FindFirstChild('RightUpperArm') then
  6289. ragdollJoint(character,character.UpperTorso, character.RightUpperArm, "RightShoulder", "BallSocket")
  6290. end
  6291. if character:FindFirstChild('RightUpperArm') and character:FindFirstChild('RightLowerArm') then
  6292. ragdollJoint(character,character.RightUpperArm, character.RightLowerArm, "RightElbow", "BallSocket")
  6293. end
  6294. if character:FindFirstChild('LowerTorso') and character:FindFirstChild('LeftUpperLeg') then
  6295. ragdollJoint(character,character.LowerTorso, character.LeftUpperLeg, "LeftHip", "BallSocket")
  6296. end
  6297. if character:FindFirstChild('LowerTorso') and character:FindFirstChild('RightUpperLeg') then
  6298. ragdollJoint(character,character.LowerTorso, character.RightUpperLeg, "RightHip", "BallSocket")
  6299. end
  6300. if character:FindFirstChild('HumanoidRootPart') then
  6301. character.HumanoidRootPart:Destroy()
  6302. end
  6303. else
  6304. R6ragdollJoint(character,partname,attached,heded)
  6305. end
  6306. else
  6307. R6ragdollJoint(character,partname,attached,heded)
  6308. end
  6309. end
  6310.  
  6311. function grow(weld,part,endsize,endpos,amntime)
  6312. local start = weld.C1
  6313. local parent = weld.Parent
  6314. local startsize = part.Size
  6315. local particl = Instance.new("ParticleEmitter")
  6316. particl.LightEmission = 3
  6317. 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))})
  6318. particl.LightInfluence = 0.75
  6319. particl.Size = NumberSequence.new({NumberSequenceKeypoint.new(0, 1), NumberSequenceKeypoint.new(1, 0)})
  6320. particl.Lifetime = NumberRange.new(0.1, 1)
  6321. particl.Rate = 50
  6322. particl.RotSpeed = NumberRange.new(300, 300)
  6323. particl.Speed = NumberRange.new(0, 1)
  6324. particl.SpreadAngle = Vector2.new(90, 90)
  6325. particl.Parent = part
  6326. for i=1,amntime*100 do
  6327. weld.C1 = start:lerp(endpos,i/(amntime*100))
  6328. part.Size = startsize:lerp(endsize,i/(amntime*100))
  6329. weld.Parent = parent
  6330. wait(0.01)
  6331. end
  6332. particl.Enabled = false
  6333. end
  6334. function lerp(weld,startpos,endpos,amntime,longatend)
  6335. local waited = 0
  6336. for i=1,amntime*100 do
  6337. if longatend == true then
  6338. startpos = weld.C0
  6339. end
  6340. weld.C0 = startpos:lerp(endpos,i/(amntime*100))
  6341. wait(0.01)
  6342. waited=waited+0.01
  6343. end
  6344. end
  6345.  
  6346. function spawned()
  6347. local usable = true
  6348. local working = false
  6349. local mode = "kill"
  6350. local equipped = false
  6351. local char = player.Character
  6352. local blademode = "handle"
  6353. local swinging = false
  6354. local gettingeem = false
  6355. local MOAN = false
  6356. local sounding = false
  6357. local SLESH = false
  6358. local goteem = nil
  6359. local grabbing = false
  6360. local grabbed = nil
  6361. local grabweld = nil
  6362. local aidsificating = nil
  6363. player.CharacterAdded:connect(function()
  6364. if usable then
  6365. usable = false
  6366. end
  6367. end)
  6368. if char == nil then return end
  6369. while char:FindFirstChildOfClass('Humanoid') == nil or char:FindFirstChild('Head') == nil do wait() end
  6370. local badass = Instance.new('Sound',char.Head)
  6371. badass.Name = 'Badass'
  6372. badass.EmitterSize = player.CameraMaxZoomDistance+1
  6373. badass.MaxDistance = player.CameraMaxZoomDistance+1
  6374. badass.Volume = 10
  6375. badass.Looped=true
  6376. badass.SoundId = 'rbxassetid://569913318'
  6377. local handle = Instance.new("Part", char)
  6378. handle.BrickColor = BrickColor.new("Really black")
  6379. handle.Material = "Metal"
  6380. handle.CanCollide = false
  6381. handle.Anchored = false
  6382. handle.Shape = "Cylinder"
  6383. handle.Size = Vector3.new(1.1, 0.3, 0.3)
  6384. handle.BackSurface = "SmoothNoOutlines"
  6385. handle.BottomSurface = "SmoothNoOutlines"
  6386. handle.FrontSurface = "SmoothNoOutlines"
  6387. handle.LeftSurface = "SmoothNoOutlines"
  6388. handle.RightSurface = "SmoothNoOutlines"
  6389. handle.TopSurface = "SmoothNoOutlines"
  6390. handle.Name = "handle"
  6391.  
  6392. local hweld = Instance.new("Weld", char.Torso)
  6393. hweld.Part0 = char.Torso
  6394. hweld.Part1 = handle
  6395. hweld.C0 = CFrame.new(1, -0.8, 0) * CFrame.Angles(0, math.rad(90), 0)
  6396.  
  6397. local rdd = false
  6398. function oogabooga()
  6399. if rdd == false then
  6400. rdd = true
  6401. pcall(function()
  6402. ragdollpart(char,"Right Arm")
  6403. ragdollpart(char,"Right Leg")
  6404. ragdollpart(char,"Left Arm")
  6405. ragdollpart(char,"Left Leg")
  6406. end)
  6407. pcall(function()
  6408. ragdollpart(char,"RightUpperArm")
  6409. ragdollpart(char,"RightUpperLeg")
  6410. ragdollpart(char,"LeftUpperArm")
  6411. ragdollpart(char,"LeftUpperLeg")
  6412. end)
  6413. unstun(char)
  6414. for i,v in pairs(char:GetChildren()) do
  6415. v.ChildAdded:connect(function(child)
  6416. if rdd == true then
  6417. if child.Name ~= "Neck" and child.Name ~= "RootJoint" and child.Name ~= "Root" and (child:IsA('Motor6D') or child:IsA('Weld')) then
  6418. if child ~= grabweld then
  6419. spawn(function()
  6420. wait()
  6421. child:Destroy()
  6422. end)
  6423. end
  6424. end
  6425. end
  6426. end)
  6427. if string.find(string.lower(v.Name),'leg') then
  6428. if v:FindFirstChild('Collision') then
  6429. v:FindFirstChild('Collision'):Destroy()
  6430. end
  6431. end
  6432. end
  6433. else
  6434. rdd = false
  6435. for i,v in pairs(char:GetChildren()) do
  6436. if v:IsA('HingeConstraint') or v:IsA('BallSocketConstraint') then
  6437. v:Destroy()
  6438. elseif v:IsA('BasePart') then
  6439. if v:FindFirstChild('Collision') then
  6440. v.Collision:Destroy()
  6441. end
  6442. for a,c in pairs(v:GetChildren()) do
  6443. if string.find(string.lower(c.Name),"ragdoll") then
  6444. c:Destroy()
  6445. end
  6446. end
  6447. end
  6448. end
  6449. pcall(function()
  6450. local ra = rightclone:Clone()
  6451. ra.Parent = char.Torso
  6452. ra.Part0 = char.Torso
  6453. ra.Part1 = char["Right Arm"]
  6454. end)
  6455. pcall(function()
  6456. local la = leftclone:Clone()
  6457. la.Parent = char.Torso
  6458. la.Part0 = char.Torso
  6459. la.Part1 = char["Left Arm"]
  6460. end)
  6461. pcall(function()
  6462. local ll = leftlegclone:Clone()
  6463. ll.Parent = char.Torso
  6464. ll.Part0 = char.Torso
  6465. ll.Part1 = char["Left Leg"]
  6466. end)
  6467. pcall(function()
  6468. local rl = rightlegclone:Clone()
  6469. rl.Parent = char.Torso
  6470. rl.Part0 = char.Torso
  6471. rl.Part1 = char["Right Leg"]
  6472. end)
  6473. end
  6474. end
  6475. function getrid()
  6476. if grabbed then
  6477. release()
  6478. end
  6479. blademode = "handle"
  6480. for _,ree in pairs(handle:GetChildren()) do
  6481. if ree:IsA('BasePart') then
  6482. local part = Instance.new('Part',workspace)
  6483. part.CFrame = ree.CFrame
  6484. part.Anchored = true
  6485. part.CanCollide = false
  6486. part.Size = ree.Size
  6487. part.Transparency = 1
  6488. ree:Destroy()
  6489. local pe2 = Instance.new("ParticleEmitter")
  6490. pe2.Acceleration = Vector3.new(0, 1, 0)
  6491. pe2.Lifetime = NumberRange.new(0.1, 0.2)
  6492. pe2.Speed = NumberRange.new(0.5)
  6493. pe2.Rate = 20000
  6494. pe2.RotSpeed = NumberRange.new(-30, 30)
  6495. pe2.Rotation = NumberRange.new(0, 360)
  6496. pe2.Size = NumberSequence.new({
  6497. NumberSequenceKeypoint.new(0, part.Size.X*2, 0),
  6498. NumberSequenceKeypoint.new(1, part.Size.X*2, 0),
  6499. })
  6500. pe2.Texture = "rbxassetid://244221440"
  6501. pe2.Transparency = NumberSequence.new({
  6502. NumberSequenceKeypoint.new(0, 0.9, 0),
  6503. NumberSequenceKeypoint.new(1, 0.9, 0)
  6504. })
  6505. pe2.ZOffset = 5
  6506. pe2.VelocitySpread = 360
  6507. pe2.Parent = part
  6508. pe2.Enabled = true
  6509. local coru=coroutine.wrap(function()
  6510. wait(0.2)
  6511. pe2.Enabled = false
  6512. game:GetService('Debris'):AddItem(part,0.5)
  6513. end)
  6514. coru()
  6515. else
  6516. ree:Remove()
  6517. end
  6518. end
  6519. end
  6520.  
  6521. function equip()
  6522. equipped = true
  6523. working = true
  6524. if char.Torso:FindFirstChild("Right Shoulder") then
  6525. char.Torso:FindFirstChild("Right Shoulder"):Destroy()
  6526. end
  6527. local weld = Instance.new('Weld', char.Torso)
  6528. weld.Name = "Lerping"
  6529. weld.Part0 = char["Right Arm"]
  6530. weld.Part1 = char.Torso
  6531. weld.C0 = CFrame.new(-1.5, 0, 0) * CFrame.Angles(0, 0, 0)
  6532.  
  6533. lerp(weld,weld.C0,CFrame.new(-1.3, -0.5, 0) * CFrame.Angles(0, 0, math.rad(15)),0.12,true)
  6534.  
  6535. wait(0.1)
  6536.  
  6537. hweld.Part0 = char["Right Arm"]
  6538. hweld.C0 = CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-180),math.rad(-90), 0)
  6539.  
  6540. lerp(weld,weld.C0,CFrame.new(-1.5, 0, 0) * CFrame.Angles(0, 0, 0),0.08)
  6541.  
  6542. weld:Destroy()
  6543. if rightclone and char:FindFirstChild('Right Arm') and char:FindFirstChild('Torso') then
  6544. local clone = rightclone:Clone()
  6545. clone.Part0 = char.Torso
  6546. clone.Part1 = char["Right Arm"]
  6547. clone.Parent = char.Torso
  6548. end
  6549. working = false
  6550. end
  6551.  
  6552. function unequip()
  6553. getrid(handle)
  6554. equipped = false
  6555. working = true
  6556.  
  6557. if char.Torso:FindFirstChild("Right Shoulder") then
  6558. char.Torso:FindFirstChild("Right Shoulder"):Destroy()
  6559. end
  6560.  
  6561. local weld = Instance.new('Weld', char.Torso)
  6562. weld.Name = "Lerping"
  6563. weld.Part0 = char["Right Arm"]
  6564. weld.Part1 = char.Torso
  6565. weld.C0 = CFrame.new(-1.5, 0, 0) * CFrame.Angles(0, 0, 0)
  6566.  
  6567.  
  6568. lerp(weld,weld.C0,CFrame.new(-1.3, -0.5, 0) * CFrame.Angles(0, 0, math.rad(15)),0.12,true)
  6569.  
  6570. hweld.Part0 = char["Torso"]
  6571. hweld.C0 = CFrame.new(1, -0.8, 0) * CFrame.Angles(0, math.rad(90), 0)
  6572. lerp(weld,weld.C0,CFrame.new(-1.5, 0, 0) * CFrame.Angles(0, 0, 0),0.08,true)
  6573. weld:Destroy()
  6574. if rightclone and char:FindFirstChild('Right Arm') and char:FindFirstChild('Torso') then
  6575. local clone = rightclone:Clone()
  6576. clone.Part0 = char.Torso
  6577. clone.Part1 = char["Right Arm"]
  6578. clone.Parent = char.Torso
  6579. end
  6580. working = false
  6581. end
  6582.  
  6583. function dildo()
  6584. blademode = "dildo"
  6585. working = true
  6586. -- 1 - pink toy
  6587. local obj1 = Instance.new("Model")
  6588. obj1.Name = "pink toy"
  6589. obj1.Parent = handle
  6590.  
  6591. -- 2 - Model
  6592. local obj2 = Instance.new("Model")
  6593. obj2.Parent = obj1
  6594.  
  6595. -- 3 - Part
  6596. local obj3 = Instance.new("Part")
  6597. obj3.CFrame = CFrame.new(Vector3.new(66.8643951, 3.86435986, 7.14990711)) * CFrame.Angles(-3.1415927410126, 0.34906616806984, 2.6179955005646)
  6598. obj3.CanCollide = false
  6599. obj3.TopSurface = Enum.SurfaceType.Smooth
  6600. obj3.BottomSurface = Enum.SurfaceType.Smooth
  6601. obj3.Material = Enum.Material.SmoothPlastic
  6602. obj3.Size = Vector3.new(1.00000024, 1.00000024, 1.00000024)
  6603. obj3.BrickColor = BrickColor.new("Hot pink")
  6604. obj3.Friction = 0.30000001192093
  6605. obj3.Shape = Enum.PartType.Ball
  6606. obj3.Parent = obj2
  6607. obj3.Name = "tip"
  6608.  
  6609. -- 4 - Part
  6610. local obj4 = Instance.new("Part")
  6611. obj4.CFrame = CFrame.new(Vector3.new(67.8275909, 2.08898449, 7.50048351)) * CFrame.Angles(9.1487750708552e-09, -0.34906616806984, -1.0471986532211)
  6612. obj4.CanCollide = false
  6613. obj4.TopSurface = Enum.SurfaceType.Smooth
  6614. obj4.BottomSurface = Enum.SurfaceType.Smooth
  6615. obj4.Material = Enum.Material.SmoothPlastic
  6616. obj4.Size = Vector3.new(4.09999943, 1, 1)
  6617. obj4.BrickColor = BrickColor.new("Hot pink")
  6618. obj4.Friction = 0.30000001192093
  6619. obj4.Shape = Enum.PartType.Cylinder
  6620. obj4.Parent = obj2
  6621.  
  6622. -- 5 - Part
  6623. local obj5 = Instance.new("Part")
  6624. obj5.CFrame = CFrame.new(Vector3.new(66.7104797, 3.86435843, 7.57276678)) * CFrame.Angles(-3.1415927410126, 0.34906616806984, 2.6179955005646)
  6625. obj5.CanCollide = false
  6626. obj5.TopSurface = Enum.SurfaceType.Smooth
  6627. obj5.BottomSurface = Enum.SurfaceType.Smooth
  6628. obj5.Material = Enum.Material.SmoothPlastic
  6629. obj5.Size = Vector3.new(0.25, 0.25, 0.25)
  6630. obj5.BrickColor = BrickColor.new("Hot pink")
  6631. obj5.Friction = 0.30000001192093
  6632. obj5.Shape = Enum.PartType.Ball
  6633. obj5.Parent = obj2
  6634.  
  6635. -- 6 - Part
  6636. local obj6 = Instance.new("Part")
  6637. obj6.CFrame = CFrame.new(Vector3.new(68.6905365, 0.83212769, 8.29345417)) * CFrame.Angles(-3.1415927410126, 0.34906616806984, 2.7925276756287)
  6638. obj6.CanCollide = false
  6639. obj6.TopSurface = Enum.SurfaceType.Smooth
  6640. obj6.BottomSurface = Enum.SurfaceType.Smooth
  6641. obj6.Material = Enum.Material.SmoothPlastic
  6642. obj6.Size = Vector3.new(0.999999762, 0.999999762, 0.999999762)
  6643. obj6.BrickColor = BrickColor.new("Hot pink")
  6644. obj6.Friction = 0.30000001192093
  6645. obj6.Shape = Enum.PartType.Ball
  6646. obj6.Parent = obj2
  6647.  
  6648. -- 7 - Part
  6649. local obj7 = Instance.new("Part")
  6650. obj7.CFrame = CFrame.new(Vector3.new(67.0182953, 3.86435866, 6.72704411)) * CFrame.Angles(-3.1415927410126, 0.34906616806984, 2.6179955005646)
  6651. obj7.CanCollide = false
  6652. obj7.TopSurface = Enum.SurfaceType.Smooth
  6653. obj7.BottomSurface = Enum.SurfaceType.Smooth
  6654. obj7.Material = Enum.Material.SmoothPlastic
  6655. obj7.Size = Vector3.new(0.25, 0.25, 0.25)
  6656. obj7.BrickColor = BrickColor.new("Hot pink")
  6657. obj7.Friction = 0.30000001192093
  6658. obj7.Shape = Enum.PartType.Ball
  6659. obj7.Parent = obj2
  6660.  
  6661. -- 8 - Part
  6662. local obj8 = Instance.new("Part")
  6663. obj8.CFrame = CFrame.new(Vector3.new(68.9983597, 0.832128167, 7.44772816)) * CFrame.Angles(-3.1415927410126, 0.34906616806984, 2.7925276756287)
  6664. obj8.CanCollide = false
  6665. obj8.TopSurface = Enum.SurfaceType.Smooth
  6666. obj8.BottomSurface = Enum.SurfaceType.Smooth
  6667. obj8.Material = Enum.Material.SmoothPlastic
  6668. obj8.Size = Vector3.new(0.999999762, 0.999999762, 0.999999762)
  6669. obj8.BrickColor = BrickColor.new("Hot pink")
  6670. obj8.Friction = 0.30000001192093
  6671. obj8.Shape = Enum.PartType.Ball
  6672. obj8.Parent = obj2
  6673. local fiREPART = obj8
  6674.  
  6675. -- 9 - Part
  6676. local obj9 = Instance.new("Part")
  6677. obj9.CFrame = CFrame.new(Vector3.new(68.8566208, 0.357954353, 7.87501621)) * CFrame.Angles(9.1487750708552e-09, -0.34906616806984, -1.2217314243317)
  6678. obj9.CanCollide = false
  6679. obj9.TopSurface = Enum.SurfaceType.Smooth
  6680. obj9.BottomSurface = Enum.SurfaceType.Smooth
  6681. obj9.Material = Enum.Material.SmoothPlastic
  6682. obj9.Size = Vector3.new(0.0999999791, 1.50000036, 2)
  6683. obj9.BrickColor = BrickColor.new("Hot pink")
  6684. obj9.Friction = 0.30000001192093
  6685. obj9.Shape = Enum.PartType.Cylinder
  6686. obj9.Parent = obj2
  6687.  
  6688. -- 10 - Part
  6689. local obj10 = Instance.new("Part")
  6690. obj10.CFrame = CFrame.new(Vector3.new(66.8069, 3.58244801, 7.60786104)) * CFrame.Angles(-3.1415927410126, 0.34906616806984, 2.6179955005646)
  6691. obj10.CanCollide = false
  6692. obj10.TopSurface = Enum.SurfaceType.Smooth
  6693. obj10.BottomSurface = Enum.SurfaceType.Smooth
  6694. obj10.Material = Enum.Material.SmoothPlastic
  6695. obj10.Size = Vector3.new(0.25, 0.25, 0.25)
  6696. obj10.BrickColor = BrickColor.new("Hot pink")
  6697. obj10.Friction = 0.30000001192093
  6698. obj10.Shape = Enum.PartType.Ball
  6699. obj10.Parent = obj2
  6700.  
  6701. -- 11 - Part
  6702. local obj11 = Instance.new("Part")
  6703. obj11.CFrame = CFrame.new(Vector3.new(67.196106, 3.632447, 6.79175806)) * CFrame.Angles(-3.1415927410126, 0.34906616806984, 2.6179955005646)
  6704. obj11.CanCollide = false
  6705. obj11.TopSurface = Enum.SurfaceType.Smooth
  6706. obj11.BottomSurface = Enum.SurfaceType.Smooth
  6707. obj11.Material = Enum.Material.SmoothPlastic
  6708. obj11.Size = Vector3.new(0.25, 0.25, 0.25)
  6709. obj11.BrickColor = BrickColor.new("Hot pink")
  6710. obj11.Friction = 0.30000001192093
  6711. obj11.Shape = Enum.PartType.Ball
  6712. obj11.Parent = obj2
  6713.  
  6714. -- 12 - Part
  6715. local obj12 = Instance.new("Part")
  6716. obj12.CFrame = CFrame.new(Vector3.new(67.0756683, 3.77002549, 7.63403416)) * CFrame.Angles(-2.4803557395935, 1.123170375824, 2.1302044391632)
  6717. obj12.CanCollide = false
  6718. obj12.TopSurface = Enum.SurfaceType.Smooth
  6719. obj12.BottomSurface = Enum.SurfaceType.Smooth
  6720. obj12.Material = Enum.Material.SmoothPlastic
  6721. obj12.Size = Vector3.new(0.25, 0.25, 0.25)
  6722. obj12.BrickColor = BrickColor.new("Hot pink")
  6723. obj12.Friction = 0.30000001192093
  6724. obj12.Shape = Enum.PartType.Ball
  6725. obj12.Parent = obj2
  6726.  
  6727. -- 13 - Part
  6728. local obj13 = Instance.new("Part")
  6729. obj13.CFrame = CFrame.new(Vector3.new(67.4108353, 3.27276325, 6.88037825)) * CFrame.Angles(-3.058357000351, 0.5446692109108, 2.5818355083466)
  6730. obj13.CanCollide = false
  6731. obj13.TopSurface = Enum.SurfaceType.Smooth
  6732. obj13.BottomSurface = Enum.SurfaceType.Smooth
  6733. obj13.Material = Enum.Material.SmoothPlastic
  6734. obj13.Size = Vector3.new(0.25, 0.25, 0.25)
  6735. obj13.BrickColor = BrickColor.new("Hot pink")
  6736. obj13.Friction = 0.30000001192093
  6737. obj13.Shape = Enum.PartType.Ball
  6738. obj13.Parent = obj2
  6739.  
  6740. -- 14 - Part
  6741. local obj14 = Instance.new("Part")
  6742. obj14.CFrame = CFrame.new(Vector3.new(66.868927, 3.43238807, 6.82578087)) * CFrame.Angles(-2.4803557395935, 1.123170375824, 2.1302044391632)
  6743. obj14.CanCollide = false
  6744. obj14.TopSurface = Enum.SurfaceType.Smooth
  6745. obj14.BottomSurface = Enum.SurfaceType.Smooth
  6746. obj14.Material = Enum.Material.SmoothPlastic
  6747. obj14.Size = Vector3.new(0.25, 0.25, 0.25)
  6748. obj14.BrickColor = BrickColor.new("Hot pink")
  6749. obj14.Friction = 0.30000001192093
  6750. obj14.Shape = Enum.PartType.Ball
  6751. obj14.Parent = obj2
  6752.  
  6753. -- 15 - Part
  6754. local obj15 = Instance.new("Part")
  6755. obj15.CFrame = CFrame.new(Vector3.new(67.1951675, 3.383008, 7.69050598)) * CFrame.Angles(-2.0021269321442, 1.2287007570267, 1.6869416236877)
  6756. obj15.CanCollide = false
  6757. obj15.TopSurface = Enum.SurfaceType.Smooth
  6758. obj15.BottomSurface = Enum.SurfaceType.Smooth
  6759. obj15.Material = Enum.Material.SmoothPlastic
  6760. obj15.Size = Vector3.new(0.25, 0.25, 0.25)
  6761. obj15.BrickColor = BrickColor.new("Hot pink")
  6762. obj15.Friction = 0.30000001192093
  6763. obj15.Shape = Enum.PartType.Ball
  6764. obj15.Parent = obj2
  6765.  
  6766. -- 16 - Part
  6767. local obj16 = Instance.new("Part")
  6768. obj16.CFrame = CFrame.new(Vector3.new(67.50383, 3.46245813, 7.48069429)) * CFrame.Angles(-3.058357000351, 0.5446692109108, 2.5818355083466)
  6769. obj16.CanCollide = false
  6770. obj16.TopSurface = Enum.SurfaceType.Smooth
  6771. obj16.BottomSurface = Enum.SurfaceType.Smooth
  6772. obj16.Material = Enum.Material.SmoothPlastic
  6773. obj16.Size = Vector3.new(0.25, 0.25, 0.25)
  6774. obj16.BrickColor = BrickColor.new("Hot pink")
  6775. obj16.Friction = 0.30000001192093
  6776. obj16.Shape = Enum.PartType.Ball
  6777. obj16.Parent = obj2
  6778.  
  6779. -- 17 - Part
  6780. local obj17 = Instance.new("Part")
  6781. obj17.CFrame = CFrame.new(Vector3.new(66.5551376, 3.4628334, 7.33871651)) * CFrame.Angles(-2.4803557395935, 1.123170375824, 2.1302044391632)
  6782. obj17.CanCollide = false
  6783. obj17.TopSurface = Enum.SurfaceType.Smooth
  6784. obj17.BottomSurface = Enum.SurfaceType.Smooth
  6785. obj17.Material = Enum.Material.SmoothPlastic
  6786. obj17.Size = Vector3.new(0.25, 0.25, 0.25)
  6787. obj17.BrickColor = BrickColor.new("Hot pink")
  6788. obj17.Friction = 0.30000001192093
  6789. obj17.Shape = Enum.PartType.Ball
  6790. obj17.Parent = obj2
  6791.  
  6792. -- 18 - Part
  6793. local obj18 = Instance.new("Part")
  6794. obj18.CFrame = CFrame.new(Vector3.new(67.3677139, 3.83245182, 7.3331027)) * CFrame.Angles(-3.1415927410126, 0.34906616806984, 2.6179955005646)
  6795. obj18.CanCollide = false
  6796. obj18.TopSurface = Enum.SurfaceType.Smooth
  6797. obj18.BottomSurface = Enum.SurfaceType.Smooth
  6798. obj18.Material = Enum.Material.SmoothPlastic
  6799. obj18.Size = Vector3.new(0.25, 0.25, 0.25)
  6800. obj18.BrickColor = BrickColor.new("Hot pink")
  6801. obj18.Friction = 0.30000001192093
  6802. obj18.Shape = Enum.PartType.Ball
  6803. obj18.Parent = obj2
  6804.  
  6805. -- 19 - Part
  6806. local obj19 = Instance.new("Part")
  6807. obj19.CFrame = CFrame.new(Vector3.new(67.4115601, 3.71535063, 7.01420689)) * CFrame.Angles(-2.4803557395935, 1.123170375824, 2.1302044391632)
  6808. obj19.CanCollide = false
  6809. obj19.TopSurface = Enum.SurfaceType.Smooth
  6810. obj19.BottomSurface = Enum.SurfaceType.Smooth
  6811. obj19.Material = Enum.Material.SmoothPlastic
  6812. obj19.Size = Vector3.new(0.25, 0.25, 0.25)
  6813. obj19.BrickColor = BrickColor.new("Hot pink")
  6814. obj19.Friction = 0.30000001192093
  6815. obj19.Shape = Enum.PartType.Ball
  6816. obj19.Parent = obj2
  6817.  
  6818. -- 20 - Part
  6819. local obj20 = Instance.new("Part")
  6820. obj20.CFrame = CFrame.new(Vector3.new(67.6487045, 3.39313889, 7.19381428)) * CFrame.Angles(-2.0021269321442, 1.2287007570267, 1.6869416236877)
  6821. obj20.CanCollide = false
  6822. obj20.TopSurface = Enum.SurfaceType.Smooth
  6823. obj20.BottomSurface = Enum.SurfaceType.Smooth
  6824. obj20.Material = Enum.Material.SmoothPlastic
  6825. obj20.Size = Vector3.new(0.25, 0.25, 0.25)
  6826. obj20.BrickColor = BrickColor.new("Hot pink")
  6827. obj20.Friction = 0.30000001192093
  6828. obj20.Shape = Enum.PartType.Ball
  6829. obj20.Parent = obj2
  6830.  
  6831. -- 21 - Part
  6832. local obj21 = Instance.new("Part")
  6833. obj21.CFrame = CFrame.new(Vector3.new(66.8260422, 4.12417316, 6.81669378)) * CFrame.Angles(-3.1415927410126, 0.34906616806984, 2.6179955005646)
  6834. obj21.CanCollide = false
  6835. obj21.TopSurface = Enum.SurfaceType.Smooth
  6836. obj21.BottomSurface = Enum.SurfaceType.Smooth
  6837. obj21.Material = Enum.Material.SmoothPlastic
  6838. obj21.Size = Vector3.new(0.25, 0.25, 0.25)
  6839. obj21.BrickColor = BrickColor.new("Hot pink")
  6840. obj21.Friction = 0.30000001192093
  6841. obj21.Shape = Enum.PartType.Ball
  6842. obj21.Parent = obj2
  6843.  
  6844. -- 22 - Part
  6845. local obj22 = Instance.new("Part")
  6846. obj22.CFrame = CFrame.new(Vector3.new(67.162117, 3.11433029, 6.8847661)) * CFrame.Angles(-2.0021269321442, 1.2287007570267, 1.6869416236877)
  6847. obj22.CanCollide = false
  6848. obj22.TopSurface = Enum.SurfaceType.Smooth
  6849. obj22.BottomSurface = Enum.SurfaceType.Smooth
  6850. obj22.Material = Enum.Material.SmoothPlastic
  6851. obj22.Size = Vector3.new(0.25, 0.25, 0.25)
  6852. obj22.BrickColor = BrickColor.new("Hot pink")
  6853. obj22.Friction = 0.30000001192093
  6854. obj22.Shape = Enum.PartType.Ball
  6855. obj22.Parent = obj2
  6856.  
  6857. -- 23 - Part
  6858. local obj23 = Instance.new("Part")
  6859. obj23.CFrame = CFrame.new(Vector3.new(66.4981842, 3.63936186, 7.01661682)) * CFrame.Angles(-3.1415927410126, 0.34906616806984, 2.6179955005646)
  6860. obj23.CanCollide = false
  6861. obj23.TopSurface = Enum.SurfaceType.Smooth
  6862. obj23.BottomSurface = Enum.SurfaceType.Smooth
  6863. obj23.Material = Enum.Material.SmoothPlastic
  6864. obj23.Size = Vector3.new(0.25, 0.25, 0.25)
  6865. obj23.BrickColor = BrickColor.new("Hot pink")
  6866. obj23.Friction = 0.30000001192093
  6867. obj23.Shape = Enum.PartType.Ball
  6868. obj23.Parent = obj2
  6869.  
  6870. -- 24 - Part
  6871. local obj24 = Instance.new("Part")
  6872. obj24.CFrame = CFrame.new(Vector3.new(66.6352844, 3.38244724, 7.06651926)) * CFrame.Angles(-3.1415927410126, 0.34906616806984, 2.6179955005646)
  6873. obj24.CanCollide = false
  6874. obj24.TopSurface = Enum.SurfaceType.Smooth
  6875. obj24.BottomSurface = Enum.SurfaceType.Smooth
  6876. obj24.Material = Enum.Material.SmoothPlastic
  6877. obj24.Size = Vector3.new(0.25, 0.25, 0.25)
  6878. obj24.BrickColor = BrickColor.new("Hot pink")
  6879. obj24.Friction = 0.30000001192093
  6880. obj24.Shape = Enum.PartType.Ball
  6881. obj24.Parent = obj2
  6882.  
  6883. -- 25 - Part
  6884. local obj25 = Instance.new("Part")
  6885. obj25.CFrame = CFrame.new(Vector3.new(66.753746, 3.10362744, 7.32704163)) * CFrame.Angles(-2.0021269321442, 1.2287007570267, 1.6869416236877)
  6886. obj25.CanCollide = false
  6887. obj25.TopSurface = Enum.SurfaceType.Smooth
  6888. obj25.BottomSurface = Enum.SurfaceType.Smooth
  6889. obj25.Material = Enum.Material.SmoothPlastic
  6890. obj25.Size = Vector3.new(0.25, 0.25, 0.25)
  6891. obj25.BrickColor = BrickColor.new("Hot pink")
  6892. obj25.Friction = 0.30000001192093
  6893. obj25.Shape = Enum.PartType.Ball
  6894. obj25.Parent = obj2
  6895.  
  6896. -- 26 - Part
  6897. local obj26 = Instance.new("Part")
  6898. obj26.CFrame = CFrame.new(Vector3.new(66.851532, 3.01907969, 7.04717398)) * CFrame.Angles(-3.058357000351, 0.5446692109108, 2.5818355083466)
  6899. obj26.CanCollide = false
  6900. obj26.TopSurface = Enum.SurfaceType.Smooth
  6901. obj26.BottomSurface = Enum.SurfaceType.Smooth
  6902. obj26.Material = Enum.Material.SmoothPlastic
  6903. obj26.Size = Vector3.new(0.25, 0.25, 0.25)
  6904. obj26.BrickColor = BrickColor.new("Hot pink")
  6905. obj26.Friction = 0.30000001192093
  6906. obj26.Shape = Enum.PartType.Ball
  6907. obj26.Parent = obj2
  6908.  
  6909. -- 27 - Part
  6910. local obj27 = Instance.new("Part")
  6911. obj27.CFrame = CFrame.new(Vector3.new(66.944519, 3.20876789, 7.64748764)) * CFrame.Angles(-3.058357000351, 0.5446692109108, 2.5818355083466)
  6912. obj27.CanCollide = false
  6913. obj27.TopSurface = Enum.SurfaceType.Smooth
  6914. obj27.BottomSurface = Enum.SurfaceType.Smooth
  6915. obj27.Material = Enum.Material.SmoothPlastic
  6916. obj27.Size = Vector3.new(0.25, 0.25, 0.25)
  6917. obj27.BrickColor = BrickColor.new("Hot pink")
  6918. obj27.Friction = 0.30000001192093
  6919. obj27.Shape = Enum.PartType.Ball
  6920. obj27.Parent = obj2
  6921.  
  6922. -- 28 - Part
  6923. local obj28 = Instance.new("Part")
  6924. obj28.CFrame = CFrame.new(Vector3.new(67.2306061, 4.08936405, 7.28319883)) * CFrame.Angles(-3.1415927410126, 0.34906616806984, 2.6179955005646)
  6925. obj28.CanCollide = false
  6926. obj28.TopSurface = Enum.SurfaceType.Smooth
  6927. obj28.BottomSurface = Enum.SurfaceType.Smooth
  6928. obj28.Material = Enum.Material.SmoothPlastic
  6929. obj28.Size = Vector3.new(0.25, 0.25, 0.25)
  6930. obj28.BrickColor = BrickColor.new("Hot pink")
  6931. obj28.Friction = 0.30000001192093
  6932. obj28.Shape = Enum.PartType.Ball
  6933. obj28.Parent = obj2
  6934.  
  6935. -- 29 - Part
  6936. local obj29 = Instance.new("Part")
  6937. obj29.CFrame = CFrame.new(Vector3.new(66.5712891, 3.99917173, 6.8835969)) * CFrame.Angles(-3.1415927410126, 0.34906616806984, 2.6179955005646)
  6938. obj29.CanCollide = false
  6939. obj29.TopSurface = Enum.SurfaceType.Smooth
  6940. obj29.BottomSurface = Enum.SurfaceType.Smooth
  6941. obj29.Material = Enum.Material.SmoothPlastic
  6942. obj29.Size = Vector3.new(0.25, 0.25, 0.25)
  6943. obj29.BrickColor = BrickColor.new("Hot pink")
  6944. obj29.Friction = 0.30000001192093
  6945. obj29.Shape = Enum.PartType.Ball
  6946. obj29.Parent = obj2
  6947.  
  6948. -- 30 - Part
  6949. local obj30 = Instance.new("Part")
  6950. obj30.CFrame = CFrame.new(Vector3.new(66.7236328, 4.26077843, 7.20509243)) * CFrame.Angles(-3.1415927410126, 0.34906616806984, 2.6179955005646)
  6951. obj30.CanCollide = false
  6952. obj30.TopSurface = Enum.SurfaceType.Smooth
  6953. obj30.BottomSurface = Enum.SurfaceType.Smooth
  6954. obj30.Material = Enum.Material.SmoothPlastic
  6955. obj30.Size = Vector3.new(0.25, 0.25, 0.25)
  6956. obj30.BrickColor = BrickColor.new("Hot pink")
  6957. obj30.Friction = 0.30000001192093
  6958. obj30.Shape = Enum.PartType.Ball
  6959. obj30.Parent = obj2
  6960.  
  6961. -- 31 - Part
  6962. local obj31 = Instance.new("Part")
  6963. obj31.CFrame = CFrame.new(Vector3.new(66.5950623, 4.16077423, 7.05188084)) * CFrame.Angles(-3.1415927410126, 0.34906616806984, 2.6179955005646)
  6964. obj31.CanCollide = false
  6965. obj31.TopSurface = Enum.SurfaceType.Smooth
  6966. obj31.BottomSurface = Enum.SurfaceType.Smooth
  6967. obj31.Material = Enum.Material.SmoothPlastic
  6968. obj31.Size = Vector3.new(0.25, 0.25, 0.25)
  6969. obj31.BrickColor = BrickColor.new("Hot pink")
  6970. obj31.Friction = 0.30000001192093
  6971. obj31.Shape = Enum.PartType.Ball
  6972. obj31.Parent = obj2
  6973.  
  6974. -- 32 - Part
  6975. local obj32 = Instance.new("Part")
  6976. obj32.CFrame = CFrame.new(Vector3.new(67.0637207, 4.03936481, 7.48850012)) * CFrame.Angles(-3.1415927410126, 0.34906616806984, 2.6179955005646)
  6977. obj32.CanCollide = false
  6978. obj32.TopSurface = Enum.SurfaceType.Smooth
  6979. obj32.BottomSurface = Enum.SurfaceType.Smooth
  6980. obj32.Material = Enum.Material.SmoothPlastic
  6981. obj32.Size = Vector3.new(0.25, 0.25, 0.25)
  6982. obj32.BrickColor = BrickColor.new("Hot pink")
  6983. obj32.Friction = 0.30000001192093
  6984. obj32.Shape = Enum.PartType.Ball
  6985. obj32.Parent = obj2
  6986.  
  6987. -- 33 - Part
  6988. local obj33 = Instance.new("Part")
  6989. obj33.CFrame = CFrame.new(Vector3.new(66.4686813, 3.99917364, 7.16550922)) * CFrame.Angles(-3.1415927410126, 0.34906616806984, 2.6179955005646)
  6990. obj33.CanCollide = false
  6991. obj33.TopSurface = Enum.SurfaceType.Smooth
  6992. obj33.BottomSurface = Enum.SurfaceType.Smooth
  6993. obj33.Material = Enum.Material.SmoothPlastic
  6994. obj33.Size = Vector3.new(0.25, 0.25, 0.25)
  6995. obj33.BrickColor = BrickColor.new("Hot pink")
  6996. obj33.Friction = 0.30000001192093
  6997. obj33.Shape = Enum.PartType.Ball
  6998. obj33.Parent = obj2
  6999.  
  7000. -- 34 - Part
  7001. local obj34 = Instance.new("Part")
  7002. obj34.CFrame = CFrame.new(Vector3.new(66.6615219, 4.14917231, 7.3953228)) * CFrame.Angles(-3.1415927410126, 0.34906616806984, 2.6179955005646)
  7003. obj34.CanCollide = false
  7004. obj34.TopSurface = Enum.SurfaceType.Smooth
  7005. obj34.BottomSurface = Enum.SurfaceType.Smooth
  7006. obj34.Material = Enum.Material.SmoothPlastic
  7007. obj34.Size = Vector3.new(0.25, 0.25, 0.25)
  7008. obj34.BrickColor = BrickColor.new("Hot pink")
  7009. obj34.Friction = 0.30000001192093
  7010. obj34.Shape = Enum.PartType.Ball
  7011. obj34.Parent = obj2
  7012.  
  7013. -- 35 - Part
  7014. local obj35 = Instance.new("Part")
  7015. obj35.CFrame = CFrame.new(Vector3.new(66.8712616, 4.16257238, 7.47166586)) * CFrame.Angles(-3.1415927410126, 0.34906616806984, 2.6179955005646)
  7016. obj35.CanCollide = false
  7017. obj35.TopSurface = Enum.SurfaceType.Smooth
  7018. obj35.BottomSurface = Enum.SurfaceType.Smooth
  7019. obj35.Material = Enum.Material.SmoothPlastic
  7020. obj35.Size = Vector3.new(0.25, 0.25, 0.25)
  7021. obj35.BrickColor = BrickColor.new("Hot pink")
  7022. obj35.Friction = 0.30000001192093
  7023. obj35.Shape = Enum.PartType.Ball
  7024. obj35.Parent = obj2
  7025.  
  7026. -- 36 - Part
  7027. local obj36 = Instance.new("Part")
  7028. obj36.CFrame = CFrame.new(Vector3.new(66.7165604, 3.82596827, 6.77684546)) * CFrame.Angles(-3.1415927410126, 0.34906616806984, 2.6179955005646)
  7029. obj36.CanCollide = false
  7030. obj36.TopSurface = Enum.SurfaceType.Smooth
  7031. obj36.BottomSurface = Enum.SurfaceType.Smooth
  7032. obj36.Material = Enum.Material.SmoothPlastic
  7033. obj36.Size = Vector3.new(0.25, 0.25, 0.25)
  7034. obj36.BrickColor = BrickColor.new("Hot pink")
  7035. obj36.Friction = 0.30000001192093
  7036. obj36.Shape = Enum.PartType.Ball
  7037. obj36.Parent = obj2
  7038.  
  7039. -- 37 - Part
  7040. local obj37 = Instance.new("Part")
  7041. obj37.CFrame = CFrame.new(Vector3.new(66.9846878, 4.27417517, 7.14047909)) * CFrame.Angles(-3.1415927410126, 0.34906616806984, 2.6179955005646)
  7042. obj37.CanCollide = false
  7043. obj37.TopSurface = Enum.SurfaceType.Smooth
  7044. obj37.BottomSurface = Enum.SurfaceType.Smooth
  7045. obj37.Material = Enum.Material.SmoothPlastic
  7046. obj37.Size = Vector3.new(0.25, 0.25, 0.25)
  7047. obj37.BrickColor = BrickColor.new("Hot pink")
  7048. obj37.Friction = 0.30000001192093
  7049. obj37.Shape = Enum.PartType.Ball
  7050. obj37.Parent = obj2
  7051.  
  7052. -- 38 - Part
  7053. local obj38 = Instance.new("Part")
  7054. obj38.CFrame = CFrame.new(Vector3.new(67.1641541, 4.10096312, 6.93975735)) * CFrame.Angles(-3.1415927410126, 0.34906616806984, 2.6179955005646)
  7055. obj38.CanCollide = false
  7056. obj38.TopSurface = Enum.SurfaceType.Smooth
  7057. obj38.BottomSurface = Enum.SurfaceType.Smooth
  7058. obj38.Material = Enum.Material.SmoothPlastic
  7059. obj38.Size = Vector3.new(0.25, 0.25, 0.25)
  7060. obj38.BrickColor = BrickColor.new("Hot pink")
  7061. obj38.Friction = 0.30000001192093
  7062. obj38.Shape = Enum.PartType.Ball
  7063. obj38.Parent = obj2
  7064.  
  7065. -- 39 - Part
  7066. local obj39 = Instance.new("Part")
  7067. obj39.CFrame = CFrame.new(Vector3.new(66.792038, 4.26077843, 7.01715183)) * CFrame.Angles(-3.1415927410126, 0.34906616806984, 2.6179955005646)
  7068. obj39.CanCollide = false
  7069. obj39.TopSurface = Enum.SurfaceType.Smooth
  7070. obj39.BottomSurface = Enum.SurfaceType.Smooth
  7071. obj39.Material = Enum.Material.SmoothPlastic
  7072. obj39.Size = Vector3.new(0.25, 0.25, 0.25)
  7073. obj39.BrickColor = BrickColor.new("Hot pink")
  7074. obj39.Friction = 0.30000001192093
  7075. obj39.Shape = Enum.PartType.Ball
  7076. obj39.Parent = obj2
  7077.  
  7078. -- 40 - Part
  7079. local obj40 = Instance.new("Part")
  7080. obj40.CFrame = CFrame.new(Vector3.new(66.5005493, 3.71436262, 7.38994217)) * CFrame.Angles(-3.1415927410126, 0.34906616806984, 2.6179955005646)
  7081. obj40.CanCollide = false
  7082. obj40.TopSurface = Enum.SurfaceType.Smooth
  7083. obj40.BottomSurface = Enum.SurfaceType.Smooth
  7084. obj40.Material = Enum.Material.SmoothPlastic
  7085. obj40.Size = Vector3.new(0.25, 0.25, 0.25)
  7086. obj40.BrickColor = BrickColor.new("Hot pink")
  7087. obj40.Friction = 0.30000001192093
  7088. obj40.Shape = Enum.PartType.Ball
  7089. obj40.Parent = obj2
  7090.  
  7091. -- 41 - stretches
  7092. local obj41 = Instance.new("Model")
  7093. obj41.Name = "stretches"
  7094. obj41.Parent = obj1
  7095.  
  7096. -- 42 - stretchlol
  7097. local obj42 = Instance.new("Part")
  7098. obj42.CFrame = CFrame.new(Vector3.new(67.162117, 3.13544774, 6.8847661)) * CFrame.Angles(-2.0021269321442, 1.2287007570267, 1.6869416236877)
  7099. obj42.CanCollide = false
  7100. obj42.Transparency = 1
  7101. obj42.TopSurface = Enum.SurfaceType.Smooth
  7102. obj42.BottomSurface = Enum.SurfaceType.Smooth
  7103. obj42.Material = Enum.Material.SmoothPlastic
  7104. obj42.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  7105. obj42.BrickColor = BrickColor.new("Pastel brown")
  7106. obj42.Friction = 0.30000001192093
  7107. obj42.Shape = Enum.PartType.Ball
  7108. obj42.Name = "stretchlol"
  7109. obj42.Parent = obj41
  7110.  
  7111. -- 43 - stretchlol
  7112. local obj43 = Instance.new("Part")
  7113. obj43.CFrame = CFrame.new(Vector3.new(67.1951675, 3.40412855, 7.69050598)) * CFrame.Angles(-2.0021269321442, 1.2287007570267, 1.6869416236877)
  7114. obj43.CanCollide = false
  7115. obj43.Transparency = 1
  7116. obj43.TopSurface = Enum.SurfaceType.Smooth
  7117. obj43.BottomSurface = Enum.SurfaceType.Smooth
  7118. obj43.Material = Enum.Material.SmoothPlastic
  7119. obj43.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  7120. obj43.BrickColor = BrickColor.new("Pastel brown")
  7121. obj43.Friction = 0.30000001192093
  7122. obj43.Shape = Enum.PartType.Ball
  7123. obj43.Name = "stretchlol"
  7124. obj43.Parent = obj41
  7125.  
  7126. -- 44 - stretchlol
  7127. local obj44 = Instance.new("Part")
  7128. obj44.CFrame = CFrame.new(Vector3.new(67.5038223, 3.48357916, 7.48069382)) * CFrame.Angles(-3.058357000351, 0.5446692109108, 2.5818355083466)
  7129. obj44.CanCollide = false
  7130. obj44.Transparency = 1
  7131. obj44.TopSurface = Enum.SurfaceType.Smooth
  7132. obj44.BottomSurface = Enum.SurfaceType.Smooth
  7133. obj44.Material = Enum.Material.SmoothPlastic
  7134. obj44.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  7135. obj44.BrickColor = BrickColor.new("Pastel brown")
  7136. obj44.Friction = 0.30000001192093
  7137. obj44.Shape = Enum.PartType.Ball
  7138. obj44.Name = "stretchlol"
  7139. obj44.Parent = obj41
  7140.  
  7141. -- 45 - stretchlol
  7142. local obj45 = Instance.new("Part")
  7143. obj45.CFrame = CFrame.new(Vector3.new(67.1641541, 4.12207699, 6.93975687)) * CFrame.Angles(-3.1415927410126, 0.34906616806984, 2.6179955005646)
  7144. obj45.CanCollide = false
  7145. obj45.Transparency = 1
  7146. obj45.TopSurface = Enum.SurfaceType.Smooth
  7147. obj45.BottomSurface = Enum.SurfaceType.Smooth
  7148. obj45.Material = Enum.Material.SmoothPlastic
  7149. obj45.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  7150. obj45.BrickColor = BrickColor.new("Pastel brown")
  7151. obj45.Friction = 0.30000001192093
  7152. obj45.Shape = Enum.PartType.Ball
  7153. obj45.Name = "stretchlol"
  7154. obj45.Parent = obj41
  7155.  
  7156. -- 46 - stretchlol
  7157. local obj46 = Instance.new("Part")
  7158. obj46.CFrame = CFrame.new(Vector3.new(66.8712616, 4.18368626, 7.47166586)) * CFrame.Angles(-3.1415927410126, 0.34906616806984, 2.6179955005646)
  7159. obj46.CanCollide = false
  7160. obj46.Transparency = 1
  7161. obj46.TopSurface = Enum.SurfaceType.Smooth
  7162. obj46.BottomSurface = Enum.SurfaceType.Smooth
  7163. obj46.Material = Enum.Material.SmoothPlastic
  7164. obj46.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  7165. obj46.BrickColor = BrickColor.new("Pastel brown")
  7166. obj46.Friction = 0.30000001192093
  7167. obj46.Shape = Enum.PartType.Ball
  7168. obj46.Name = "stretchlol"
  7169. obj46.Parent = obj41
  7170.  
  7171. -- 47 - stretchlol
  7172. local obj47 = Instance.new("Part")
  7173. obj47.CFrame = CFrame.new(Vector3.new(66.8260345, 4.14528561, 6.81669378)) * CFrame.Angles(-3.1415927410126, 0.34906616806984, 2.6179955005646)
  7174. obj47.CanCollide = false
  7175. obj47.Transparency = 1
  7176. obj47.TopSurface = Enum.SurfaceType.Smooth
  7177. obj47.BottomSurface = Enum.SurfaceType.Smooth
  7178. obj47.Material = Enum.Material.SmoothPlastic
  7179. obj47.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  7180. obj47.BrickColor = BrickColor.new("Pastel brown")
  7181. obj47.Friction = 0.30000001192093
  7182. obj47.Shape = Enum.PartType.Ball
  7183. obj47.Name = "stretchlol"
  7184. obj47.Parent = obj41
  7185.  
  7186. -- 48 - stretchlol
  7187. local obj48 = Instance.new("Part")
  7188. obj48.CFrame = CFrame.new(Vector3.new(66.7104797, 3.88547921, 7.57276678)) * CFrame.Angles(-3.1415927410126, 0.34906616806984, 2.6179955005646)
  7189. obj48.CanCollide = false
  7190. obj48.Transparency = 1
  7191. obj48.TopSurface = Enum.SurfaceType.Smooth
  7192. obj48.BottomSurface = Enum.SurfaceType.Smooth
  7193. obj48.Material = Enum.Material.SmoothPlastic
  7194. obj48.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  7195. obj48.BrickColor = BrickColor.new("Pastel brown")
  7196. obj48.Friction = 0.30000001192093
  7197. obj48.Shape = Enum.PartType.Ball
  7198. obj48.Name = "stretchlol"
  7199. obj48.Parent = obj41
  7200.  
  7201. -- 49 - stretchlol
  7202. local obj49 = Instance.new("Part")
  7203. obj49.CFrame = CFrame.new(Vector3.new(67.0637207, 4.06047773, 7.48850012)) * CFrame.Angles(-3.1415927410126, 0.34906616806984, 2.6179955005646)
  7204. obj49.CanCollide = false
  7205. obj49.Transparency = 1
  7206. obj49.TopSurface = Enum.SurfaceType.Smooth
  7207. obj49.BottomSurface = Enum.SurfaceType.Smooth
  7208. obj49.Material = Enum.Material.SmoothPlastic
  7209. obj49.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  7210. obj49.BrickColor = BrickColor.new("Pastel brown")
  7211. obj49.Friction = 0.30000001192093
  7212. obj49.Shape = Enum.PartType.Ball
  7213. obj49.Name = "stretchlol"
  7214. obj49.Parent = obj41
  7215.  
  7216. -- 50 - stretchlol
  7217. local obj50 = Instance.new("Part")
  7218. obj50.CFrame = CFrame.new(Vector3.new(66.7165604, 3.84708691, 6.77684498)) * CFrame.Angles(-3.1415927410126, 0.34906616806984, 2.6179955005646)
  7219. obj50.CanCollide = false
  7220. obj50.Transparency = 1
  7221. obj50.TopSurface = Enum.SurfaceType.Smooth
  7222. obj50.BottomSurface = Enum.SurfaceType.Smooth
  7223. obj50.Material = Enum.Material.SmoothPlastic
  7224. obj50.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  7225. obj50.BrickColor = BrickColor.new("Pastel brown")
  7226. obj50.Friction = 0.30000001192093
  7227. obj50.Shape = Enum.PartType.Ball
  7228. obj50.Name = "stretchlol"
  7229. obj50.Parent = obj41
  7230.  
  7231. -- 51 - stretchlol
  7232. local obj51 = Instance.new("Part")
  7233. obj51.CFrame = CFrame.new(Vector3.new(66.9846878, 4.29528904, 7.14047909)) * CFrame.Angles(-3.1415927410126, 0.34906616806984, 2.6179955005646)
  7234. obj51.CanCollide = false
  7235. obj51.Transparency = 1
  7236. obj51.TopSurface = Enum.SurfaceType.Smooth
  7237. obj51.BottomSurface = Enum.SurfaceType.Smooth
  7238. obj51.Material = Enum.Material.SmoothPlastic
  7239. obj51.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  7240. obj51.BrickColor = BrickColor.new("Pastel brown")
  7241. obj51.Friction = 0.30000001192093
  7242. obj51.Shape = Enum.PartType.Ball
  7243. obj51.Name = "stretchlol"
  7244. obj51.Parent = obj41
  7245.  
  7246. -- 52 - stretchlol
  7247. local obj52 = Instance.new("Part")
  7248. obj52.CFrame = CFrame.new(Vector3.new(66.868927, 3.45350599, 6.82578087)) * CFrame.Angles(-2.4803557395935, 1.123170375824, 2.1302044391632)
  7249. obj52.CanCollide = false
  7250. obj52.Transparency = 1
  7251. obj52.TopSurface = Enum.SurfaceType.Smooth
  7252. obj52.BottomSurface = Enum.SurfaceType.Smooth
  7253. obj52.Material = Enum.Material.SmoothPlastic
  7254. obj52.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  7255. obj52.BrickColor = BrickColor.new("Pastel brown")
  7256. obj52.Friction = 0.30000001192093
  7257. obj52.Shape = Enum.PartType.Ball
  7258. obj52.Name = "stretchlol"
  7259. obj52.Parent = obj41
  7260.  
  7261. -- 53 - stretchlol
  7262. local obj53 = Instance.new("Part")
  7263. obj53.CFrame = CFrame.new(Vector3.new(67.287262, 3.10603261, 7.30382156)) * CFrame.Angles(9.1487750708552e-09, -0.34906616806984, -1.0471986532211)
  7264. obj53.CanCollide = false
  7265. obj53.Transparency = 1
  7266. obj53.TopSurface = Enum.SurfaceType.Smooth
  7267. obj53.BottomSurface = Enum.SurfaceType.Smooth
  7268. obj53.Material = Enum.Material.SmoothPlastic
  7269. obj53.Size = Vector3.new(1.79999995, 1.04999995, 1.04999995)
  7270. obj53.BrickColor = BrickColor.new("Pastel brown")
  7271. obj53.Friction = 0.30000001192093
  7272. obj53.Shape = Enum.PartType.Cylinder
  7273. obj53.Name = "stretchlol"
  7274. obj53.Parent = obj41
  7275.  
  7276. -- 54 - stretchlol
  7277. local obj54 = Instance.new("Part")
  7278. obj54.CFrame = CFrame.new(Vector3.new(66.4686813, 4.02028799, 7.16550922)) * CFrame.Angles(-3.1415927410126, 0.34906616806984, 2.6179955005646)
  7279. obj54.CanCollide = false
  7280. obj54.Transparency = 1
  7281. obj54.TopSurface = Enum.SurfaceType.Smooth
  7282. obj54.BottomSurface = Enum.SurfaceType.Smooth
  7283. obj54.Material = Enum.Material.SmoothPlastic
  7284. obj54.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  7285. obj54.BrickColor = BrickColor.new("Pastel brown")
  7286. obj54.Friction = 0.30000001192093
  7287. obj54.Shape = Enum.PartType.Ball
  7288. obj54.Name = "stretchlol"
  7289. obj54.Parent = obj41
  7290.  
  7291. -- 55 - stretchlol
  7292. local obj55 = Instance.new("Part")
  7293. obj55.CFrame = CFrame.new(Vector3.new(66.6615219, 4.17028332, 7.3953228)) * CFrame.Angles(-3.1415927410126, 0.34906616806984, 2.6179955005646)
  7294. obj55.CanCollide = false
  7295. obj55.Transparency = 1
  7296. obj55.TopSurface = Enum.SurfaceType.Smooth
  7297. obj55.BottomSurface = Enum.SurfaceType.Smooth
  7298. obj55.Material = Enum.Material.SmoothPlastic
  7299. obj55.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  7300. obj55.BrickColor = BrickColor.new("Pastel brown")
  7301. obj55.Friction = 0.30000001192093
  7302. obj55.Shape = Enum.PartType.Ball
  7303. obj55.Name = "stretchlol"
  7304. obj55.Parent = obj41
  7305.  
  7306. -- 56 - stretchlol
  7307. local obj56 = Instance.new("Part")
  7308. obj56.CFrame = CFrame.new(Vector3.new(66.753746, 3.12474751, 7.32704115)) * CFrame.Angles(-2.0021269321442, 1.2287007570267, 1.6869416236877)
  7309. obj56.CanCollide = false
  7310. obj56.Transparency = 1
  7311. obj56.TopSurface = Enum.SurfaceType.Smooth
  7312. obj56.BottomSurface = Enum.SurfaceType.Smooth
  7313. obj56.Material = Enum.Material.SmoothPlastic
  7314. obj56.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  7315. obj56.BrickColor = BrickColor.new("Pastel brown")
  7316. obj56.Friction = 0.30000001192093
  7317. obj56.Shape = Enum.PartType.Ball
  7318. obj56.Name = "stretchlol"
  7319. obj56.Parent = obj41
  7320.  
  7321. -- 57 - stretchlol
  7322. local obj57 = Instance.new("Part")
  7323. obj57.CFrame = CFrame.new(Vector3.new(67.2306061, 4.11047649, 7.28319883)) * CFrame.Angles(-3.1415927410126, 0.34906616806984, 2.6179955005646)
  7324. obj57.CanCollide = false
  7325. obj57.Transparency = 1
  7326. obj57.TopSurface = Enum.SurfaceType.Smooth
  7327. obj57.BottomSurface = Enum.SurfaceType.Smooth
  7328. obj57.Material = Enum.Material.SmoothPlastic
  7329. obj57.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  7330. obj57.BrickColor = BrickColor.new("Pastel brown")
  7331. obj57.Friction = 0.30000001192093
  7332. obj57.Shape = Enum.PartType.Ball
  7333. obj57.Name = "stretchlol"
  7334. obj57.Parent = obj41
  7335.  
  7336. -- 58 - stretchlol
  7337. local obj58 = Instance.new("Part")
  7338. obj58.CFrame = CFrame.new(Vector3.new(67.0756683, 3.79114079, 7.63403416)) * CFrame.Angles(-2.4803557395935, 1.123170375824, 2.1302044391632)
  7339. obj58.CanCollide = false
  7340. obj58.Transparency = 1
  7341. obj58.TopSurface = Enum.SurfaceType.Smooth
  7342. obj58.BottomSurface = Enum.SurfaceType.Smooth
  7343. obj58.Material = Enum.Material.SmoothPlastic
  7344. obj58.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  7345. obj58.BrickColor = BrickColor.new("Pastel brown")
  7346. obj58.Friction = 0.30000001192093
  7347. obj58.Shape = Enum.PartType.Ball
  7348. obj58.Name = "stretchlol"
  7349. obj58.Parent = obj41
  7350.  
  7351. -- 59 - stretchlol
  7352. local obj59 = Instance.new("Part")
  7353. obj59.CFrame = CFrame.new(Vector3.new(66.5005493, 3.73548079, 7.38994217)) * CFrame.Angles(-3.1415927410126, 0.34906616806984, 2.6179955005646)
  7354. obj59.CanCollide = false
  7355. obj59.Transparency = 1
  7356. obj59.TopSurface = Enum.SurfaceType.Smooth
  7357. obj59.BottomSurface = Enum.SurfaceType.Smooth
  7358. obj59.Material = Enum.Material.SmoothPlastic
  7359. obj59.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  7360. obj59.BrickColor = BrickColor.new("Pastel brown")
  7361. obj59.Friction = 0.30000001192093
  7362. obj59.Shape = Enum.PartType.Ball
  7363. obj59.Name = "stretchlol"
  7364. obj59.Parent = obj41
  7365.  
  7366. -- 60 - stretchlol
  7367. local obj60 = Instance.new("Part")
  7368. obj60.CFrame = CFrame.new(Vector3.new(67.6487045, 3.41425848, 7.1938138)) * CFrame.Angles(-2.0021269321442, 1.2287007570267, 1.6869416236877)
  7369. obj60.CanCollide = false
  7370. obj60.Transparency = 1
  7371. obj60.TopSurface = Enum.SurfaceType.Smooth
  7372. obj60.BottomSurface = Enum.SurfaceType.Smooth
  7373. obj60.Material = Enum.Material.SmoothPlastic
  7374. obj60.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  7375. obj60.BrickColor = BrickColor.new("Pastel brown")
  7376. obj60.Friction = 0.30000001192093
  7377. obj60.Shape = Enum.PartType.Ball
  7378. obj60.Name = "stretchlol"
  7379. obj60.Parent = obj41
  7380.  
  7381. -- 61 - stretchlol
  7382. local obj61 = Instance.new("Part")
  7383. obj61.CFrame = CFrame.new(Vector3.new(67.3677139, 3.85357118, 7.33310223)) * CFrame.Angles(-3.1415927410126, 0.34906616806984, 2.6179955005646)
  7384. obj61.CanCollide = false
  7385. obj61.Transparency = 1
  7386. obj61.TopSurface = Enum.SurfaceType.Smooth
  7387. obj61.BottomSurface = Enum.SurfaceType.Smooth
  7388. obj61.Material = Enum.Material.SmoothPlastic
  7389. obj61.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  7390. obj61.BrickColor = BrickColor.new("Pastel brown")
  7391. obj61.Friction = 0.30000001192093
  7392. obj61.Shape = Enum.PartType.Ball
  7393. obj61.Name = "stretchlol"
  7394. obj61.Parent = obj41
  7395.  
  7396. -- 62 - stretchlol
  7397. local obj62 = Instance.new("Part")
  7398. obj62.CFrame = CFrame.new(Vector3.new(66.6352844, 3.40356588, 7.06651878)) * CFrame.Angles(-3.1415927410126, 0.34906616806984, 2.6179955005646)
  7399. obj62.CanCollide = false
  7400. obj62.Transparency = 1
  7401. obj62.TopSurface = Enum.SurfaceType.Smooth
  7402. obj62.BottomSurface = Enum.SurfaceType.Smooth
  7403. obj62.Material = Enum.Material.SmoothPlastic
  7404. obj62.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  7405. obj62.BrickColor = BrickColor.new("Pastel brown")
  7406. obj62.Friction = 0.30000001192093
  7407. obj62.Shape = Enum.PartType.Ball
  7408. obj62.Name = "stretchlol"
  7409. obj62.Parent = obj41
  7410.  
  7411. -- 63 - stretchlol
  7412. local obj63 = Instance.new("Part")
  7413. obj63.CFrame = CFrame.new(Vector3.new(66.7236328, 4.28189754, 7.20509195)) * CFrame.Angles(-3.1415927410126, 0.34906616806984, 2.6179955005646)
  7414. obj63.CanCollide = false
  7415. obj63.Transparency = 1
  7416. obj63.TopSurface = Enum.SurfaceType.Smooth
  7417. obj63.BottomSurface = Enum.SurfaceType.Smooth
  7418. obj63.Material = Enum.Material.SmoothPlastic
  7419. obj63.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  7420. obj63.BrickColor = BrickColor.new("Pastel brown")
  7421. obj63.Friction = 0.30000001192093
  7422. obj63.Shape = Enum.PartType.Ball
  7423. obj63.Name = "stretchlol"
  7424. obj63.Parent = obj41
  7425.  
  7426. -- 64 - stretchlol
  7427. local obj64 = Instance.new("Part")
  7428. obj64.CFrame = CFrame.new(Vector3.new(66.5712891, 4.02028799, 6.8835969)) * CFrame.Angles(-3.1415927410126, 0.34906616806984, 2.6179955005646)
  7429. obj64.CanCollide = false
  7430. obj64.Transparency = 1
  7431. obj64.TopSurface = Enum.SurfaceType.Smooth
  7432. obj64.BottomSurface = Enum.SurfaceType.Smooth
  7433. obj64.Material = Enum.Material.SmoothPlastic
  7434. obj64.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  7435. obj64.BrickColor = BrickColor.new("Pastel brown")
  7436. obj64.Friction = 0.30000001192093
  7437. obj64.Shape = Enum.PartType.Ball
  7438. obj64.Name = "stretchlol"
  7439. obj64.Parent = obj41
  7440.  
  7441. -- 65 - stretchlol
  7442. local obj65 = Instance.new("Part")
  7443. obj65.CFrame = CFrame.new(Vector3.new(66.4981842, 3.66047978, 7.01661682)) * CFrame.Angles(-3.1415927410126, 0.34906616806984, 2.6179955005646)
  7444. obj65.CanCollide = false
  7445. obj65.Transparency = 1
  7446. obj65.TopSurface = Enum.SurfaceType.Smooth
  7447. obj65.BottomSurface = Enum.SurfaceType.Smooth
  7448. obj65.Material = Enum.Material.SmoothPlastic
  7449. obj65.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  7450. obj65.BrickColor = BrickColor.new("Pastel brown")
  7451. obj65.Friction = 0.30000001192093
  7452. obj65.Shape = Enum.PartType.Ball
  7453. obj65.Name = "stretchlol"
  7454. obj65.Parent = obj41
  7455.  
  7456. -- 66 - stretchlol
  7457. local obj66 = Instance.new("Part")
  7458. obj66.CFrame = CFrame.new(Vector3.new(66.7920303, 4.28189754, 7.01715183)) * CFrame.Angles(-3.1415927410126, 0.34906616806984, 2.6179955005646)
  7459. obj66.CanCollide = false
  7460. obj66.Transparency = 1
  7461. obj66.TopSurface = Enum.SurfaceType.Smooth
  7462. obj66.BottomSurface = Enum.SurfaceType.Smooth
  7463. obj66.Material = Enum.Material.SmoothPlastic
  7464. obj66.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  7465. obj66.BrickColor = BrickColor.new("Pastel brown")
  7466. obj66.Friction = 0.30000001192093
  7467. obj66.Shape = Enum.PartType.Ball
  7468. obj66.Name = "stretchlol"
  7469. obj66.Parent = obj41
  7470.  
  7471. -- 67 - stretchlol
  7472. local obj67 = Instance.new("Part")
  7473. obj67.CFrame = CFrame.new(Vector3.new(66.5950623, 4.18188763, 7.05188084)) * CFrame.Angles(-3.1415927410126, 0.34906616806984, 2.6179955005646)
  7474. obj67.CanCollide = false
  7475. obj67.Transparency = 1
  7476. obj67.TopSurface = Enum.SurfaceType.Smooth
  7477. obj67.BottomSurface = Enum.SurfaceType.Smooth
  7478. obj67.Material = Enum.Material.SmoothPlastic
  7479. obj67.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  7480. obj67.BrickColor = BrickColor.new("Pastel brown")
  7481. obj67.Friction = 0.30000001192093
  7482. obj67.Shape = Enum.PartType.Ball
  7483. obj67.Name = "stretchlol"
  7484. obj67.Parent = obj41
  7485.  
  7486. -- 68 - stretchlol
  7487. local obj68 = Instance.new("Part")
  7488. obj68.CFrame = CFrame.new(Vector3.new(67.4115601, 3.73646879, 7.01420689)) * CFrame.Angles(-2.4803557395935, 1.123170375824, 2.1302044391632)
  7489. obj68.CanCollide = false
  7490. obj68.Transparency = 1
  7491. obj68.TopSurface = Enum.SurfaceType.Smooth
  7492. obj68.BottomSurface = Enum.SurfaceType.Smooth
  7493. obj68.Material = Enum.Material.SmoothPlastic
  7494. obj68.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  7495. obj68.BrickColor = BrickColor.new("Pastel brown")
  7496. obj68.Friction = 0.30000001192093
  7497. obj68.Shape = Enum.PartType.Ball
  7498. obj68.Name = "stretchlol"
  7499. obj68.Parent = obj41
  7500.  
  7501. -- 69 - stretchlol
  7502. local obj69 = Instance.new("Part")
  7503. obj69.CFrame = CFrame.new(Vector3.new(66.8643951, 3.88548112, 7.14990711)) * CFrame.Angles(-3.1415927410126, 0.34906616806984, 2.6179955005646)
  7504. obj69.CanCollide = false
  7505. obj69.Transparency = 1
  7506. obj69.TopSurface = Enum.SurfaceType.Smooth
  7507. obj69.BottomSurface = Enum.SurfaceType.Smooth
  7508. obj69.Material = Enum.Material.SmoothPlastic
  7509. obj69.Size = Vector3.new(1.04999995, 1.04999995, 1.04999995)
  7510. obj69.BrickColor = BrickColor.new("Pastel brown")
  7511. obj69.Friction = 0.30000001192093
  7512. obj69.Shape = Enum.PartType.Ball
  7513. obj69.Name = "stretchlol"
  7514. obj69.Parent = obj41
  7515.  
  7516. -- 70 - stretchlol
  7517. local obj70 = Instance.new("Part")
  7518. obj70.CFrame = CFrame.new(Vector3.new(67.4108353, 3.29388237, 6.88037777)) * CFrame.Angles(-3.058357000351, 0.5446692109108, 2.5818355083466)
  7519. obj70.CanCollide = false
  7520. obj70.Transparency = 1
  7521. obj70.TopSurface = Enum.SurfaceType.Smooth
  7522. obj70.BottomSurface = Enum.SurfaceType.Smooth
  7523. obj70.Material = Enum.Material.SmoothPlastic
  7524. obj70.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  7525. obj70.BrickColor = BrickColor.new("Pastel brown")
  7526. obj70.Friction = 0.30000001192093
  7527. obj70.Shape = Enum.PartType.Ball
  7528. obj70.Name = "stretchlol"
  7529. obj70.Parent = obj41
  7530.  
  7531. -- 71 - stretchlol
  7532. local obj71 = Instance.new("Part")
  7533. obj71.CFrame = CFrame.new(Vector3.new(67.1960983, 3.65356374, 6.79175806)) * CFrame.Angles(-3.1415927410126, 0.34906616806984, 2.6179955005646)
  7534. obj71.CanCollide = false
  7535. obj71.Transparency = 1
  7536. obj71.TopSurface = Enum.SurfaceType.Smooth
  7537. obj71.BottomSurface = Enum.SurfaceType.Smooth
  7538. obj71.Material = Enum.Material.SmoothPlastic
  7539. obj71.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  7540. obj71.BrickColor = BrickColor.new("Pastel brown")
  7541. obj71.Friction = 0.30000001192093
  7542. obj71.Shape = Enum.PartType.Ball
  7543. obj71.Name = "stretchlol"
  7544. obj71.Parent = obj41
  7545.  
  7546. -- 72 - stretchlol
  7547. local obj72 = Instance.new("Part")
  7548. obj72.CFrame = CFrame.new(Vector3.new(66.944519, 3.22988653, 7.64748716)) * CFrame.Angles(-3.058357000351, 0.5446692109108, 2.5818355083466)
  7549. obj72.CanCollide = false
  7550. obj72.Transparency = 1
  7551. obj72.TopSurface = Enum.SurfaceType.Smooth
  7552. obj72.BottomSurface = Enum.SurfaceType.Smooth
  7553. obj72.Material = Enum.Material.SmoothPlastic
  7554. obj72.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  7555. obj72.BrickColor = BrickColor.new("Pastel brown")
  7556. obj72.Friction = 0.30000001192093
  7557. obj72.Shape = Enum.PartType.Ball
  7558. obj72.Name = "stretchlol"
  7559. obj72.Parent = obj41
  7560.  
  7561. -- 73 - stretchlol
  7562. local obj73 = Instance.new("Part")
  7563. obj73.CFrame = CFrame.new(Vector3.new(66.851532, 3.04020095, 7.04717398)) * CFrame.Angles(-3.058357000351, 0.5446692109108, 2.5818355083466)
  7564. obj73.CanCollide = false
  7565. obj73.Transparency = 1
  7566. obj73.TopSurface = Enum.SurfaceType.Smooth
  7567. obj73.BottomSurface = Enum.SurfaceType.Smooth
  7568. obj73.Material = Enum.Material.SmoothPlastic
  7569. obj73.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  7570. obj73.BrickColor = BrickColor.new("Pastel brown")
  7571. obj73.Friction = 0.30000001192093
  7572. obj73.Shape = Enum.PartType.Ball
  7573. obj73.Name = "stretchlol"
  7574. obj73.Parent = obj41
  7575.  
  7576. -- 74 - stretchlol
  7577. local obj74 = Instance.new("Part")
  7578. obj74.CFrame = CFrame.new(Vector3.new(66.5551376, 3.48395109, 7.33871603)) * CFrame.Angles(-2.4803557395935, 1.123170375824, 2.1302044391632)
  7579. obj74.CanCollide = false
  7580. obj74.Transparency = 1
  7581. obj74.TopSurface = Enum.SurfaceType.Smooth
  7582. obj74.BottomSurface = Enum.SurfaceType.Smooth
  7583. obj74.Material = Enum.Material.SmoothPlastic
  7584. obj74.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  7585. obj74.BrickColor = BrickColor.new("Pastel brown")
  7586. obj74.Friction = 0.30000001192093
  7587. obj74.Shape = Enum.PartType.Ball
  7588. obj74.Name = "stretchlol"
  7589. obj74.Parent = obj41
  7590.  
  7591. -- 75 - stretchlol
  7592. local obj75 = Instance.new("Part")
  7593. obj75.CFrame = CFrame.new(Vector3.new(66.8069, 3.60357046, 7.60786104)) * CFrame.Angles(-3.1415927410126, 0.34906616806984, 2.6179955005646)
  7594. obj75.CanCollide = false
  7595. obj75.Transparency = 1
  7596. obj75.TopSurface = Enum.SurfaceType.Smooth
  7597. obj75.BottomSurface = Enum.SurfaceType.Smooth
  7598. obj75.Material = Enum.Material.SmoothPlastic
  7599. obj75.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  7600. obj75.BrickColor = BrickColor.new("Pastel brown")
  7601. obj75.Friction = 0.30000001192093
  7602. obj75.Shape = Enum.PartType.Ball
  7603. obj75.Name = "stretchlol"
  7604. obj75.Parent = obj41
  7605.  
  7606. -- 76 - stretchlol
  7607. local obj76 = Instance.new("Part")
  7608. obj76.CFrame = CFrame.new(Vector3.new(67.0182953, 3.88547921, 6.72704411)) * CFrame.Angles(-3.1415927410126, 0.34906616806984, 2.6179955005646)
  7609. obj76.CanCollide = false
  7610. obj76.Transparency = 1
  7611. obj76.TopSurface = Enum.SurfaceType.Smooth
  7612. obj76.BottomSurface = Enum.SurfaceType.Smooth
  7613. obj76.Material = Enum.Material.SmoothPlastic
  7614. obj76.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  7615. obj76.BrickColor = BrickColor.new("Pastel brown")
  7616. obj76.Friction = 0.30000001192093
  7617. obj76.Shape = Enum.PartType.Ball
  7618. obj76.Name = "stretchlol"
  7619. obj76.Parent = obj41
  7620. obj1.PrimaryPart = obj4
  7621.  
  7622. local stretches = obj41:GetChildren()
  7623. for i,v in pairs(stretches) do
  7624. v.Anchored = true
  7625. v.Parent = obj1
  7626. end
  7627. for i,v in pairs(obj2:GetChildren()) do
  7628. v.Anchored = true
  7629. v.Parent = obj1
  7630. end
  7631. obj2:Destroy()
  7632. obj41:Destroy()
  7633.  
  7634. local previous = nil
  7635. for i,v in pairs(obj1:GetChildren()) do
  7636. if v:IsA('BasePart') then
  7637. if previous then
  7638. local weld = Instance.new('Weld',v)
  7639. weld.Part0 = v
  7640. weld.Part1 = previous
  7641. weld.C0 = v.CFrame:inverse() * previous.CFrame
  7642. previous.Anchored = false
  7643. previous.CanCollide = false
  7644. local vee = v
  7645. weld.AncestryChanged:connect(function(mez,par)
  7646. wait()
  7647. weld.Parent = vee
  7648. end)
  7649. end
  7650. previous = v
  7651. end
  7652. end
  7653. previous.Anchored = false
  7654. previous.CanCollide = false
  7655. obj1:SetPrimaryPartCFrame(handle.CFrame*CFrame.Angles(0,math.rad(180),0)+Vector3.new(0,100,0))
  7656. -- 2 - Part
  7657. local ree = Instance.new("Part")
  7658. ree.CFrame = CFrame.new(Vector3.new(50.5, 141, 5.5))
  7659. ree.Transparency = 0.80000001192093
  7660. ree.Material = Enum.Material.Neon
  7661. ree.CFrame = CFrame.new(obj4.Position)
  7662. ree.Size = Vector3.new(5, math.huge, 5)
  7663. ree.BrickColor = BrickColor.new("New Yeller")
  7664. ree.Friction = 0.30000001192093
  7665. ree.Shape = Enum.PartType.Block
  7666. ree.Parent = handle
  7667.  
  7668. -- 3 - Mesh
  7669. local ree2 = Instance.new("CylinderMesh")
  7670. ree2.Parent = ree
  7671. local thing = Instance.new('BodyPosition',obj9)
  7672. local thing2 = Instance.new('BodyPosition',ree)
  7673. thing2.P = 100000
  7674. thing2.MaxForce = Vector3.new(math.huge,math.huge,math.huge)
  7675. thing.MaxForce = Vector3.new(10000,10000,10000)
  7676. for i=1,100 do
  7677. thing2.Position = obj4.Position
  7678. 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))
  7679. thing.Position = handle.Position+(handle.CFrame.rightVector*0.5)
  7680. wait()
  7681. end
  7682. thing:Destroy()
  7683. local lmfao = Instance.new('Weld',obj4)
  7684. lmfao.C0 = CFrame.new(2.5,0.2,0)*CFrame.Angles(0,math.rad(180),0)
  7685. lmfao.Part0 = obj4
  7686. lmfao.Part1 = handle
  7687. ree:Destroy()
  7688. working = false
  7689. end
  7690.  
  7691. function katanamode()
  7692. blademode = "katana"
  7693. -- 1 - weeb shit
  7694. local weebshit1 = handle
  7695.  
  7696. -- 16 - top cap
  7697. local weebshit16 = Instance.new("Part")
  7698. weebshit16.CFrame = CFrame.new(Vector3.new(206.400146, 11.5499945, 5.00058556)) * CFrame.Angles(-3.1415927410126, 0, 1.5707963705063)
  7699. weebshit16.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  7700. weebshit16.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  7701. weebshit16.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  7702. weebshit16.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  7703. weebshit16.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  7704. weebshit16.Size = Vector3.new(0.1, 0.05,0.05) --0.65, 0.65
  7705. weebshit16.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  7706. weebshit16.Anchored = false
  7707. weebshit16.BrickColor = BrickColor.new("Really black")
  7708. weebshit16.Friction = 0.30000001192093
  7709. weebshit16.Shape = Enum.PartType.Cylinder
  7710. weebshit16.Name = "top cap"
  7711. weebshit16.Parent = weebshit1
  7712. local weld = Instance.new('Weld',weebshit16)
  7713. weld.Part0 = weebshit16
  7714. weld.Part1 = handle
  7715. weld.C1 = CFrame.new(0.6, 0, 0, 1.00000048, 0, 0, 0, 1, 0, 0, 0, 1.00000048)
  7716. --weld,part,endsize,endpos,amntime
  7717. 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)
  7718.  
  7719. -- 8 - blade
  7720. local weebshit8 = Instance.new("Part")
  7721. weebshit8.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  7722. weebshit8.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  7723. weebshit8.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  7724. weebshit8.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  7725. weebshit8.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  7726. weebshit8.Material = Enum.Material.Metal
  7727. weebshit8.Size = Vector3.new(0.23,0.05, 0.1)
  7728. weebshit8.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  7729. weebshit8.Anchored = false
  7730. weebshit8.BrickColor = BrickColor.new("Dark stone grey")
  7731. weebshit8.Friction = 0.30000001192093
  7732. weebshit8.Shape = Enum.PartType.Block
  7733. weebshit8.Name = "blade"
  7734. weebshit8.Parent = weebshit1
  7735. weebshit8:BreakJoints()
  7736. local bld1 = weebshit8
  7737. local weld2 = Instance.new('Weld',weebshit8)
  7738. weld2.Part0 = weebshit8
  7739. weld2.Part1 = handle
  7740. weld2.C1 = CFrame.new(0.75, 0, 0) * CFrame.Angles(math.rad(180), 0, math.rad(-90))
  7741. local coru=coroutine.wrap(function()
  7742. 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)
  7743. end)
  7744. coru()
  7745.  
  7746. -- 9 - blade
  7747. local weebshit9 = Instance.new("Part")
  7748. weebshit9.CFrame = CFrame.new(Vector3.new(206.475388, 13.3372736, 5.00158167)) * CFrame.Angles(-0, 0, 0.052359949797392)
  7749. weebshit9.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  7750. weebshit9.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  7751. weebshit9.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  7752. weebshit9.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  7753. weebshit9.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  7754. weebshit9.Material = Enum.Material.Metal
  7755. weebshit9.Size = Vector3.new(0.100000009, 0.05, 0.0500000007)
  7756. weebshit9.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  7757. weebshit9.Anchored = false
  7758. weebshit9.BrickColor = BrickColor.new("Pearl")
  7759. weebshit9.Friction = 0.30000001192093
  7760. weebshit9.Shape = Enum.PartType.Block
  7761. weebshit9.Name = "blade"
  7762. weebshit9.Parent = weebshit8
  7763. local bld2 = weebshit9
  7764. local weld3 = Instance.new('Weld',weebshit9)
  7765. weld3.Part0 = weebshit9
  7766. weld3.Part1 = weebshit8
  7767. weld3.C1 = CFrame.new(0.11, 0, 0) * CFrame.Angles(0, 0, 0)
  7768. grow(weld3,weebshit9,Vector3.new(0.100000009, 1.17, 0.0500000007),CFrame.new(0.11, 0, 0) * CFrame.Angles(0, 0, 0),0.05)
  7769. -- 10 - blade
  7770. local weebshit10 = Instance.new("Part")
  7771. weebshit10.CFrame = CFrame.new(Vector3.new(206.26973, 14.458313, 5)) * CFrame.Angles(-0, 0, 0.10472027212381)
  7772. weebshit10.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  7773. weebshit10.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  7774. weebshit10.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  7775. weebshit10.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  7776. weebshit10.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  7777. weebshit10.Material = Enum.Material.Metal
  7778. weebshit10.Size = Vector3.new(0.229999945, 0.05, 0.100000009)
  7779. weebshit10.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  7780. weebshit10.Anchored = false
  7781. weebshit10.BrickColor = BrickColor.new("Dark stone grey")
  7782. weebshit10.Friction = 0.30000001192093
  7783. weebshit10.Shape = Enum.PartType.Block
  7784. weebshit10.Name = "blade"
  7785. weebshit10.Parent = weebshit1
  7786. local weld4 = Instance.new('Weld',weebshit10)
  7787. weld4.Part0 = weebshit10
  7788. weld4.Part1 = weebshit8
  7789. 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)
  7790. local coru=coroutine.wrap(function()
  7791. 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)
  7792. end)
  7793. coru()
  7794. -- 11 - blade
  7795. local weebshit11 = Instance.new("Part")
  7796. weebshit11.CFrame = CFrame.new(Vector3.new(206.384079, 14.4703341, 5.00158167)) * CFrame.Angles(-0, 0, 0.10472027212381)
  7797. weebshit11.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  7798. weebshit11.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  7799. weebshit11.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  7800. weebshit11.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  7801. weebshit11.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  7802. weebshit11.Material = Enum.Material.Metal
  7803. weebshit11.Size = Vector3.new(0.100000009, 0.05, 0.0500000007)
  7804. weebshit11.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  7805. weebshit11.Anchored = false
  7806. weebshit11.BrickColor = BrickColor.new("Pearl")
  7807. weebshit11.Friction = 0.30000001192093
  7808. weebshit11.Shape = Enum.PartType.Block
  7809. weebshit11.Name = "blade"
  7810. weebshit11.Parent = weebshit1
  7811. local weld5 = Instance.new('Weld',weebshit10)
  7812. weld5.Part0 = weebshit10
  7813. weld5.Part1 = weebshit11
  7814. weld5.C1 = CFrame.new(0.11, 0, 0) * CFrame.Angles(0, 0, 0)
  7815. grow(weld5,weebshit11,Vector3.new(0.100000009, 1.16999841, 0.0500000007),CFrame.new(-0.11, 0, 0) * CFrame.Angles(0, 0, 0),0.1)
  7816.  
  7817. -- 15 - blade
  7818. local weebshit15 = Instance.new("Part")
  7819. weebshit15.CFrame = CFrame.new(Vector3.new(206.36055, 13.3312511, 5)) * CFrame.Angles(-0, 0, 0.052359949797392)
  7820. weebshit15.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  7821. weebshit15.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  7822. weebshit15.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  7823. weebshit15.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  7824. weebshit15.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  7825. weebshit15.Material = Enum.Material.Metal
  7826. weebshit15.Size = Vector3.new(0.229999945, 0.55, 0.100000009)
  7827. weebshit15.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  7828. weebshit15.Anchored = false
  7829. weebshit15.BrickColor = BrickColor.new("Dark stone grey")
  7830. weebshit15.Friction = 0.30000001192093
  7831. weebshit15.Shape = Enum.PartType.Block
  7832. weebshit15.Name = "blade"
  7833. weebshit15.Parent = weebshit1
  7834. local weld6 = Instance.new('Weld',weebshit15)
  7835. weld6.Part0 = weebshit15
  7836. weld6.Part1 = weebshit10
  7837. 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)
  7838. local coru=coroutine.wrap(function()
  7839. 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)
  7840. end)
  7841. coru()
  7842.  
  7843. -- 12 - blade
  7844. local weebshit12 = Instance.new("Part")
  7845. weebshit12.CFrame = CFrame.new(Vector3.new(206.50705, 12.1849957, 5.00158167)) * CFrame.Angles(-0, 0, -0)
  7846. weebshit12.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  7847. weebshit12.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  7848. weebshit12.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  7849. weebshit12.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  7850. weebshit12.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  7851. weebshit12.Material = Enum.Material.Metal
  7852. weebshit12.Size = Vector3.new(0.100000009, 0.05, 0.0500000007)
  7853. weebshit12.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  7854. weebshit12.Anchored = false
  7855. weebshit12.BrickColor = BrickColor.new("Pearl")
  7856. weebshit12.Friction = 0.30000001192093
  7857. weebshit12.Shape = Enum.PartType.Block
  7858. weebshit12.Name = "blade"
  7859. weebshit12.Parent = weebshit1
  7860. local weld7 = Instance.new('Weld',weebshit12)
  7861. weld7.Part0 = weebshit12
  7862. weld7.Part1 = weebshit15
  7863. weld7.C1 = CFrame.new(0.11, 0, 0) * CFrame.Angles(0, 0, 0)
  7864. grow(weld7,weebshit12,Vector3.new(0.100000009, 1.16999841, 0.0500000007),CFrame.new(0.11, 0, 0) * CFrame.Angles(0, 0, 0),0.1)
  7865.  
  7866. -- 14 - blade
  7867. local weebshit14 = Instance.new("Part")
  7868. weebshit14.CFrame = CFrame.new(Vector3.new(206.155365, 15.3628922, 5)) * CFrame.Angles(-0, 0, 0.15708021819592)
  7869. weebshit14.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  7870. weebshit14.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  7871. weebshit14.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  7872. weebshit14.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  7873. weebshit14.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  7874. weebshit14.Material = Enum.Material.Metal
  7875. weebshit14.Size = Vector3.new(0.229999945, 0.05, 0.100000009)
  7876. weebshit14.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  7877. weebshit14.Anchored = false
  7878. weebshit14.BrickColor = BrickColor.new("Dark stone grey")
  7879. weebshit14.Friction = 0.30000001192093
  7880. weebshit14.Shape = Enum.PartType.Block
  7881. weebshit14.Name = "blade"
  7882. weebshit14.Parent = weebshit1
  7883. local weld8 = Instance.new('Weld',weebshit14)
  7884. weld8.Part0 = weebshit14
  7885. weld8.Part1 = weebshit15
  7886. 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)
  7887. local coru=coroutine.wrap(function()
  7888. 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)
  7889. end)
  7890. coru()
  7891.  
  7892. -- 13 - blade
  7893. local weebshit13 = Instance.new("Part")
  7894. weebshit13.CFrame = CFrame.new(Vector3.new(206.268967, 15.3808832, 5.00158167)) * CFrame.Angles(-0, 0, 0.15708021819592)
  7895. weebshit13.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  7896. weebshit13.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  7897. weebshit13.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  7898. weebshit13.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  7899. weebshit13.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  7900. weebshit13.Material = Enum.Material.Metal
  7901. weebshit13.Size = Vector3.new(0.100000009, 0.05, 0.0500000007)
  7902. weebshit13.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  7903. weebshit13.Anchored = false
  7904. weebshit13.BrickColor = BrickColor.new("Pearl")
  7905. weebshit13.Friction = 0.30000001192093
  7906. weebshit13.Shape = Enum.PartType.Block
  7907. weebshit13.Name = "blade"
  7908. weebshit13.Parent = weebshit1
  7909. local weld9 = Instance.new('Weld',weebshit13)
  7910. weld9.Part0 = weebshit13
  7911. weld9.Part1 = weebshit14
  7912. weld9.C1 = CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0)
  7913. grow(weld9,weebshit13,Vector3.new(0.100000009, 0.699998796, 0.0500000007),CFrame.new(0.11, 0, 0) * CFrame.Angles(0, 0, 0),0.1)
  7914.  
  7915. -- 18 - blade
  7916. local weebshit18 = Instance.new("WedgePart")
  7917. weebshit18.CFrame = CFrame.new(Vector3.new(206.077118, 15.85674, 5)) * CFrame.Angles(1.5707963705063, -1.4137160778046, 1.5707963705063)
  7918. weebshit18.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  7919. weebshit18.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  7920. weebshit18.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  7921. weebshit18.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  7922. weebshit18.Material = Enum.Material.Metal
  7923. weebshit18.Size = Vector3.new(0.100000009, 0.05, 0.230000108)
  7924. weebshit18.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  7925. weebshit18.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  7926. weebshit18.Anchored = false
  7927. weebshit18.BrickColor = BrickColor.new("Dark stone grey")
  7928. weebshit18.Friction = 0.30000001192093
  7929. weebshit18.Name = "blade"
  7930. weebshit18.Parent = weebshit1
  7931. local weld10 = Instance.new('Weld',weebshit18)
  7932. weld10.Part0 = weebshit18
  7933. weld10.Part1 = weebshit14
  7934. weld10.C1 = CFrame.new(-0.015, 0.299937057, 2.86102295e-06)*CFrame.Angles(0,math.rad(-90),0)
  7935. local coru=coroutine.wrap(function()
  7936. 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)
  7937. end)
  7938. coru()
  7939.  
  7940. -- 19 - blade
  7941. local weebshit19 = Instance.new("WedgePart")
  7942. weebshit19.CFrame = CFrame.new(Vector3.new(206.096375, 15.8952179, 5.00177383)) * CFrame.Angles(1.5707963705063, -1.4137160778046, 1.5707963705063)
  7943. weebshit19.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  7944. weebshit19.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  7945. weebshit19.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  7946. weebshit19.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  7947. weebshit19.Material = Enum.Material.Metal
  7948. weebshit19.Size = Vector3.new(0.0500000007, 0.05, 0.280000091)
  7949. weebshit19.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  7950. weebshit19.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  7951. weebshit19.Anchored = false
  7952. weebshit19.BrickColor = BrickColor.new("Pearl")
  7953. weebshit19.Friction = 0.30000001192093
  7954. weebshit19.Name = "blade"
  7955. weebshit19.Parent = weebshit1
  7956. local weld11 = Instance.new('Weld',weebshit19)
  7957. weld11.Part0 = weebshit19
  7958. weld11.Part1 = weebshit18
  7959. weld11.C1 = CFrame.new(0, 0, -0.029) * CFrame.Angles(0, 0, 0)
  7960. local coru=coroutine.wrap(function()
  7961. 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)
  7962. end)
  7963. coru()
  7964. end
  7965.  
  7966. function gunmode()
  7967. working = true
  7968.  
  7969. working = false
  7970. end
  7971.  
  7972. function knifemode()
  7973. blademode = "knife"
  7974. -- 6 - thicc cap
  7975. local obj6 = Instance.new("Part")
  7976. obj6.CFrame = CFrame.new(Vector3.new(202.399948, 10.5999813, 5.00099993)) * CFrame.Angles(-0, 0, 3.5017728805542e-07)
  7977. obj6.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  7978. obj6.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  7979. obj6.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  7980. obj6.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  7981. obj6.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  7982. obj6.Size = Vector3.new(0.3, 0.3, 0.3)
  7983. obj6.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  7984. obj6.Anchored = false
  7985. obj6.BrickColor = BrickColor.new("Really black")
  7986. obj6.Friction = 0.30000001192093
  7987. obj6.Shape = Enum.PartType.Ball
  7988. obj6.Name = "thicc cap"
  7989. obj6.Parent = handle
  7990. local weld2 = Instance.new('Weld',obj6)
  7991. weld2.Part0 = obj6
  7992. weld2.Part1 = handle
  7993. weld2.C0 = CFrame.new(0.4, 0, 0)
  7994. grow(weld2,obj6,Vector3.new(0.3, 0.3, 0.3),CFrame.new(-0.15, 0, 0),0.1)
  7995.  
  7996. -- 8 - thicc top cap
  7997. local obj8 = Instance.new("Part")
  7998. obj8.CFrame = CFrame.new(Vector3.new(202.399963, 11.3000078, 5.00099993)) * CFrame.Angles(-0, 0, 3.5017728805542e-07)
  7999. obj8.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  8000. obj8.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  8001. obj8.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  8002. obj8.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  8003. obj8.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  8004. obj8.Size = Vector3.new(0.3, 0.3, 0.3)
  8005. obj8.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  8006. obj8.Anchored = false
  8007. obj8.BrickColor = BrickColor.new("Really black")
  8008. obj8.Friction = 0.30000001192093
  8009. obj8.Shape = Enum.PartType.Ball
  8010. obj8.Name = "thicc top cap"
  8011. obj8.Parent = handle
  8012. local weld1 = Instance.new('Weld',obj8)
  8013. weld1.Part0 = obj8
  8014. weld1.Part1 = handle
  8015. weld1.C0 = CFrame.new(-0.4, 0, 0)
  8016. grow(weld1,obj8,Vector3.new(0.3, 0.3, 0.3),CFrame.new(0.15, 0, 0),0.1)
  8017. -- 4 - thicc blade
  8018. local obj4 = Instance.new("Part")
  8019. obj4.CFrame = CFrame.new(Vector3.new(202.40007, 12.1600046, 5.00099707)) * CFrame.Angles(-0, 0, -0)
  8020. obj4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  8021. obj4.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  8022. obj4.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  8023. obj4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  8024. obj4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  8025. obj4.Material = Enum.Material.Metal
  8026. obj4.Size = Vector3.new(0.23, 0.1, 0.1)
  8027. obj4.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  8028. obj4.Anchored = false
  8029. obj4.BrickColor = BrickColor.new("Dark stone grey")
  8030. obj4.Friction = 0.30000001192093
  8031. obj4.Shape = Enum.PartType.Block
  8032. obj4.Name = "blade"
  8033. obj4.Parent = handle
  8034. local weld4 = Instance.new('Weld',obj4)
  8035. weld4.Part0 = obj4
  8036. weld4.Part1 = handle
  8037. weld4.C0 = CFrame.new(0, -0.535, 0)*CFrame.Angles(0,0,math.rad(90))
  8038. local coru=coroutine.wrap(function()
  8039. grow(weld4,obj4,Vector3.new(0.23, 1.19, 0.1),CFrame.new(0.5, 0, 0),0.1)
  8040. end)
  8041. coru()
  8042.  
  8043. -- 5 - thicc blade
  8044. local obj5 = Instance.new("Part")
  8045. obj5.CFrame = CFrame.new(Vector3.new(202.507141, 12.1749954, 5.00158167)) * CFrame.Angles(-0, 0, -0)
  8046. obj5.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  8047. obj5.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  8048. obj5.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  8049. obj5.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  8050. obj5.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  8051. obj5.Material = Enum.Material.Metal
  8052. obj5.Size = Vector3.new(0.100000009, 0.1, 0.0500000007)
  8053. obj5.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  8054. obj5.Anchored = false
  8055. obj5.BrickColor = BrickColor.new("Pearl")
  8056. obj5.Friction = 0.30000001192093
  8057. obj5.Shape = Enum.PartType.Block
  8058. obj5.Name = "blade"
  8059. obj5.Parent = handle
  8060. local weld5 = Instance.new('Weld',obj5)
  8061. weld5.Part0 = obj5
  8062. weld5.Part1 = obj4
  8063. weld5.C0 = CFrame.new(0.09, 0, 0)*CFrame.Angles(0,0,0)
  8064. grow(weld5,obj5,Vector3.new(0.1, 1.19, 0.05),CFrame.new(0, 0, 0),0.1)
  8065.  
  8066. -- 3 - thicc blade
  8067. local obj3 = Instance.new("WedgePart")
  8068. obj3.CFrame = CFrame.new(Vector3.new(202.40007, 12.9000006, 5.00099707)) * CFrame.Angles(-0, -1.5707963705063, 0)
  8069. obj3.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  8070. obj3.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  8071. obj3.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  8072. obj3.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  8073. obj3.Material = Enum.Material.Metal
  8074. obj3.Size = Vector3.new(0.1, 0, 0.23)
  8075. obj3.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  8076. obj3.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  8077. obj3.Anchored = false
  8078. obj3.BrickColor = BrickColor.new("Dark stone grey")
  8079. obj3.Friction = 0.30000001192093
  8080. obj3.Name = "blade"
  8081. obj3.Parent = handle
  8082. local weld6 = Instance.new('Weld',obj3)
  8083. weld6.Part0 = obj3
  8084. weld6.Part1 = obj4
  8085. weld6.C0 = CFrame.new(0, -0.595, 0)*CFrame.Angles(math.rad(0),math.rad(270),math.rad(0))
  8086. local coru=coroutine.wrap(function()
  8087. grow(weld6,obj3,Vector3.new(0.1, 0.3, 0.23),CFrame.new(0, 0.15, 0),0.05)
  8088. end)
  8089. coru()
  8090.  
  8091. -- 2 - thicc blade
  8092. local obj2 = Instance.new("WedgePart")
  8093. obj2.CFrame = CFrame.new(Vector3.new(202.423431, 12.9305696, 5.00099707)) * CFrame.Angles(-0, -1.5707963705063, 0)
  8094. obj2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  8095. obj2.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  8096. obj2.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  8097. obj2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  8098. obj2.Material = Enum.Material.Metal
  8099. obj2.Size = Vector3.new(0.05, 0, 0.26)
  8100. obj2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  8101. obj2.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  8102. obj2.Anchored = false
  8103. obj2.BrickColor = BrickColor.new("Lily white")
  8104. obj2.Friction = 0.30000001192093
  8105. obj2.Name = "blade"
  8106. obj2.Parent = handle
  8107. local weld7 = Instance.new('Weld',obj2)
  8108. weld7.Part0 = obj2
  8109. weld7.Part1 = obj4
  8110. weld7.C0 = CFrame.new(0, -0.595, 0)*CFrame.Angles(math.rad(0),math.rad(270),math.rad(0))
  8111. grow(weld7,obj2,Vector3.new(0.05, 0.33, 0.24),CFrame.new(-0.02, 0.165, 0),0.05)
  8112. end
  8113.  
  8114. function raep()
  8115. working = true
  8116. pcall(function()
  8117. local holyshit = Instance.new("Sound", handle)
  8118. holyshit.SoundId = "rbxassetid://1087802599"
  8119. holyshit.Volume = 5
  8120. holyshit:Play()
  8121. holyshit.TimePosition = 0.6
  8122. --[[local waitwhatthefuck = Instance.new("Sound", handle)
  8123. waitwhatthefuck.SoundId = "rbxassetid://447226325"
  8124. waitwhatthefuck:Play()]]--
  8125. local coru=coroutine.wrap(function()
  8126. wait(1.95)
  8127. holyshit.TimePosition = 2.8
  8128. end)
  8129. coru()
  8130. local tweld = Instance.new("Weld", char.HumanoidRootPart)
  8131. tweld.Part0 = char.HumanoidRootPart
  8132. tweld.Part1 = char.Torso
  8133. local rweld = Instance.new("Weld", char["Right Arm"])
  8134. rweld.Part0 = char["Torso"]
  8135. rweld.Part1 = char["Right Arm"]
  8136. rweld.C0 = CFrame.new(1.5, 0, 0)
  8137. local lweld = Instance.new("Weld", char["Left Arm"])
  8138. lweld.Part0 = char.Torso
  8139. lweld.Part1 = char["Left Arm"]
  8140. lweld.C0 = CFrame.new(-1.5, 0, 0)
  8141.  
  8142. char.Humanoid.WalkSpeed = 16
  8143.  
  8144. local cor = coroutine.wrap(function()
  8145. lerp(rweld,rweld.C0,CFrame.new(1.75, 0, 0.35) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(50)),0.2)
  8146. end)
  8147. local cor2 = coroutine.wrap(function()
  8148. lerp(tweld,tweld.C0,CFrame.new(0, -0.25, 0) * CFrame.Angles(math.rad(-15), math.rad(-45), math.rad(0)),0.2)
  8149. end)
  8150. cor()
  8151. cor2()
  8152. lerp(lweld,lweld.C0,CFrame.new(-1.75, 0, -0.35) * CFrame.Angles(math.rad(20), math.rad(0), math.rad(-20)),0.2)
  8153.  
  8154. local particl = Instance.new("ParticleEmitter")
  8155. particl.LightEmission = 3
  8156. 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))})
  8157. particl.LightInfluence = 0.75
  8158. particl.Size = NumberSequence.new({NumberSequenceKeypoint.new(0, 1), NumberSequenceKeypoint.new(1, 0)})
  8159. particl.Lifetime = NumberRange.new(0.1, 0.5)
  8160. particl.Rate = 50
  8161. particl.RotSpeed = NumberRange.new(300, 300)
  8162. particl.Speed = NumberRange.new(0, 1)
  8163. particl.SpreadAngle = Vector2.new(90, 90)
  8164. particl.Parent = handle
  8165.  
  8166. for i, v in pairs(handle["pink toy"]:GetChildren()) do
  8167. if v:IsA("Part") then
  8168. cooldildo = particl:Clone()
  8169. cooldildo.Parent = v
  8170. end
  8171. end
  8172.  
  8173. particl:Remove()
  8174.  
  8175. wait(1)
  8176. MOAN = true
  8177.  
  8178. char.Humanoid.WalkSpeed = 75
  8179.  
  8180.  
  8181. local cor = coroutine.wrap(function()
  8182. lerp(rweld,rweld.C0,CFrame.new(1.6, 0.5, -0.75) * CFrame.Angles(0, math.rad(55), math.rad(90)),0.06)
  8183. end)
  8184. local cor2 = coroutine.wrap(function()
  8185. lerp(tweld,tweld.C0,CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(30), math.rad(0)),0.06)
  8186. end)
  8187. local cor3 = coroutine.wrap(function()
  8188. lerp(hweld,hweld.C0,CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(270),math.rad(-90),math.rad(180)), 0.06)
  8189. end)
  8190. cor()
  8191. cor2()
  8192. cor3()
  8193. lerp(lweld,lweld.C0,CFrame.new(-1.75, 0, 0.35) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(-20)),0.06)
  8194. local omgg = 0
  8195. repeat wait(0.05) omgg = omgg+0.05 until aidsificating ~= nil or omgg > 2
  8196. holyshit:Destroy()
  8197. char.Humanoid.WalkSpeed = 16
  8198. MOAN = false
  8199. if aidsificating == nil then
  8200. for i, v in pairs(handle["pink toy"]:GetChildren()) do
  8201. if v:IsA("Part") then
  8202. v:FindFirstChild("ParticleEmitter"):Destroy()
  8203. end
  8204. end
  8205. local cor = coroutine.wrap(function()
  8206. lerp(rweld,rweld.C0,CFrame.new(1.5, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)),0.08)
  8207. end)
  8208. local cor2 = coroutine.wrap(function()
  8209. lerp(tweld,tweld.C0,CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)),0.08)
  8210. end)
  8211. local cor3 = coroutine.wrap(function()
  8212. lerp(hweld,hweld.C0,CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-180),math.rad(-90), 0), 0.08)
  8213. end)
  8214. cor()
  8215. cor2()
  8216. cor3()
  8217. lerp(lweld,lweld.C0,CFrame.new(-1.75, 0, 0.35) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(-20)),0.08)
  8218.  
  8219. lweld:Remove()
  8220. rweld:Remove()
  8221. tweld:Remove()
  8222.  
  8223. if torsoclone and char:FindFirstChild("Torso") and char:FindFirstChild("HumanoidRootPart") then
  8224. local clone = torsoclone:Clone()
  8225. clone.Part0 = char.HumanoidRootPart
  8226. clone.Part1 = char.Torso
  8227. clone.Parent = char.HumanoidRootPart
  8228. end
  8229. if leftclone and char:FindFirstChild('Left Arm') and char:FindFirstChild('Torso') then
  8230. local clone = leftclone:Clone()
  8231. clone.Part0 = char.Torso
  8232. clone.Part1 = char["Left Arm"]
  8233. clone.Parent = char.Torso
  8234. end
  8235. if rightclone and char:FindFirstChild('Right Arm') and char:FindFirstChild('Torso') then
  8236. local clone = rightclone:Clone()
  8237. clone.Part0 = char.Torso
  8238. clone.Part1 = char["Right Arm"]
  8239. clone.Parent = char.Torso
  8240. end
  8241. else
  8242. pcall(function()
  8243. aidsificating.HumanoidRootPart:Destroy()
  8244. end)
  8245. pcall(function()
  8246. ragdollpart(aidsificating,"Right Arm")
  8247. ragdollpart(aidsificating,"Right Leg")
  8248. ragdollpart(aidsificating,"Left Arm")
  8249. ragdollpart(aidsificating,"Left Leg")
  8250. end)
  8251. pcall(function()
  8252. ragdollpart(aidsificating,"RightUpperArm")
  8253. ragdollpart(aidsificating,"RightUpperLeg")
  8254. ragdollpart(aidsificating,"LeftUpperArm")
  8255. ragdollpart(aidsificating,"LeftUpperLeg")
  8256. end)
  8257. pcall(function()
  8258. local weld = Instance.new('Weld',aidsificating.Torso)
  8259. weld.Part0 = aidsificating.Torso
  8260. weld.Part1 = handle
  8261. weld.C0 = CFrame.new(0.2,-2.5,2)*CFrame.Angles(math.rad(135),0,math.rad(-90))
  8262. for i,v in pairs(handle["pink toy"]:GetChildren()) do
  8263. if v:IsA('BasePart') and v.Name == "stretchlol" then
  8264. v.BrickColor = aidsificating.Torso.BrickColor
  8265. v.Transparency = 0
  8266. end
  8267. end
  8268. end)
  8269. pcall(function()
  8270. local weld = Instance.new('Weld',aidsificating.UpperTorso)
  8271. weld.Part0 = aidsificating.UpperTorso
  8272. weld.Part1 = handle
  8273. weld.C0 = CFrame.new(0.2,-2.5,2)*CFrame.Angles(math.rad(135),0,math.rad(-90))
  8274. for i,v in pairs(handle["pink toy"]:GetChildren()) do
  8275. if v:IsA('BasePart') and v.Name == "stretchlol" then
  8276. v.BrickColor = aidsificating.UpperTorso.BrickColor
  8277. v.Transparency = 0
  8278. end
  8279. end
  8280. end)
  8281. lerp(rweld,rweld.C0,CFrame.new(1.6, 1, -0.5) * CFrame.Angles(0, math.rad(55), math.rad(145)),0.06)
  8282. wait(2)
  8283. for i,v in pairs(aidsificating:GetDescendants()) do
  8284. if v:IsA('Weld') then v:Destroy() end
  8285. end
  8286. pcall(function()
  8287. ragdollpart(aidsificating,"Head")
  8288. end)
  8289. pcall(function()
  8290. local thang = "Torso"
  8291. if aidsificating:FindFirstChild('UpperTorso') then
  8292. thang = "UpperTorso"
  8293. end
  8294. local ayybleed = Instance.new('Part',aidsificating)
  8295. ayybleed.Size = Vector3.new(0.2,0.2,0.2)
  8296. ayybleed.BrickColor = BrickColor.new('Maroon')
  8297. ayybleed.Material = Enum.Material.SmoothPlastic
  8298. ayybleed.Name = "ayybleed"
  8299. ayybleed.CanCollide = false
  8300. ayybleed.Transparency = 1
  8301. ayybleed.CFrame = aidsificating[thang].CFrame
  8302. ayybleed:BreakJoints()
  8303. local attachment1 = Instance.new('Attachment',ayybleed)
  8304. attachment1.Position = Vector3.new(0,-1,0)
  8305. attachment1.Orientation = Vector3.new(180, 0, 0)
  8306. local attachment0 = Instance.new('Attachment',aidsificating[thang])
  8307. if attachment0 and attachment1 then
  8308. local constraint = Instance.new("HingeConstraint")
  8309. constraint.Attachment0 = attachment0
  8310. constraint.Attachment1 = attachment1
  8311. constraint.LimitsEnabled = true
  8312. constraint.UpperAngle = 0
  8313. constraint.LowerAngle = 0
  8314. constraint.Parent = aidsificating
  8315. end
  8316. local bleedBLEED= coroutine.wrap(function()
  8317. bleed(ayybleed,true)
  8318. end)
  8319. bleedBLEED()
  8320. end)
  8321. aidsificating = nil
  8322. pcall(function()
  8323. for i,v in pairs(handle["pink toy"]:GetChildren()) do
  8324. if v:IsA('BasePart') and v.Name == "stretchlol" then
  8325. v.Transparency = 1
  8326. end
  8327. end
  8328. end)
  8329. local cor = coroutine.wrap(function()
  8330. lerp(rweld,rweld.C0,CFrame.new(1.6, -0.25, 0.75) * CFrame.Angles(0, math.rad(55), math.rad(145)),0.04)
  8331. end)
  8332. local cor2 = coroutine.wrap(function()
  8333. lerp(tweld,tweld.C0,CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(-30), math.rad(0)),0.04)
  8334. end)
  8335. cor()
  8336. cor2()
  8337. lerp(lweld,lweld.C0,CFrame.new(-1.75, 0, 0.35) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(-20)),0.04)
  8338. wait(0.1)
  8339. local cor = coroutine.wrap(function()
  8340. lerp(rweld,rweld.C0,CFrame.new(1.6, -0.5, 1) * CFrame.Angles(0, math.rad(0), math.rad(0)),0.08)
  8341. end)
  8342. local cor2 = coroutine.wrap(function()
  8343. lerp(tweld,tweld.C0,CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(-30), math.rad(0)),0.08)
  8344. end)
  8345. local cor3 = coroutine.wrap(function()
  8346. lerp(hweld,hweld.C0,CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-180),math.rad(-90), 0), 0.08)
  8347. end)
  8348. cor()
  8349. cor2()
  8350. cor3()
  8351. lerp(lweld,lweld.C0,CFrame.new(-1.5, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)),0.08)
  8352.  
  8353. lweld:Remove()
  8354. rweld:Remove()
  8355. tweld:Remove()
  8356.  
  8357. if torsoclone and char:FindFirstChild("Torso") and char:FindFirstChild("HumanoidRootPart") then
  8358. local clone = torsoclone:Clone()
  8359. clone.Part0 = char.HumanoidRootPart
  8360. clone.Part1 = char.Torso
  8361. clone.Parent = char.HumanoidRootPart
  8362. end
  8363. if leftclone and char:FindFirstChild('Left Arm') and char:FindFirstChild('Torso') then
  8364. local clone = leftclone:Clone()
  8365. clone.Part0 = char.Torso
  8366. clone.Part1 = char["Left Arm"]
  8367. clone.Parent = char.Torso
  8368. end
  8369. if rightclone and char:FindFirstChild('Right Arm') and char:FindFirstChild('Torso') then
  8370. local clone = rightclone:Clone()
  8371. clone.Part0 = char.Torso
  8372. clone.Part1 = char["Right Arm"]
  8373. clone.Parent = char.Torso
  8374. end
  8375. end
  8376. end)
  8377. working = false
  8378. end
  8379.  
  8380. function katanaQ()
  8381. working = true
  8382. swinging = true
  8383. gettingeem = true
  8384. pcall(function()
  8385. local rweld = Instance.new("Weld", char["Right Arm"])
  8386. local tweld = Instance.new("Weld", char.HumanoidRootPart)
  8387. pcall(function()
  8388. rweld.Part0 = char["Torso"]
  8389. rweld.Part1 = char["Right Arm"]
  8390. rweld.C0 = CFrame.new(1.5, 0, 0)
  8391. tweld.Part0 = char.HumanoidRootPart
  8392. tweld.Part1 = char.Torso
  8393. end)
  8394.  
  8395. char:FindFirstChildOfClass('Humanoid').WalkSpeed = 100
  8396.  
  8397. local at1 = Instance.new("Attachment", handle)
  8398. local at2 = Instance.new("Attachment", handle)
  8399. at1.Visible = false
  8400. at1.Position = Vector3.new(5, 0, 0)
  8401. at2.Visible = false
  8402. at2.Position = Vector3.new(1, 0, 0)
  8403.  
  8404. local trail = Instance.new("Trail", handle)
  8405. trail.Color = ColorSequence.new({ColorSequenceKeypoint.new(0, Color3.fromRGB(255, 255, 255)), ColorSequenceKeypoint.new(1, Color3.fromRGB(255, 255, 255))})
  8406. trail.LightEmission = 0.25
  8407. trail.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0, 0.9), NumberSequenceKeypoint.new(1, 1)})
  8408. trail.Lifetime = 0.10
  8409. trail.MinLength = 0.05
  8410. trail.Attachment0 = at1
  8411. trail.Attachment1 = at2
  8412. local coru=coroutine.wrap(function()
  8413. lerp(rweld,rweld.C0,CFrame.new(1.35, 0.5, -1.2) * CFrame.Angles(0, math.rad(90), math.rad(90)),0.08)
  8414. end)
  8415. coru()
  8416. lerp(hweld,hweld.C0,CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(270),math.rad(-90),math.rad(180)), 0.08)
  8417. local ree=0
  8418. while goteem == nil and ree < 1 do
  8419. wait(0.05)
  8420. ree=ree+0.05
  8421. end
  8422. char:FindFirstChildOfClass('Humanoid').WalkSpeed = 16
  8423. gettingeem = false
  8424. swinging = false
  8425. if goteem then
  8426. wait(2)
  8427. pcall(function()
  8428. local sounn = Instance.new("Sound", goteem.Torso)
  8429. local lipp = math.random(1, 3)
  8430. if lipp == 1 then sounn.SoundId = "rbxassetid://444667844" end
  8431. if lipp == 2 then sounn.SoundId = "rbxassetid://444667824" end
  8432. if lipp == 3 then sounn.SoundId = "rbxassetid://444667859" end
  8433. sounn:Play()
  8434. end)
  8435. ragdollpart(goteem,"Head")
  8436. for i,v in pairs(goteem:GetDescendants()) do
  8437. if v:IsA('Weld') then v:Destroy() end
  8438. end
  8439. goteem = nil
  8440. end
  8441. trail:Destroy()
  8442. at1:Destroy()
  8443. at2:Destroy()
  8444. lerp(hweld,hweld.C0,CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-180),math.rad(-90), 0), 0.05)
  8445. local cor = coroutine.wrap(function()
  8446. lerp(tweld,tweld.C0,CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),0.08)
  8447. end)
  8448. cor()
  8449. lerp(rweld,rweld.C0,CFrame.new(1.5, 0, 0) * CFrame.Angles(0, math.rad(0), math.rad(0)),0.08)
  8450. rweld:Destroy()
  8451. tweld:Destroy()
  8452. if rightclone and char:FindFirstChild('Right Arm') and char:FindFirstChild('Torso') then
  8453. local clone = rightclone:Clone()
  8454. clone.Part0 = char.Torso
  8455. clone.Part1 = char["Right Arm"]
  8456. clone.Parent = char.Torso
  8457. end
  8458. if torsoclone and char:FindFirstChild('Torso') and char:FindFirstChild('HumanoidRootPart') then
  8459. local clone = torsoclone:Clone()
  8460. clone.Part0 = char.HumanoidRootPart
  8461. clone.Part1 = char.Torso
  8462. clone.Parent = char.HumanoidRootPart
  8463. end
  8464. end)
  8465. swinging = false
  8466. gettingeem = false
  8467. working = false
  8468. end
  8469. local function katanaE()
  8470. working = true
  8471. swinging = true
  8472. SLESH = true
  8473. pcall(function()
  8474. local rweld = Instance.new("Weld", char["Right Arm"])
  8475. local tweld = Instance.new("Weld", char.HumanoidRootPart)
  8476. rweld.Part0 = char["Torso"]
  8477. rweld.Part1 = char["Right Arm"]
  8478. rweld.C0 = CFrame.new(1.5, 0, 0)
  8479. tweld.Part0 = char.HumanoidRootPart
  8480. tweld.Part1 = char.Torso
  8481.  
  8482. char:FindFirstChildOfClass('Humanoid').WalkSpeed = 100
  8483.  
  8484. local at1 = Instance.new("Attachment", handle)
  8485. local at2 = Instance.new("Attachment", handle)
  8486. at1.Visible = false
  8487. at1.Position = Vector3.new(5, 0, 0)
  8488. at2.Visible = false
  8489. at2.Position = Vector3.new(1, 0, 0)
  8490.  
  8491. local trail = Instance.new("Trail", handle)
  8492. trail.Color = ColorSequence.new({ColorSequenceKeypoint.new(0, Color3.fromRGB(255, 255, 255)), ColorSequenceKeypoint.new(1, Color3.fromRGB(255, 255, 255))})
  8493. trail.LightEmission = 0.25
  8494. trail.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0, 0.9), NumberSequenceKeypoint.new(1, 1)})
  8495. trail.Lifetime = 0.10
  8496. trail.MinLength = 0.05
  8497. trail.Attachment0 = at1
  8498. trail.Attachment1 = at2
  8499. local coru=coroutine.wrap(function()
  8500. lerp(rweld,rweld.C0,CFrame.new(2, 1, 0) * CFrame.Angles(math.rad(0), 0, math.rad(60)),0.08)
  8501. end)
  8502. coru()
  8503. lerp(hweld,hweld.C0,CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(270),math.rad(-270),math.rad(0)), 0.08)
  8504.  
  8505. wait(1)
  8506. char:FindFirstChildOfClass('Humanoid').WalkSpeed = 16
  8507. trail:Destroy()
  8508. at1:Destroy()
  8509. at2:Destroy()
  8510. lerp(hweld,hweld.C0,CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-180),math.rad(-90), 0), 0.05)
  8511. local cor = coroutine.wrap(function()
  8512. lerp(tweld,tweld.C0,CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),0.08)
  8513. end)
  8514. cor()
  8515. lerp(rweld,rweld.C0,CFrame.new(1.5, 0, 0) * CFrame.Angles(0, math.rad(0), math.rad(0)),0.08)
  8516. rweld:Destroy()
  8517. tweld:Destroy()
  8518. if rightclone and char:FindFirstChild('Right Arm') and char:FindFirstChild('Torso') then
  8519. local clone = rightclone:Clone()
  8520. clone.Part0 = char.Torso
  8521. clone.Part1 = char["Right Arm"]
  8522. clone.Parent = char.Torso
  8523. end
  8524. if torsoclone and char:FindFirstChild('Torso') and char:FindFirstChild('HumanoidRootPart') then
  8525. local clone = torsoclone:Clone()
  8526. clone.Part0 = char.HumanoidRootPart
  8527. clone.Part1 = char.Torso
  8528. clone.Parent = char.HumanoidRootPart
  8529. end
  8530. end)
  8531. swinging = false
  8532. SLESH = false
  8533. working = false
  8534. end
  8535.  
  8536. function begoneTHOUGHT()
  8537. working = true
  8538. pcall(function()
  8539. local thott = Instance.new("Sound", char)
  8540. thott.SoundId = "rbxassetid://949916584"
  8541. thott.Volume = 1
  8542. thott.TimePosition = 0.5
  8543. thott.PlaybackSpeed = 1
  8544. thott.EmitterSize = player.CameraMaxZoomDistance+1
  8545. thott.MaxDistance = player.CameraMaxZoomDistance+1
  8546. thott:Play()
  8547.  
  8548. local rweld = Instance.new("Weld", char["Right Arm"])
  8549. local tweld = Instance.new("Weld", char.HumanoidRootPart)
  8550. rweld.Part0 = char["Torso"]
  8551. rweld.Part1 = char["Right Arm"]
  8552. rweld.C0 = CFrame.new(1.5, 0, 0)
  8553. tweld.Part0 = char.HumanoidRootPart
  8554. tweld.Part1 = char.Torso
  8555.  
  8556. local coru=coroutine.wrap(function()
  8557. lerp(rweld,rweld.C0,CFrame.new(1.5, 0, 0) * CFrame.Angles(math.rad(60), math.rad(0), math.rad(0)),0.25)
  8558. end)
  8559. coru()
  8560. lerp(tweld,tweld.C0,CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0),math.rad(-45),math.rad(0)), 0.25)
  8561.  
  8562. wait(0.5)
  8563. local thote = Instance.new("Sound", char.Head)
  8564. thote.SoundId = "rbxassetid://358498516"
  8565. thote.Volume = 1
  8566. thote:Play()
  8567.  
  8568.  
  8569.  
  8570. local coru=coroutine.wrap(function()
  8571. lerp(rweld,rweld.C0,CFrame.new(2, 0.5, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(90)),0.04)
  8572. end)
  8573. coru()
  8574. lerp(tweld,tweld.C0,CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0),math.rad(90),math.rad(0)), 0.04)
  8575. wait(0.04)
  8576. local ree = Instance.new('Part',workspace)
  8577. ree.Shape = Enum.PartType.Cylinder
  8578. ree.CanCollide = false
  8579. ree.Anchored = false
  8580. ree.Size = Vector3.new(0.5,2,2)
  8581. ree.TopSurface = Enum.SurfaceType.Smooth
  8582. ree.BottomSurface = Enum.SurfaceType.Smooth
  8583. ree.Transparency = 0.8
  8584. ree.Material =Enum.Material.Neon
  8585. ree.BrickColor = BrickColor.new('Toothpaste')
  8586. ree.CFrame = handle.CFrame*CFrame.Angles(0,0,math.rad(90))
  8587. ree:BreakJoints()
  8588. local reee = Instance.new("Sound", ree)
  8589. reee.SoundId = "rbxassetid://138677306"
  8590. reee:Play()
  8591. local heck = Instance.new('BodyVelocity',ree)
  8592. heck.Velocity = ree.CFrame.rightVector*50
  8593. heck.MaxForce = Vector3.new(math.huge,math.huge,math.huge)
  8594. local coru=coroutine.wrap(function()
  8595. for i=1,21 do
  8596. local cf = ree.CFrame
  8597. ree.Size = ree.Size+Vector3.new(0,2,2)
  8598. ree.CFrame = cf
  8599. wait()
  8600. end
  8601. for i=1,4 do
  8602. local cf = ree.CFrame
  8603. ree.Size = ree.Size+Vector3.new(0,2,2)
  8604. ree.CFrame = cf
  8605. ree.Transparency = ree.Transparency + 0.05
  8606. wait()
  8607. end
  8608. ree:Destroy()
  8609. end)
  8610. coru()
  8611. ree.Touched:connect(function(hit)
  8612. if hit.Parent and hit.Parent ~= char and hit.Parent:FindFirstChildOfClass('Humanoid') then
  8613. hit.Parent:FindFirstChildOfClass('Humanoid').Health = 100
  8614. ragdollpart(hit.Parent,"Head")
  8615. end
  8616. end)
  8617. wait(0.5)
  8618. local coru=coroutine.wrap(function()
  8619. lerp(rweld,rweld.C0,CFrame.new(1.5, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)),0.8)
  8620. end)
  8621. coru()
  8622. lerp(tweld,tweld.C0,CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.8)
  8623.  
  8624. rweld:Destroy()
  8625. tweld:Destroy()
  8626. if rightclone and char:FindFirstChild('Right Arm') and char:FindFirstChild('Torso') then
  8627. local clone = rightclone:Clone()
  8628. clone.Part0 = char.Torso
  8629. clone.Part1 = char["Right Arm"]
  8630. clone.Parent = char.Torso
  8631. end
  8632. if torsoclone and char:FindFirstChild('Torso') and char:FindFirstChild('HumanoidRootPart') then
  8633. local clone = torsoclone:Clone()
  8634. clone.Part0 = char.HumanoidRootPart
  8635. clone.Part1 = char.Torso
  8636. clone.Parent = char.HumanoidRootPart
  8637. end
  8638. end)
  8639. working = false
  8640. end
  8641.  
  8642. function katanaswing()
  8643. working = true
  8644. pcall(function()
  8645. local rweld = Instance.new("Weld", char["Right Arm"])
  8646. local lweld = Instance.new("Weld", char["Left Arm"])
  8647. local tweld = Instance.new("Weld", char.HumanoidRootPart)
  8648. rweld.Part0 = char["Torso"]
  8649. rweld.Part1 = char["Right Arm"]
  8650. rweld.C0 = CFrame.new(1.5, 0, 0)
  8651. lweld.Part0 = char.Torso
  8652. lweld.Part1 = char["Left Arm"]
  8653. lweld.C0 = CFrame.new(-1.5, 0, 0)
  8654. tweld.Part0 = char.HumanoidRootPart
  8655. tweld.Part1 = char.Torso
  8656.  
  8657. local cor = coroutine.wrap(function()
  8658. lerp(tweld,tweld.C0,CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(45), 0),0.08)
  8659. end)
  8660. cor()
  8661. lerp(rweld,rweld.C0,CFrame.new(1.35, 0.5, -1.2) * CFrame.Angles(0, math.rad(110), math.rad(90)),0.08)
  8662. wait(0.2)
  8663. local at1 = Instance.new("Attachment", handle)
  8664. local at2 = Instance.new("Attachment", handle)
  8665. at1.Visible = false
  8666. at1.Position = Vector3.new(5, 0, 0)
  8667. at2.Visible = false
  8668. at2.Position = Vector3.new(1, 0, 0)
  8669.  
  8670. local trail = Instance.new("Trail", handle)
  8671. trail.Color = ColorSequence.new({ColorSequenceKeypoint.new(0, trail.Parent.Color), ColorSequenceKeypoint.new(1, trail.Parent.Color)})
  8672. trail.LightEmission = 0.25
  8673. trail.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0, 0.9), NumberSequenceKeypoint.new(1, 1)})
  8674. trail.Lifetime = 0.10
  8675. trail.MinLength = 0.05
  8676. trail.Attachment0 = at1
  8677. trail.Attachment1 = at2
  8678.  
  8679. swinging = true
  8680.  
  8681. local cor = coroutine.wrap(function()
  8682. lerp(tweld,tweld.C0,CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(-45), 0),0.04)
  8683. end)
  8684. cor()
  8685. lerp(rweld,rweld.C0,CFrame.new(2, 0.5, 0) * CFrame.Angles(0, math.rad(0), math.rad(90)),0.04)
  8686. wait(0.2)
  8687. swinging = false
  8688. trail:Destroy()
  8689. at1:Destroy()
  8690. at2:Destroy()
  8691. local cor = coroutine.wrap(function()
  8692. lerp(tweld,tweld.C0,CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),0.08)
  8693. end)
  8694. cor()
  8695. lerp(rweld,rweld.C0,CFrame.new(1.5, 0, 0) * CFrame.Angles(0, math.rad(0), math.rad(0)),0.08)
  8696. rweld:Destroy()
  8697. lweld:Destroy()
  8698. tweld:Destroy()
  8699. if rightclone and char:FindFirstChild('Right Arm') and char:FindFirstChild('Torso') then
  8700. local clone = rightclone:Clone()
  8701. clone.Part0 = char.Torso
  8702. clone.Part1 = char["Right Arm"]
  8703. clone.Parent = char.Torso
  8704. end
  8705. if leftclone and char:FindFirstChild('Left Arm') and char:FindFirstChild('Torso') then
  8706. local clone = leftclone:Clone()
  8707. clone.Part0 = char.Torso
  8708. clone.Part1 = char["Left Arm"]
  8709. clone.Parent = char.Torso
  8710. end
  8711. if torsoclone and char:FindFirstChild('Torso') and char:FindFirstChild('HumanoidRootPart') then
  8712. local clone = torsoclone:Clone()
  8713. clone.Part0 = char.HumanoidRootPart
  8714. clone.Part1 = char.Torso
  8715. clone.Parent = char.HumanoidRootPart
  8716. end
  8717. end)
  8718. working = false
  8719. end
  8720.  
  8721. function throw()
  8722. working = true
  8723. pcall(function()
  8724. local rweld = char["Right Arm"]:FindFirstChild("Weld")
  8725. local lweld = char["Left Arm"]:FindFirstChild("Weld")
  8726. local tweld = Instance.new("Weld", char.HumanoidRootPart)
  8727. tweld.Part0 = char.HumanoidRootPart
  8728. tweld.Part1 = char.Torso
  8729. local throwsound = Instance.new("Sound", char.Head)
  8730. throwsound.SoundId = "rbxassetid://711753382"
  8731. throwsound.PlaybackSpeed = 0.75
  8732.  
  8733. local cor = coroutine.wrap(function()
  8734. lerp(tweld,tweld.C0,CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(-30), 0),0.04)
  8735. end)
  8736. local cor2 = coroutine.wrap(function()
  8737. lerp(rweld,rweld.C0,CFrame.new(1.5, 0.15, 0.4) * CFrame.Angles(0, math.rad(-30), math.rad(15)),0.04)
  8738. end)
  8739. cor()
  8740. cor2()
  8741. grabweld:Remove()
  8742. throwsound:Play()
  8743.  
  8744. local throwvel = Instance.new("BodyThrust")
  8745. throwvel.Force = Vector3.new(0, 3000, -2000)
  8746. pcall(function()
  8747. throwvel.Parent = grabbed.Torso
  8748. end)
  8749. pcall(function()
  8750. throwvel.Parent = grabbed.UpperTorso
  8751. end)
  8752.  
  8753. lerp(lweld,lweld.C0,CFrame.new(-1.3, 0.7, -1) * CFrame.Angles(0, math.rad(-70), math.rad(-105)),0.04)
  8754. wait(0.15)
  8755. throwvel:Remove()
  8756. local cor = coroutine.wrap(function()
  8757. lerp(lweld,lweld.C0,CFrame.new(-1.5, 0, 0) * CFrame.Angles(0, 0, 0),0.08)
  8758. end)
  8759. local cor2 = coroutine.wrap(function()
  8760. lerp(rweld,rweld.C0,CFrame.new(1.5, 0, 0) * CFrame.Angles(0, 0, 0),0.08)
  8761. end)
  8762. cor()
  8763. cor2()
  8764. lerp(tweld,tweld.C0,CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),0.08)
  8765. lweld:Remove()
  8766. rweld:Remove()
  8767. tweld:Remove()
  8768. if rightclone and char:FindFirstChild('Right Arm') and char:FindFirstChild('Torso') then
  8769. local clone = rightclone:Clone()
  8770. clone.Part0 = char.Torso
  8771. clone.Part1 = char["Right Arm"]
  8772. clone.Parent = char.Torso
  8773. end
  8774. if leftclone and char:FindFirstChild('Left Arm') and char:FindFirstChild('Torso') then
  8775. local clone = leftclone:Clone()
  8776. clone.Part0 = char.Torso
  8777. clone.Part1 = char["Left Arm"]
  8778. clone.Parent = char.Torso
  8779. end
  8780. if torsoclone and char:FindFirstChild('Torso') and char:FindFirstChild('HumanoidRootPart') then
  8781. local clone = torsoclone:Clone()
  8782. clone.Part0 = char.HumanoidRootPart
  8783. clone.Part1 = char.Torso
  8784. clone.Parent = char.HumanoidRootPart
  8785. end
  8786. local lolgrabbed = grabbed
  8787. spawn(function()
  8788. wait(2)
  8789. unstun(lolgrabbed)
  8790. end)
  8791. end)
  8792. grabbed = nil
  8793. working = false
  8794. end
  8795.  
  8796. function whoosh(vroom)
  8797. vroom.Parent = workspace
  8798. vroom.Name = "Projectile"
  8799. vroom.CFrame = CFrame.new(char.Head.CFrame.p,mouse.Hit.p)*CFrame.Angles(math.rad(0),math.rad(90),math.rad(0))
  8800. vroom.Anchored = true
  8801. vroom.Velocity = Vector3.new(0,0,0)
  8802. vroom.RotVelocity = Vector3.new(0,0,0)
  8803. vroom.Anchored = false
  8804. game:GetService('Debris'):AddItem(vroom,10)
  8805. local flyy = Instance.new('BodyVelocity',vroom)
  8806. flyy.Velocity = vroom.CFrame.rightVector*200
  8807. local touched = false
  8808. for i,v in pairs(vroom:GetChildren()) do
  8809. if v:IsA('BasePart') then
  8810. v.Touched:connect(function(hit)
  8811. local pos = vroom.CFrame
  8812. if touched == false then
  8813. if hit and hit.Parent and hit.Transparency ~= 1 and hit.Parent:FindFirstChildOfClass('Humanoid') and hit.Parent~= char then
  8814. touched = true
  8815. local before = hit.Anchored
  8816. vroom.Anchored = true
  8817. vroom.Velocity = Vector3.new(0,0,0)
  8818. vroom.RotVelocity = Vector3.new(0,0,0)
  8819. vroom.CFrame = vroom.CFrame-(vroom.CFrame.rightVector)
  8820. hit.Anchored = true
  8821. flyy:Destroy()
  8822. pcall(function()
  8823. local weld = Instance.new('Weld',hit)
  8824. weld.Part0 = hit
  8825. weld.Part1 = vroom
  8826. weld.C0 = hit.CFrame:toObjectSpace(vroom.CFrame)
  8827. local ayybleed = Instance.new('Part',hit)
  8828. ayybleed.Size = Vector3.new(0.2,0.2,0.2)
  8829. ayybleed.BrickColor = BrickColor.new('Maroon')
  8830. ayybleed.Material = Enum.Material.SmoothPlastic
  8831. ayybleed.Name = "ayybleed"
  8832. ayybleed.CanCollide = false
  8833. ayybleed.Transparency = 1
  8834. ayybleed.CFrame = hit.CFrame
  8835. ayybleed:BreakJoints()
  8836. local attachment1 = Instance.new('Attachment',ayybleed)
  8837. local attachment0 = Instance.new('Attachment',hit)
  8838. for i,v in pairs(vroom:GetChildren()) do
  8839. if v.Name == "blade" and v.Size == Vector3.new(0.23, 1.19, 0.1) then
  8840. v.Name = "REEEE"
  8841. end
  8842. end
  8843. attachment1.Orientation = vroom["REEEE"].Orientation+Vector3.new(90,0,0)
  8844. attachment0.Position = hit.CFrame:toObjectSpace(vroom["REEEE"].CFrame).p-(hit.CFrame:toObjectSpace(vroom["REEEE"].CFrame).upVector)
  8845. if attachment0 and attachment1 then
  8846. local constraint = Instance.new("HingeConstraint")
  8847. constraint.Attachment0 = attachment0
  8848. constraint.Attachment1 = attachment1
  8849. constraint.LimitsEnabled = true
  8850. constraint.UpperAngle = 0
  8851. constraint.LowerAngle = 0
  8852. constraint.Parent = attachment0
  8853. end
  8854. local bleedBLEED= coroutine.wrap(function()
  8855. bleed(ayybleed)
  8856. end)
  8857. bleedBLEED()
  8858. if hit.Name ~= "Head" and hit.Name ~= "UpperTorso" and hit.Name ~= "Torso" and hit.Name ~= "LowerTorso" then
  8859. game:GetService('Debris'):AddItem(ayybleed,7.5)
  8860. end
  8861. end)
  8862. hit.Anchored = before
  8863. vroom.Anchored = false
  8864. vroom.CanCollide = true
  8865. pcall(function()
  8866. vroom:FindFirstChildOfClass('Trail'):Destroy()
  8867. end)
  8868. for i,v in pairs(vroom:GetChildren()) do
  8869. if v:IsA('BasePart') then
  8870. v.CanCollide = true
  8871. end
  8872. end
  8873. if hit.Name == "Head" or hit.Name == "UpperTorso" or hit.Name == "Torso" or hit.Name == "LowerTorso" then
  8874. pcall(function()
  8875. hit.Parent.HumanoidRootPart:Destroy()
  8876. end)
  8877. pcall(function()
  8878. ragdollpart(hit.Parent,"Left Arm")
  8879. ragdollpart(hit.Parent,"Left Leg")
  8880. ragdollpart(hit.Parent,"Right Arm")
  8881. ragdollpart(hit.Parent,"Right Leg")
  8882. end)
  8883. pcall(function()
  8884. ragdollpart(hit.Parent,"LeftUpperLeg")
  8885. ragdollpart(hit.Parent,"RightUpperLeg")
  8886. ragdollpart(hit.Parent,"LeftUpperArm")
  8887. ragdollpart(hit.Parent,"RightUpperArm")
  8888. end)
  8889. spawn(function()
  8890. wait(5)
  8891. ragdollpart(hit.Parent,"Head")
  8892. end)
  8893. else
  8894. pcall(function()
  8895. ragdollpart(hit.Parent,hit.Name)
  8896. end)
  8897. end
  8898. elseif hit and hit.CanCollide == true and hit.Parent and hit.Parent ~= char then
  8899. touched = true
  8900. local before = hit.Anchored
  8901. vroom.Anchored = true
  8902. vroom.Velocity = Vector3.new(0,0,0)
  8903. vroom.RotVelocity = Vector3.new(0,0,0)
  8904. hit.Anchored = true
  8905. flyy:Destroy()
  8906. vroom.CFrame = vroom.CFrame-vroom.CFrame.rightVector
  8907. pcall(function()
  8908. local weld = Instance.new('Weld',hit)
  8909. weld.Part0 = hit
  8910. weld.Part1 = vroom
  8911. weld.C0 = hit.CFrame:toObjectSpace(vroom.CFrame)
  8912. end)
  8913. pcall(function()
  8914. vroom:FindFirstChildOfClass('Trail'):Destroy()
  8915. end)
  8916. hit.Anchored = before
  8917. vroom.Anchored = false
  8918. end
  8919. end
  8920. end)
  8921. end
  8922. end
  8923. end
  8924.  
  8925. function fling()
  8926. working = true
  8927. pcall(function()
  8928. local rweld = Instance.new("Weld", char["Right Arm"])
  8929. local lweld = Instance.new("Weld", char["Left Arm"])
  8930. rweld.Part0 = char["Torso"]
  8931. rweld.Part1 = char["Right Arm"]
  8932. rweld.C0 = CFrame.new(1.5, 0, 0)
  8933. lweld.Part0 = char.Torso
  8934. lweld.Part1 = char["Left Arm"]
  8935. lweld.C0 = CFrame.new(-1.5, 0, 0)
  8936. local tweld = Instance.new("Weld", char.HumanoidRootPart)
  8937. tweld.Part0 = char.HumanoidRootPart
  8938. tweld.Part1 = char.Torso
  8939.  
  8940. local at1 = Instance.new("Attachment", handle)
  8941. local at2 = Instance.new("Attachment", handle)
  8942. at1.Visible = false
  8943. at1.Position = Vector3.new(2, 0, 0)
  8944. at2.Visible = false
  8945. at2.Position = Vector3.new(-0.3, 0, 0)
  8946.  
  8947. local trail = Instance.new("Trail", handle)
  8948. trail.Color = ColorSequence.new({ColorSequenceKeypoint.new(0, Color3.fromRGB(255, 255, 255)), ColorSequenceKeypoint.new(1, Color3.fromRGB(255, 255, 255))})
  8949. trail.LightEmission = 0.25
  8950. trail.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0, 0.75), NumberSequenceKeypoint.new(1, 1)})
  8951. trail.Lifetime = 0.10
  8952. trail.MinLength = 0.05
  8953. trail.Attachment0 = at1
  8954. trail.Attachment1 = at2
  8955.  
  8956. local cor = coroutine.wrap(function()
  8957. lerp(rweld,rweld.C0,CFrame.new(1.75, 0, 0) * CFrame.Angles(0, math.rad(0), math.rad(45)),0.07)
  8958. end)
  8959. cor()
  8960. lerp(lweld,lweld.C0,CFrame.new(-1.5, 0, -0.5) * CFrame.Angles(math.rad(45), math.rad(0), math.rad(0)),0.07)
  8961.  
  8962. local cor = coroutine.wrap(function()
  8963. lerp(rweld,rweld.C0,CFrame.new(1.75, 1, 0.25) * CFrame.Angles(math.rad(35), math.rad(0), math.rad(150)),0.07)
  8964. end)
  8965. local cor2 = coroutine.wrap(function()
  8966. lerp(tweld,tweld.C0,CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(-45), math.rad(0)),0.07)
  8967. end)
  8968. local cor3 = coroutine.wrap(function()
  8969. lerp(hweld,hweld.C0,CFrame.new(0, -2.5, 0) * CFrame.Angles(math.rad(90),math.rad(90), 0),0.12)
  8970. end)
  8971. cor()
  8972. cor2()
  8973. cor3()
  8974. 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)
  8975. wait(0.2)
  8976.  
  8977. local cor = coroutine.wrap(function()
  8978. lerp(rweld,rweld.C0,CFrame.new(1.5, 1, 0.25) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(170)),0.03)
  8979. end)
  8980. local cor2 = coroutine.wrap(function()
  8981. lerp(tweld,tweld.C0,CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(0), math.rad(0)),0.03)
  8982. end)
  8983. cor()
  8984. cor2()
  8985. lerp(lweld,lweld.C0,CFrame.new(-1, 0, -0.45) * CFrame.Angles(math.rad(45), math.rad(0), math.rad(45)),0.03)
  8986.  
  8987. local cor = coroutine.wrap(function()
  8988. 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)
  8989. end)
  8990. local cor2 = coroutine.wrap(function()
  8991. lerp(tweld,tweld.C0,CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(45), math.rad(0)),0.01)
  8992. end)
  8993. cor()
  8994. cor2()
  8995. whoosh(handle:Clone())
  8996. for i, v in pairs(handle:GetChildren()) do
  8997. if v:IsA("Part") then
  8998. v.Transparency = 1
  8999. end
  9000. end
  9001. handle.Transparency = 1
  9002. trail:Remove()
  9003. at1:Remove()
  9004. at2:Remove()
  9005. lerp(lweld,lweld.C0,CFrame.new(-1.5, 0, 0) * CFrame.Angles(math.rad(45), math.rad(0), math.rad(0)),0.01)
  9006. local cor = coroutine.wrap(function()
  9007. lerp(rweld,rweld.C0,CFrame.new(0.5, 0.4, -1) * CFrame.Angles(math.rad(0), math.rad(180), math.rad(75)),0.04)
  9008. end)
  9009. local cor2 = coroutine.wrap(function()
  9010. lerp(tweld,tweld.C0,CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(55), math.rad(0)),0.04)
  9011. end)
  9012. cor()
  9013. cor2()
  9014. lerp(lweld,lweld.C0,CFrame.new(-1.5, 0, 0) * CFrame.Angles(math.rad(45), math.rad(0), math.rad(0)),0.04)
  9015. wait(0.2)
  9016.  
  9017. local cor = coroutine.wrap(function()
  9018. lerp(rweld,rweld.C0,CFrame.new(1.5, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)),0.07)
  9019. end)
  9020. local cor2 = coroutine.wrap(function()
  9021. lerp(tweld,tweld.C0,CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(0), math.rad(0)),0.07)
  9022. end)
  9023. cor()
  9024. cor2()
  9025. lerp(lweld,lweld.C0,CFrame.new(-1.5, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)),0.07)
  9026.  
  9027. for i, v in pairs(handle:GetChildren()) do
  9028. if v:IsA("Part") then
  9029. v.Transparency = 0
  9030. end
  9031. end
  9032. handle.Transparency = 0
  9033. hweld.C0 = CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-180),math.rad(-90), 0)
  9034.  
  9035. lweld:Remove()
  9036. rweld:Remove()
  9037. tweld:Remove()
  9038.  
  9039. if torsoclone and char:FindFirstChild("Torso") and char:FindFirstChild("HumanoidRootPart") then
  9040. local clone = torsoclone:Clone()
  9041. clone.Part0 = char.HumanoidRootPart
  9042. clone.Part1 = char.Torso
  9043. clone.Parent = char.HumanoidRootPart
  9044. end
  9045. if leftclone and char:FindFirstChild('Left Arm') and char:FindFirstChild('Torso') then
  9046. local clone = leftclone:Clone()
  9047. clone.Part0 = char.Torso
  9048. clone.Part1 = char["Left Arm"]
  9049. clone.Parent = char.Torso
  9050. end
  9051. if rightclone and char:FindFirstChild('Right Arm') and char:FindFirstChild('Torso') then
  9052. local clone = rightclone:Clone()
  9053. clone.Part0 = char.Torso
  9054. clone.Part1 = char["Right Arm"]
  9055. clone.Parent = char.Torso
  9056. end
  9057. end)
  9058. working = false
  9059. end
  9060.  
  9061. function kill()
  9062. working = true
  9063. pcall(function()
  9064. local rweld = char["Right Arm"]:FindFirstChild("Weld")
  9065. local lweld = char["Left Arm"]:FindFirstChild("Weld")
  9066. local tweld = Instance.new("Weld", char.HumanoidRootPart)
  9067. tweld.Part0 = char.HumanoidRootPart
  9068. tweld.Part1 = char.Torso
  9069. local killsound = Instance.new("Sound", grabbed.Head)
  9070. killsound.SoundId = "rbxassetid://150315649"
  9071. killsound.PlaybackSpeed = 1.2
  9072. local killsoundac = Instance.new("Sound", grabbed.Head)
  9073. killsoundac.SoundId = "rbxassetid://162194585"
  9074. killsoundac.PlaybackSpeed = 1
  9075. killsoundac.Volume = 1
  9076. local throwsound = Instance.new("Sound", char.Head)
  9077. throwsound.SoundId = "rbxassetid://711753382"
  9078. throwsound.PlaybackSpeed = 0.75
  9079. local chokesound = Instance.new("Sound", grabbed.Head)
  9080. chokesound.SoundId = "rbxassetid://418658161"
  9081. chokesound.TimePosition = 3
  9082. chokesound.PlaybackSpeed = 1
  9083. local bleedsound = Instance.new("Sound", grabbed.Head)
  9084. bleedsound.SoundId = "rbxassetid://244502094"
  9085. bleedsound.PlaybackSpeed = 1.5
  9086. bleedsound.Volume = 1
  9087.  
  9088. pitchun = math.random(9, 12)/10
  9089. pitchdos = math.random(9, 13)/10
  9090.  
  9091. killsound.PlaybackSpeed = pitchun
  9092. killsoundac.PlaybackSpeed = pitchdos
  9093. chokesound.PlaybackSpeed = pitchun
  9094.  
  9095. pcall(function()
  9096. grabbed.HumanoidRootPart:Destroy()
  9097. end)
  9098.  
  9099. lerp(rweld,rweld.C0,CFrame.new(0.5, 0.7, -0.70) * CFrame.Angles(0, math.rad(100), math.rad(105)),0.1)
  9100. wait(0.2)
  9101. lerp(rweld,rweld.C0,CFrame.new(2, 0.5, 0) * CFrame.Angles(0, math.rad(0), math.rad(90)),0.04)
  9102.  
  9103. killsound:Play()
  9104. killsoundac:Play()
  9105. chokesound:Play()
  9106. bleedsound:Play()
  9107.  
  9108. local ayybleed = Instance.new('Part',grabbed)
  9109. ayybleed.Size = Vector3.new(0.2,0.2,0.2)
  9110. ayybleed.BrickColor = BrickColor.new('Maroon')
  9111. ayybleed.Material = Enum.Material.SmoothPlastic
  9112. ayybleed.Name = "ayybleed"
  9113. ayybleed.CanCollide = false
  9114. ayybleed.Transparency = 0.5
  9115. ayybleed.CFrame = grabbed.Head.CFrame
  9116. ayybleed:BreakJoints()
  9117. local attachment1 = Instance.new('Attachment',ayybleed)
  9118. attachment1.Position = Vector3.new(-0.55,0,0)
  9119. attachment1.Orientation = Vector3.new(90, 0, -90)
  9120. local attachment0 = Instance.new('Attachment')
  9121. pcall(function()
  9122. attachment0.Parent = grabbed.Torso
  9123. end)
  9124. pcall(function()
  9125. attachment0.Parent = grabbed.UpperTorso
  9126. end)
  9127. if attachment0 and attachment1 then
  9128. local constraint = Instance.new("HingeConstraint")
  9129. constraint.Attachment0 = attachment0
  9130. constraint.Attachment1 = attachment1
  9131. constraint.LimitsEnabled = true
  9132. constraint.UpperAngle = 0
  9133. constraint.LowerAngle = 0
  9134. pcall(function()
  9135. constraint.Parent = grabbed.Torso
  9136. end)
  9137. pcall(function()
  9138. constraint.Parent = grabbed.UpperTorso
  9139. end)
  9140. end
  9141. local bleedBLEED= coroutine.wrap(function()
  9142. bleed(ayybleed)
  9143. end)
  9144. bleedBLEED()
  9145.  
  9146. wait(0.2)
  9147.  
  9148. local at1 = Instance.new("Attachment", handle)
  9149. local at2 = Instance.new("Attachment", handle)
  9150. at1.Visible = false
  9151. at1.Position = Vector3.new(2, 0, 0)
  9152. at2.Visible = false
  9153. at2.Position = Vector3.new(-0.3, 0, 0)
  9154.  
  9155. local trail = Instance.new("Trail", handle)
  9156. trail.Color = ColorSequence.new({ColorSequenceKeypoint.new(0, Color3.fromRGB(255, 255, 255)), ColorSequenceKeypoint.new(1, Color3.fromRGB(255, 255, 255))})
  9157. trail.LightEmission = 0.25
  9158. trail.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0, 0.75), NumberSequenceKeypoint.new(1, 1)})
  9159. trail.Lifetime = 0.10
  9160. trail.MinLength = 0.05
  9161. trail.Attachment0 = at1
  9162. trail.Attachment1 = at2
  9163.  
  9164. lerp(rweld,rweld.C0,CFrame.new(1.5, 0.15, 0.4) * CFrame.Angles(0, math.rad(-40), math.rad(15)),0.08)
  9165. lerp(rweld,rweld.C0,CFrame.new(1.5, 0.15, 0.4) * CFrame.Angles(0, math.rad(-30), math.rad(15)),0.1)
  9166. local coru=coroutine.wrap(function()
  9167. lerp(hweld,hweld.C0,CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0),math.rad(-90), 0), 0.07)
  9168. lerp(hweld,hweld.C0,CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-180),math.rad(-90), 0), 0.09)
  9169. end)
  9170. coru()
  9171. local cor = coroutine.wrap(function()
  9172. lerp(tweld,tweld.C0,CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(-30), 0),0.04)
  9173. end)
  9174. cor()
  9175. grabweld:Remove()
  9176. throwsound:Play()
  9177.  
  9178. local throwvel = Instance.new("BodyThrust")
  9179. throwvel.Force = Vector3.new(0, 3000, -1000)
  9180. pcall(function()
  9181. throwvel.Parent = grabbed.Torso
  9182. end)
  9183. pcall(function()
  9184. throwvel.Parent = grabbed.UpperTorso
  9185. end)
  9186.  
  9187. trail:Remove()
  9188. at1:Remove()
  9189. at2:Remove()
  9190. lerp(lweld,lweld.C0,CFrame.new(-1.3, 0.7, -1) * CFrame.Angles(0, math.rad(-70), math.rad(-105)),0.04)
  9191. pcall(function()
  9192. ragdollpart(grabbed,"Left Arm")
  9193. ragdollpart(grabbed,"Left Leg")
  9194. ragdollpart(grabbed,"Right Arm")
  9195. ragdollpart(grabbed,"Right Leg")
  9196. end)
  9197. pcall(function()
  9198. ragdollpart(grabbed,"LeftUpperLeg")
  9199. ragdollpart(grabbed,"RightUpperLeg")
  9200. ragdollpart(grabbed,"LeftUpperArm")
  9201. ragdollpart(grabbed,"RightUpperArm")
  9202. end)
  9203. wait(0.15)
  9204. throwvel:Remove()
  9205. local cor = coroutine.wrap(function()
  9206. lerp(lweld,lweld.C0,CFrame.new(-1.5, 0, 0) * CFrame.Angles(0, 0, 0),0.08)
  9207. end)
  9208. local cor2 = coroutine.wrap(function()
  9209. lerp(rweld,rweld.C0,CFrame.new(1.5, 0, 0) * CFrame.Angles(0, 0, 0),0.08)
  9210. end)
  9211. cor()
  9212. cor2()
  9213. lerp(tweld,tweld.C0,CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),0.08)
  9214.  
  9215. lweld:Remove()
  9216. rweld:Remove()
  9217. tweld:Remove()
  9218.  
  9219. if torsoclone and char:FindFirstChild("Torso") and char:FindFirstChild("HumanoidRootPart") then
  9220. local clone = torsoclone:Clone()
  9221. clone.Part0 = char.HumanoidRootPart
  9222. clone.Part1 = char.Torso
  9223. clone.Parent = char.HumanoidRootPart
  9224. end
  9225. if leftclone and char:FindFirstChild('Left Arm') and char:FindFirstChild('Torso') then
  9226. local clone = leftclone:Clone()
  9227. clone.Part0 = char.Torso
  9228. clone.Part1 = char["Left Arm"]
  9229. clone.Parent = char.Torso
  9230. end
  9231. if rightclone and char:FindFirstChild('Right Arm') and char:FindFirstChild('Torso') then
  9232. local clone = rightclone:Clone()
  9233. clone.Part0 = char.Torso
  9234. clone.Part1 = char["Right Arm"]
  9235. clone.Parent = char.Torso
  9236. end
  9237. local coru2=coroutine.wrap(function()
  9238. local whyy = grabbed
  9239. local continue = true
  9240. local repeats = 0
  9241. while continue == true do
  9242. local ree = pcall(function()
  9243. if repeats < 20 then
  9244. whyy:FindFirstChildOfClass('Humanoid').Health = whyy:FindFirstChildOfClass('Humanoid').Health-4.9
  9245. repeats = repeats+1
  9246. if whyy:FindFirstChildOfClass('Humanoid').Health <= 0 then
  9247. continue = false
  9248. end
  9249. else
  9250. continue = false
  9251. end
  9252. end)
  9253. if ree == false then
  9254. continue = false
  9255. end
  9256. if continue == true then
  9257. wait(0.2)
  9258. end
  9259. end
  9260. ragdollpart(whyy,"Head")
  9261. end)
  9262. coru2()
  9263. throwsound:Remove()
  9264. killsound:Remove()
  9265. end)
  9266. grabbed = nil
  9267. working = false
  9268. end
  9269.  
  9270. function release()
  9271. working = true
  9272. pcall(function()
  9273. unstun(grabbed)
  9274. grabbed = nil
  9275. grabweld:Destroy()
  9276. removewelds(char["Right Arm"])
  9277. removewelds(char["Left Arm"])
  9278. local rweld = Instance.new("Weld", char["Right Arm"])
  9279. local lweld = Instance.new("Weld", char["Left Arm"])
  9280. rweld.Part0 = char["Torso"]
  9281. rweld.Part1 = char["Right Arm"]
  9282. rweld.C0 = CFrame.new(1, 0.7, -0.75) * CFrame.Angles(0, math.rad(95), math.rad(105))
  9283. lweld.Part0 = char.Torso
  9284. lweld.Part1 = char["Left Arm"]
  9285. lweld.C0 = CFrame.new(-1.25, 0.7, -0.75) * CFrame.Angles(0, math.rad(-140), math.rad(-105))
  9286. local cor = coroutine.wrap(function()
  9287. lerp(rweld,rweld.C0,CFrame.new(1.5, 0, 0) * CFrame.Angles(0, math.rad(0), math.rad(0)),0.08)
  9288. end)
  9289. local cor2 = coroutine.wrap(function()
  9290. lerp(hweld,hweld.C0,CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-180),math.rad(-90), 0),0.08)
  9291. end)
  9292. cor()
  9293. cor2()
  9294. lerp(lweld,lweld.C0,CFrame.new(-1.5, 0, 0) * CFrame.Angles(0, math.rad(0), math.rad(0)),0.08)
  9295. lweld:Remove()
  9296. rweld:Remove()
  9297. if leftclone and char:FindFirstChild('Left Arm') and char:FindFirstChild('Torso') then
  9298. local clone = leftclone:Clone()
  9299. clone.Part0 = char.Torso
  9300. clone.Part1 = char["Left Arm"]
  9301. clone.Parent = char.Torso
  9302. end
  9303. if rightclone and char:FindFirstChild('Right Arm') and char:FindFirstChild('Torso') then
  9304. local clone = rightclone:Clone()
  9305. clone.Part0 = char.Torso
  9306. clone.Part1 = char["Right Arm"]
  9307. clone.Parent = char.Torso
  9308. end
  9309. end)
  9310. working = false
  9311. end
  9312.  
  9313. function grab()
  9314. working = true
  9315. pcall(function()
  9316. local rweld = Instance.new("Weld", char["Right Arm"])
  9317. local lweld = Instance.new("Weld", char["Left Arm"])
  9318. rweld.Part0 = char["Torso"]
  9319. rweld.Part1 = char["Right Arm"]
  9320. rweld.C0 = CFrame.new(1.5, 0, 0)
  9321. lweld.Part0 = char.Torso
  9322. lweld.Part1 = char["Left Arm"]
  9323. lweld.C0 = CFrame.new(-1.5, 0, 0)
  9324.  
  9325. local at1 = Instance.new("Attachment", handle)
  9326. local at2 = Instance.new("Attachment", handle)
  9327. at1.Visible = false
  9328. at1.Position = Vector3.new(2, 0, 0)
  9329. at2.Visible = false
  9330. at2.Position = Vector3.new(-0.3, 0, 0)
  9331.  
  9332. local trail = Instance.new("Trail", handle)
  9333. trail.Color = ColorSequence.new({ColorSequenceKeypoint.new(0, Color3.fromRGB(255, 255, 255)), ColorSequenceKeypoint.new(1, Color3.fromRGB(255, 255, 255))})
  9334. trail.LightEmission = 0.25
  9335. trail.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0, 0.75), NumberSequenceKeypoint.new(1, 1)})
  9336. trail.Lifetime = 0.10
  9337. trail.MinLength = 0.05
  9338. trail.Attachment0 = at1
  9339. trail.Attachment1 = at2
  9340.  
  9341. local spinnyshit = coroutine.wrap(function()
  9342. lerp(hweld,hweld.C0,CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0),math.rad(-90), 0), 0.07)
  9343. lerp(hweld,hweld.C0,CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0),math.rad(90), 0), 0.07)
  9344. end)
  9345. spinnyshit()
  9346. local cor = coroutine.wrap(function()
  9347. lerp(rweld,rweld.C0,CFrame.new(2, 0.5, 0) * CFrame.Angles(0, math.rad(0), math.rad(90)),0.08)
  9348. end)
  9349. cor()
  9350. lerp(lweld,lweld.C0,CFrame.new(-2, 0.5, 0) * CFrame.Angles(0, math.rad(0), math.rad(-90)),0.08)
  9351. wait(0.15)
  9352. grabbing = true
  9353. local cor = coroutine.wrap(function()
  9354. lerp(rweld,rweld.C0,CFrame.new(1, 0.7, -0.75) * CFrame.Angles(0, math.rad(95), math.rad(105)),0.08)
  9355. end)
  9356. cor()
  9357. lerp(lweld,lweld.C0,CFrame.new(-1.25, 0.7, -0.75) * CFrame.Angles(0, math.rad(-140), math.rad(-105)),0.08)
  9358. at1:Remove()
  9359. at2:Remove()
  9360. trail:Remove()
  9361. wait(0.3)
  9362. grabbing = false
  9363.  
  9364. if grabbed == nil then
  9365. local cor = coroutine.wrap(function()
  9366. lerp(rweld,rweld.C0,CFrame.new(1.5, 0, 0) * CFrame.Angles(0, math.rad(0), math.rad(0)),0.08)
  9367. end)
  9368. local cor2 = coroutine.wrap(function()
  9369. lerp(hweld,hweld.C0,CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-180),math.rad(-90), 0),0.08)
  9370. end)
  9371. cor()
  9372. cor2()
  9373. lerp(lweld,lweld.C0,CFrame.new(-1.5, 0, 0) * CFrame.Angles(0, math.rad(0), math.rad(0)),0.08)
  9374. lweld:Remove()
  9375. rweld:Remove()
  9376. if leftclone and char:FindFirstChild('Left Arm') and char:FindFirstChild('Torso') then
  9377. local clone = leftclone:Clone()
  9378. clone.Part0 = char.Torso
  9379. clone.Part1 = char["Left Arm"]
  9380. clone.Parent = char.Torso
  9381. end
  9382. if rightclone and char:FindFirstChild('Right Arm') and char:FindFirstChild('Torso') then
  9383. local clone = rightclone:Clone()
  9384. clone.Part0 = char.Torso
  9385. clone.Part1 = char["Right Arm"]
  9386. clone.Parent = char.Torso
  9387. end
  9388. end
  9389. end)
  9390. working = false
  9391. end
  9392.  
  9393. mouse.KeyDown:connect(function(kkk)
  9394. local key = kkk:lower()
  9395. if usable and working == false then
  9396. if key == "z" then
  9397. if equipped == false then
  9398. if firsttime then
  9399. firsttime = false
  9400. notify("Equipped || Press X or C to equip one of two weapons",true)
  9401. else
  9402. notify("Equipped")
  9403. end
  9404. equip()
  9405. else
  9406. notify("Unequipped")
  9407. unequip()
  9408. end
  9409. elseif key == "x" then
  9410. if blademode ~= "katana" and equipped == true then
  9411. getrid(handle)
  9412. if firsttime2 then
  9413. firsttime2 = false
  9414. notify("Katana mode enabled || Press Q, E, or click to perform an action",true)
  9415. else
  9416. notify("Katana mode enabled")
  9417. end
  9418. katanamode()
  9419. elseif blademode == "katana" then
  9420. getrid(handle)
  9421. notify("Katana mode disabled")
  9422. end
  9423. elseif key == "v" then
  9424. if blademode ~= "gun" and equipped == true then
  9425. getrid(handle)
  9426. if firsttime5 then
  9427. firsttime5 = false
  9428. notify("Gun mode enabled || Click to perform an action",true)
  9429. else
  9430. notify("Gun mode enabled")
  9431. end
  9432. gunmode()
  9433. elseif blademode == "gun" then
  9434. getrid(handle)
  9435. notify("Gun mode disabled")
  9436. end
  9437. elseif key == "b" then
  9438. if childlock == false then
  9439. if blademode ~= "dildo" and equipped == true then
  9440. getrid(handle)
  9441. if firsttime4 then
  9442. firsttime4 = false
  9443. notify("Dildo mode enabled || Click to perform an action",true)
  9444. else
  9445. notify("Dildo mode enabled")
  9446. end
  9447. dildo()
  9448. elseif blademode == "dildo" then
  9449. notify("Dildo mode disabled")
  9450. getrid(handle)
  9451. end
  9452. end
  9453. elseif key == "c" then
  9454. if blademode ~= "knife" and equipped == true then
  9455. getrid(handle)
  9456. if firsttime3 then
  9457. firsttime3 = false
  9458. notify("Knife mode enabled || Press F, E, T, or Q to set modes; Click to perform an action",true)
  9459. else
  9460. notify("Knife mode enabled")
  9461. end
  9462. knifemode()
  9463. elseif blademode == "knife" then
  9464. notify("Knife mode disabled")
  9465. getrid(handle)
  9466. end
  9467. elseif key == "q" then
  9468. if blademode == "katana" then
  9469. notify()
  9470. katanaQ()
  9471. elseif blademode == "knife" then
  9472. mode = "release"
  9473. notify("Mode changed to "..mode)
  9474. end
  9475. elseif key == "e" then
  9476. if blademode == "katana" then
  9477. notify()
  9478. katanaE()
  9479. elseif blademode == "knife" then
  9480. mode = "throw"
  9481. notify("Mode changed to "..mode)
  9482. end
  9483. elseif key == "f" then
  9484. if blademode == "handle" then
  9485. notify([[BEGONE
  9486. THOT]])
  9487. begoneTHOUGHT()
  9488. elseif blademode == "knife" then
  9489. mode = "kill"
  9490. notify("Mode changed to "..mode)
  9491. end
  9492. elseif key == "t" then
  9493. if blademode == "knife" then
  9494. mode = "fling"
  9495. notify("Mode changed to "..mode)
  9496. end
  9497. end
  9498. end
  9499. if key == "m" and sounding == false then
  9500. --badass mode
  9501. pcall(function()
  9502. if badass.Playing == false then
  9503. sounding = true
  9504. for i,v in pairs(workspace:GetDescendants()) do
  9505. if v:IsA('Sound') and v~=player.Character.Head.Badass then
  9506. v:Stop()
  9507. end
  9508. end
  9509. badass:Play()
  9510. badass.Volume = 10
  9511. sounding = false
  9512. else
  9513. sounding = true
  9514. for i=1,100 do
  9515. badass.Volume = badass.Volume-0.1
  9516. wait()
  9517. end
  9518. badass.Volume = 0
  9519. badass:Stop()
  9520. sounding = false
  9521. end
  9522. end)
  9523. end
  9524. if key == "r" then
  9525. rag1 = true
  9526. if rag1 == true and rag2 == true then
  9527. oogabooga()
  9528. end
  9529. end
  9530. if key == "g" then
  9531. rag2 = true
  9532. if rag1 == true and rag2 == true then
  9533. oogabooga()
  9534. end
  9535. end
  9536. end)
  9537. mouse.KeyUp:connect(function(key)
  9538. if key == "r" then
  9539. rag1 = false
  9540. end
  9541. if key == "g" then
  9542. rag2 = false
  9543. end
  9544. end)
  9545.  
  9546. handle.ChildAdded:connect(function(child)
  9547. if child:IsA('BasePart') then
  9548. child.CanCollide = false
  9549. if child.Name == "blade" then
  9550. child.Touched:connect(function(hit)
  9551. if blademode == "katana" and swinging then
  9552. if gettingeem then
  9553. if goteem == nil then
  9554. if hit.Parent:FindFirstChildOfClass('Humanoid') and hit.Parent:FindFirstChildOfClass('Humanoid').Health > 0 and hit.Parent ~= char then
  9555. local sounn = Instance.new("Sound", char.Torso)
  9556. local lipp = math.random(1, 3)
  9557. if lipp == 1 then sounn.SoundId = "rbxassetid://444667844" end
  9558. if lipp == 2 then sounn.SoundId = "rbxassetid://444667824" end
  9559. if lipp == 3 then sounn.SoundId = "rbxassetid://444667859" end
  9560. sounn:Play()
  9561. goteem = hit.Parent
  9562. pcall(function()
  9563. goteem.HumanoidRootPart:Destroy()
  9564. end)
  9565. pcall(function()
  9566. ragdollpart(goteem,"Right Arm")
  9567. ragdollpart(goteem,"Right Leg")
  9568. ragdollpart(goteem,"Left Arm")
  9569. ragdollpart(goteem,"Left Leg")
  9570. end)
  9571. pcall(function()
  9572. ragdollpart(goteem,"RightUpperArm")
  9573. ragdollpart(goteem,"RightUpperLeg")
  9574. ragdollpart(goteem,"LeftUpperArm")
  9575. ragdollpart(goteem,"LeftUpperLeg")
  9576. end)
  9577. pcall(function()
  9578. local weld = Instance.new('Weld',goteem.Torso)
  9579. weld.Part0 = goteem.Torso
  9580. weld.Part1 = handle
  9581. weld.C0 = CFrame.new(0,0,2)*CFrame.Angles(math.rad(90),0,math.rad(-90))
  9582. end)
  9583. pcall(function()
  9584. local weld = Instance.new('Weld',goteem.UpperTorso)
  9585. weld.Part0 = goteem.UpperTorso
  9586. weld.Part1 = handle
  9587. weld.C0 = CFrame.new(0,0,2)*CFrame.Angles(math.rad(90),0,math.rad(-90))
  9588. end)
  9589. pcall(function()
  9590. local thang = "Torso"
  9591. if goteem:FindFirstChild('UpperTorso') then
  9592. thang = "UpperTorso"
  9593. end
  9594. local ayybleed = Instance.new('Part',goteem)
  9595. ayybleed.Size = Vector3.new(0.2,0.2,0.2)
  9596. ayybleed.BrickColor = BrickColor.new('Maroon')
  9597. ayybleed.Material = Enum.Material.SmoothPlastic
  9598. ayybleed.Name = "ayybleed"
  9599. ayybleed.CanCollide = false
  9600. ayybleed.Transparency = 1
  9601. ayybleed.CFrame = goteem[thang].CFrame
  9602. ayybleed:BreakJoints()
  9603. local attachment1 = Instance.new('Attachment',ayybleed)
  9604. attachment1.Position = Vector3.new(0,0,0)
  9605. attachment1.Orientation = Vector3.new(-90, 0, -90)
  9606. local attachment0 = Instance.new('Attachment',goteem[thang])
  9607. if attachment0 and attachment1 then
  9608. local constraint = Instance.new("HingeConstraint")
  9609. constraint.Attachment0 = attachment0
  9610. constraint.Attachment1 = attachment1
  9611. constraint.LimitsEnabled = true
  9612. constraint.UpperAngle = 0
  9613. constraint.LowerAngle = 0
  9614. constraint.Parent = goteem
  9615. end
  9616. local bleedBLEED= coroutine.wrap(function()
  9617. bleed(ayybleed)
  9618. end)
  9619. bleedBLEED()
  9620. end)
  9621. end
  9622. end
  9623. elseif SLESH then
  9624.  
  9625. if hit.Parent and hit.Parent:FindFirstChildOfClass('Humanoid') and hit.Parent:FindFirstChildOfClass('Humanoid').Health > 0 and hit.Parent ~= char then
  9626. local sounn = Instance.new("Sound", char.Torso)
  9627. local lipp = math.random(1, 3)
  9628. if lipp == 1 then sounn.SoundId = "rbxassetid://444667844" end
  9629. if lipp == 2 then sounn.SoundId = "rbxassetid://444667824" end
  9630. if lipp == 3 then sounn.SoundId = "rbxassetid://444667859" end
  9631. sounn:Play()
  9632. ragdollpart(hit.Parent,hit.Name,false)
  9633. end
  9634. else
  9635. if hit.Parent:FindFirstChildOfClass('Humanoid') and hit.Parent:FindFirstChildOfClass('Humanoid').Health > 0 and hit.Parent ~= char then
  9636. local sounn = Instance.new("Sound", char.Torso)
  9637. local lipp = math.random(1, 3)
  9638. if lipp == 1 then sounn.SoundId = "rbxassetid://444667844" end
  9639. if lipp == 2 then sounn.SoundId = "rbxassetid://444667824" end
  9640. if lipp == 3 then sounn.SoundId = "rbxassetid://444667859" end
  9641. sounn:Play()
  9642. swinging = false
  9643. ragdollpart(hit.Parent,"Head",true,false)
  9644. end
  9645. end
  9646. elseif blademode == "knife" then
  9647. if grabbing == true and grabbed == nil then
  9648. if hit.Parent:FindFirstChildOfClass('Humanoid') and hit.Parent:FindFirstChildOfClass('Humanoid').Health > 0 and hit.Parent ~= char then
  9649. grabbed = hit.Parent
  9650.  
  9651. stun(grabbed)
  9652.  
  9653. local grabwelds = Instance.new("Weld", char.Torso)
  9654. grabwelds.Part0 = char.Torso
  9655. pcall(function()
  9656. grabwelds.Part1 = grabbed.Torso
  9657. end)
  9658. pcall(function()
  9659. grabwelds.Part1 = grabbed.UpperTorso
  9660. end)
  9661. grabwelds.C0 = CFrame.new(-0.45, 0, -1)
  9662. grabweld = grabwelds
  9663. end
  9664. end
  9665. end
  9666. end)
  9667. end
  9668. elseif child:IsA("Model") then
  9669. child.ChildAdded:connect(function(dildotip)
  9670. if dildotip:IsA('BasePart') then
  9671. dildotip.Touched:connect(function(hit)
  9672. if MOAN == true then
  9673. if hit.Parent:FindFirstChildOfClass('Humanoid') and hit.Parent:FindFirstChildOfClass('Humanoid').Health > 0 and hit.Parent ~= char then
  9674. local sound = Instance.new('Sound',hit.Parent.Head)
  9675. sound.SoundId = 'rbxassetid://447226325'
  9676. sound.Volume = 5
  9677. sound:Play()
  9678. local sound3 = Instance.new("Sound",hit.Parent.Head)
  9679. sound3.Volume = 5.5
  9680. sound3.SoundId = "rbxassetid://702631545"
  9681. sound3:Play()
  9682. pcall(function()
  9683. for i,v in pairs(hit.Parent.Head:GetChildren()) do
  9684. if v:IsA('Decal') then v:Destroy() end
  9685. end
  9686. end)
  9687. pcall(function()
  9688. local ree=Instance.new('Decal',hit.Parent.Head)
  9689. ree.Name = "face"
  9690. ree.Texture = "rbxassetid://33453339"
  9691. end)
  9692. MOAN = false
  9693. aidsificating = hit.Parent
  9694. for i, v in pairs(handle["pink toy"]:GetChildren()) do
  9695. if v:IsA("Part") then
  9696. v:FindFirstChild("ParticleEmitter"):Destroy()
  9697. end
  9698. end
  9699. end
  9700. end
  9701. end)
  9702. end
  9703. end)
  9704. end
  9705. end)
  9706.  
  9707. mouse.Button1Down:connect(function(jew)
  9708. if usable and working == false and equipped then
  9709. if blademode == "katana" then
  9710. notify()
  9711. katanaswing()
  9712. elseif blademode == "knife" then
  9713. notify()
  9714. if grabbed == nil then
  9715. if mode == "fling" then
  9716. fling()
  9717. else
  9718. grab()
  9719. end
  9720. elseif grabbed ~= nil then
  9721. if mode == "kill" then
  9722. kill()
  9723. elseif mode == "throw" then
  9724. throw()
  9725. elseif mode == "release" then
  9726. release()
  9727. end
  9728. end
  9729. elseif blademode == "dildo" then
  9730. raep()
  9731. end
  9732. end
  9733. end)
  9734.  
  9735. end
  9736. spawned()
  9737.  
  9738. player.CharacterAdded:connect(function()
  9739. spawned()
  9740. end)
  9741. local avgs = {}
  9742.  
  9743. game:GetService('RunService').Heartbeat:connect(function(step)
  9744. local ofps = math.floor((60/(step*60))*10)/10
  9745. if #avgs > 100 then
  9746. table.remove(avgs,1)
  9747. end
  9748. table.insert(avgs,#avgs+1,ofps)
  9749. local fpsa = 0
  9750. for i,v in pairs(avgs) do
  9751. fpsa = fpsa+v
  9752. end
  9753. fpsa = math.floor(fpsa/#avgs)
  9754. fps.Text = 'FPS: '..tostring(fpsa)
  9755. end)
  9756.  
  9757. while true do
  9758. for i,v in pairs(rekt) do
  9759. if v.Parent ~= nil then
  9760. if v:FindFirstChildOfClass('Humanoid') and v:FindFirstChildOfClass('Humanoid').Health>0 then
  9761. for a,c in pairs(v:GetChildren()) do
  9762. if c:IsA('Tool') then
  9763. c.ManualActivationOnly = true
  9764. wait()
  9765. if game:GetService('Players'):GetPlayerFromCharacter(v) then
  9766. c.Parent = game:GetService('Players'):GetPlayerFromCharacter(v).Backpack
  9767. c.ManualActivationOnly = false
  9768. end
  9769. end
  9770. end
  9771. v:FindFirstChildOfClass('Humanoid').PlatformStand = true
  9772. v:FindFirstChildOfClass('Humanoid').Sit = false
  9773. v:FindFirstChildOfClass('Humanoid').JumpPower = 0
  9774. v:FindFirstChildOfClass('Humanoid').WalkSpeed = 0
  9775. v:FindFirstChildOfClass('Humanoid').Name = "hecc"
  9776. else
  9777. table.remove(rekt,i)
  9778. end
  9779. else
  9780. table.remove(rekt,i)
  9781. end
  9782. end
  9783. wait()
  9784. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement