Advertisement
UnoPastes

ForJacq

Feb 21st, 2018
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. --Edited by 1x0x1x0--
  2.  
  3. local Player = game.Players.LocalPlayer
  4. local Character = game.Players.LocalPlayer.Character
  5. function chatfunc(text)
  6. local chat = coroutine.wrap(function()
  7. if Character:FindFirstChild("TalkingBillBoard")~= nil then
  8. Character:FindFirstChild("TalkingBillBoard"):destroy()
  9. end
  10. local naeeym2 = Instance.new("BillboardGui",Character)
  11. naeeym2.Size = UDim2.new(0,100,0,40)
  12. naeeym2.StudsOffset = Vector3.new(0,2,0)
  13. naeeym2.Adornee = Character.Head
  14. naeeym2.Name = "TalkingBillBoard"
  15. local tecks2 = Instance.new("TextLabel",naeeym2)
  16. tecks2.BackgroundTransparency = 1
  17. tecks2.BorderSizePixel = 0
  18. tecks2.Text = ""
  19. tecks2.Font = "Fantasy"
  20. tecks2.TextSize = 30
  21. tecks2.TextStrokeTransparency = 0
  22. tecks2.TextColor3 = Color3.new(255, 0, 255)
  23. tecks2.TextStrokeColor3 = Color3.new(0,0,0)
  24. tecks2.Size = UDim2.new(1,0,0.5,0)
  25. local tecks3 = Instance.new("TextLabel",naeeym2)
  26. tecks3.BackgroundTransparency = 1
  27. tecks3.BorderSizePixel = 0
  28. tecks3.Text = ""
  29. tecks3.Font = "Fantasy"
  30. tecks3.TextSize = 30
  31. tecks3.TextStrokeTransparency = 0
  32. tecks3.TextColor3 = Color3.new(255, 0, 255)
  33. tecks3.TextStrokeColor3 = Color3.new(0,0,0)
  34. tecks3.Size = UDim2.new(1,0,0.5,0)
  35. for i = 1,string.len(text),1 do
  36. tecks2.Text = string.sub(text,1,i)
  37. tecks3.Text = string.sub(text,1,i)
  38. wait(0.01)
  39. end
  40. wait(2)
  41. for i = 1, 50 do
  42. wait()
  43. tecks2.Position = tecks2.Position - UDim2.new(math.random(-.4,.4),math.random(-5,5),.05,math.random(-5,5))
  44. tecks2.Rotation = tecks2.Rotation - .8
  45. tecks2.TextStrokeTransparency = tecks2.TextStrokeTransparency +.04
  46. tecks2.TextTransparency = tecks2.TextTransparency + .04
  47. tecks3.Position = tecks2.Position - UDim2.new(math.random(-.4,.4),math.random(-5,5),.05,math.random(-5,5))
  48. tecks3.Rotation = tecks2.Rotation + .8
  49. tecks3.TextStrokeTransparency = tecks2.TextStrokeTransparency +.04
  50. tecks3.TextTransparency = tecks2.TextTransparency + .04
  51. end
  52. naeeym2:Destroy()
  53. end)
  54. chat()
  55. end
  56. function onChatted(msg)
  57. chatfunc(msg)
  58. end
  59. Player.Chatted:connect(onChatted)
  60.  
  61. wait(2)
  62. local Player = game.Players.LocalPlayer
  63. local standardwalkspeed = Player.Character.Humanoid.WalkSpeed
  64. local base = Player.Character.Humanoid
  65. local standardjumppower = base.JumpPower
  66. local S1 = 43
  67. local S2 = 3
  68. game:GetService("UserInputService").InputBegan:connect(function(Key, Gpe)
  69. if not Gpe then
  70. if Key.KeyCode == Enum.KeyCode.LeftShift then
  71. base.WalkSpeed = standardwalkspeed + S1
  72. base.JumpPower = base.JumpPower * S2
  73. end
  74. end
  75. end)
  76. game:GetService("UserInputService").InputEnded:connect(function(Key, Gpe)
  77. if not Gpe then
  78. if Key.KeyCode == Enum.KeyCode.LeftShift then
  79. base.WalkSpeed = 16
  80. base.JumpPower = 50
  81. end
  82. end
  83. end)
  84.  
  85. Lighting = game.Lighting
  86. skybox = Instance.new("Sky", Lighting)
  87.  
  88. local HBill = Instance.new("BillboardGui",game.Players.LocalPlayer.Character.Head)
  89. local HMain, HBarBack, HBar = Instance.new("Frame", HBill), Instance.new("Frame"), Instance.new("Frame")
  90. local HHealth, HName = Instance.new("TextLabel", HBarBack), Instance.new("TextLabel")
  91. HBill.Size = UDim2.new(15,0,2.2,0)
  92. HBill.Name = "Health Display"
  93. HBill.StudsOffset = Vector3.new(0,4,0)
  94. HBill.AlwaysOnTop = true
  95. HBill.Enabled = true
  96. HMain.BackgroundColor3 = Color3.new(0, 0, 0)
  97. HMain.BackgroundTransparency = 1
  98. HMain.Size = UDim2.new(1,0,1,0)
  99. HBarBack.Parent = HMain
  100. HBarBack.BackgroundColor3 = Color3.new(0,0,0)
  101. HBarBack.BorderColor3 = Color3.new(0,0,0)
  102. HBarBack.BorderSizePixel = 2
  103. HBarBack.Position = UDim2.new(.025, 0, .55, 0)
  104. HBarBack.Size = UDim2.new(.95, 0, .3, 0)
  105. HBar.Parent = HBarBack
  106. HBar.BackgroundColor3 = Color3.new(255, 0, 255)
  107. HBar.BorderColor3 = Color3.new(0,0,0)
  108. HBar.Size = UDim2.new(.5,0,1,0)
  109. HHealth.BackgroundTransparency = 1
  110. HHealth.Size = UDim2.new(1,0,1,0)
  111. HHealth.Font = "SourceSans"
  112. HHealth.Text = " "
  113. HHealth.TextScaled = true
  114. HHealth.TextColor3 = Color3.new(1,1,1)
  115. HHealth.TextStrokeColor3 = BrickColor.new("Hot pink").Color
  116. HHealth.TextStrokeTransparency = 0
  117. HName.Parent = HMain
  118. HName.BackgroundTransparency = 1
  119. HName.Size = UDim2.new(1,0,.5,0)
  120. HName.Font = "SourceSansItalic"
  121. HName.Text = "The Goddess of the SB, Jacq_83"
  122. HName.TextScaled = true
  123. HName.TextColor3 = BrickColor.new("Hot pink").Color
  124. HName.TextStrokeColor3 = Color3.new(0,0,0)
  125. HName.TextStrokeTransparency = 0
  126. HName.TextYAlignment = "Top"
  127. wait(.5)
  128.  
  129. local runServ = game:GetService("RunService").RenderStepped
  130.  
  131. runServ:connect(function()
  132. HHealth.Text = "["..math.floor(game.Players.LocalPlayer.Character.Humanoid.Health).."]"
  133. HBar:TweenSize(UDim2.new((game.Players.LocalPlayer.Character.Humanoid.Health/game.Players.LocalPlayer.Character.Humanoid.MaxHealth),0,1,0), _, "Linear", .4)
  134. end)
  135. local Player=game.Players.LocalPlayer
  136. repeat wait() until Player
  137. local Character=Player.Character
  138. repeat wait() until Character
  139. PlayerGui=Player.PlayerGui
  140. Backpack=Player.Backpack
  141. Torso=Character.Torso
  142. Head=Character.Head
  143. Humanoid=Character.Humanoid
  144. if Humanoid.Health ~= Humanoid.MaxHealth then
  145. Humanoid.MaxHealth = 21e+08
  146. end
  147. spawn(function()
  148. while wait() do
  149. if Humanoid.MaxHealth ~= 20000 then
  150. Humanoid.MaxHealth = 20000
  151. Humanoid.Health = Humanoid.MaxHealth
  152. end
  153. end
  154. end)
  155. Humanoid.JumpPower = 90
  156. LeftArm=Character:WaitForChild("Left Arm")
  157. LeftLeg=Character:WaitForChild("Left Leg")
  158. RightArm=Character:WaitForChild("Right Arm")
  159. RightLeg=Character:WaitForChild("Left Arm")
  160. LS=Torso:WaitForChild("Left Shoulder")
  161. LH=Torso:WaitForChild("Left Hip")
  162. RS=Torso:WaitForChild("Right Shoulder")
  163. RH=Torso:WaitForChild("Right Hip")
  164. Neck=Torso.Neck
  165. it=Instance.new
  166. vt=Vector3.new
  167. cf=CFrame.new
  168. local runServ = game:GetService("RunService").RenderStepped
  169. local TextTable = {}
  170. euler=CFrame.fromEulerAnglesXYZ
  171. angles=CFrame.Angles
  172. necko=cf(0, 1, 0, -1, -0, -0, 0, 0, 1, 0, 1, 0)
  173. necko2=cf(0, -0.5, 0, -1, -0, -0, 0, 0, 1, 0, 1, 0)
  174. LHC0=cf(-1,-1,0,-0,-0,-1,0,1,0,1,0,0)
  175. LHC1=cf(-0.5,1,0,-0,-0,-1,0,1,0,1,0,0)
  176. RHC0=cf(1,-1,0,0,0,1,0,1,0,-1,-0,-0)
  177. RHC1=cf(0.5,1,0,0,0,1,0,1,0,-1,-0,-0)
  178. RootPart=Character.HumanoidRootPart
  179. RootJoint=RootPart.RootJoint
  180. RootCF=euler(-1.57,0,3.14)
  181. attack=false
  182. attackdebounce=false
  183. MMouse=Player:GetMouse()
  184. combo=0
  185. local Anim="Idle"
  186. local Effects={}
  187. equipped=false
  188. local idle=0
  189. local hold=false
  190. local con1=nil
  191. local con2=nil
  192. local Mode="Binary"
  193. local idleanim=0
  194. local idleanim2=false
  195. local impulse=1
  196. local hitfloor,posfloor=nil,nil
  197. local damcount=0
  198. local guard=false
  199. local damagebonus = 1
  200. --player
  201. player=nil
  202. --save shoulders
  203. RSH, LSH=nil, nil
  204. --welds
  205. RW, LW=Instance.new("Weld"), Instance.new("Weld")
  206. RW.Name="Right Shoulder" LW.Name="Left Shoulder"
  207. LH=Torso["Left Hip"]
  208. RH=Torso["Right Hip"]
  209. Asset="http://www.roblox.com/asset/?id="
  210. Health=20000
  211. Humanoid.MaxHealth=math.huge
  212. Humanoid.Health=math.huge
  213. coroutine.resume(coroutine.create(function()
  214. for i=1,20 do
  215. Humanoid.MaxHealth=math.huge
  216. Humanoid.Health=math.huge
  217. end
  218. Humanoid.MaxHealth=20000
  219. Humanoid.Health = Humanoid.MaxHealth
  220. end))
  221.  
  222. function swait(num)
  223. if num==0 or num==nil then
  224. game:service'RunService'.RenderStepped:wait()
  225. else
  226. for i=0,num do
  227. game:service'RunService'.RenderStepped:wait()
  228. end
  229. end
  230. end
  231. ---HEALTHBAR
  232.  
  233. ---REST OF THE SCRIPT IS LIRON
  234.  
  235. local p = game.Players.LocalPlayer--48103735
  236. local char = p.Character
  237. local mouse = p:GetMouse()
  238. local larm = char["Left Arm"]
  239. local rarm = char["Right Arm"]
  240. local lleg = char["Left Leg"]
  241. local rleg = char["Right Leg"]
  242. local hed = char.Head
  243. local torso = char.Torso
  244. local hum = char.Humanoid
  245. local cam = game.Workspace.CurrentCamera
  246. local root = char.HumanoidRootPart
  247. local rj = root.RootJoint
  248. local deb = false
  249. local shot = 0
  250. local stanceToggle = "Idle1"
  251. local l = game:GetService("Lighting")
  252. local rs = game:GetService("RunService").RenderStepped
  253. local hb = game:GetService("RunService").Heartbeat
  254. local Stepped = game:GetService("RunService").Stepped
  255. math.randomseed(os.time())
  256. hum.JumpPower = 100
  257. ----------------------------------------------------
  258. fat = Instance.new("BindableEvent",script)
  259. fat.Name = "Heartbeat"
  260.  
  261. script:WaitForChild("Heartbeat")
  262.  
  263. frame = 1/30
  264. tf = 0
  265. allowframeloss = false --if set to true will fire every frame it possibly can. This will result in multiple events happening at the same time whenever delta returns frame*2 or greater.
  266. tossremainder = false --if set to true t will be set to 0 after Fire()-ing.
  267. lastframe = tick()
  268. script.Heartbeat:Fire() --ayy lmao
  269.  
  270. game:GetService("RunService").Heartbeat:connect(function(s,p) --herp derp
  271. tf = tf + s
  272. if tf >= frame then
  273. if allowframeloss then
  274. script.Heartbeat:Fire()
  275. lastframe=tick()
  276. else
  277. --print("FIRED "..math.floor(t/frame).." FRAME(S)","REMAINDER "..(t - frame*(math.floor(t/frame))))
  278. for i=1, math.floor(tf/frame) do
  279. script.Heartbeat:Fire()
  280. end
  281. lastframe=tick()
  282. end
  283. if tossremainder then
  284. tf = 0
  285. else
  286. tf = tf - frame * math.floor(tf/frame)
  287. end
  288. end
  289. end)
  290. ----------------------------------------------------
  291. for i,v in pairs (hed:GetChildren()) do
  292. if v:IsA("Sound") then
  293. v:Destroy()
  294. end
  295. end
  296. ----------------------------------------------------
  297. Debounces = {
  298. CanAttack = true;
  299. CanJoke = true;
  300. NoIdl = false;
  301. Slashing = false;
  302. Slashed = false;
  303. ks = false;
  304. }
  305. ----------------------------------------------------
  306. function weld5(part0, part1, c0, c1)
  307. weeld=Instance.new("Weld", part0)
  308. weeld.Part0=part0
  309. weeld.Part1=part1
  310. weeld.C0=c0
  311. weeld.C1=c1
  312. return weeld
  313. end
  314. ----------------------------------------------------
  315. function NewPart(prnt,siz,cf,trans,anc,mat,col)
  316. local prt=Instance.new("Part")
  317. prt.Parent=prnt
  318. prt.Name="Part"
  319. prt.Size=siz
  320. prt.CanCollide=false
  321. prt.Anchored=anc
  322. prt.Locked=true
  323. prt.Transparency = trans
  324. prt.TopSurface=10
  325. prt.BottomSurface=10
  326. prt.FrontSurface=10
  327. prt.BackSurface=10
  328. prt.LeftSurface=10
  329. prt.RightSurface=10
  330. prt:BreakJoints()
  331. prt.CFrame=cf or CFrame.new(30,10,30)
  332. prt.Material=mat
  333. prt.BrickColor=BrickColor.new(col)
  334. m=Instance.new("SpecialMesh",prt)
  335. m.MeshType=6
  336. return prt
  337. end
  338. ----------------------------------------------------
  339. function lerp(a, b, t) -- Linear interpolation
  340. return a + (b - a)*t
  341. end
  342.  
  343. function slerp(a, b, t) --Spherical interpolation
  344. dot = a:Dot(b)
  345. if dot > 0.99999 or dot < -0.99999 then
  346. return t <= 0.5 and a or b
  347. else
  348. r = math.acos(dot)
  349. return (a*math.sin((1 - t)*r) + b*math.sin(t*r)) / math.sin(r)
  350. end
  351. end
  352.  
  353. function matrixInterpolate(a, b, t)
  354. local ax, ay, az, a00, a01, a02, a10, a11, a12, a20, a21, a22 = a:components()
  355. local bx, by, bz, b00, b01, b02, b10, b11, b12, b20, b21, b22 = b:components()
  356. local v0 = lerp(Vector3.new(ax, ay, az), Vector3.new(bx , by , bz), t) -- Position
  357. local v1 = slerp(Vector3.new(a00, a01, a02), Vector3.new(b00, b01, b02), t) -- Vector right
  358. local v2 = slerp(Vector3.new(a10, a11, a12), Vector3.new(b10, b11, b12), t) -- Vector up
  359. local v3 = slerp(Vector3.new(a20, a21, a22), Vector3.new(b20, b21, b22), t) -- Vector back
  360. local t = v1:Dot(v2)
  361. if not (t < 0 or t == 0 or t > 0) then -- Failsafe
  362. return CFrame.new()
  363. end
  364. return CFrame.new(
  365. v0.x, v0.y, v0.z,
  366. v1.x, v1.y, v1.z,
  367. v2.x, v2.y, v2.z,
  368. v3.x, v3.y, v3.z)
  369. end
  370. ----------------------------------------------------
  371. function genWeld(a,b)
  372. local w = Instance.new("Weld",a)
  373. w.Part0 = a
  374. w.Part1 = b
  375. return w
  376. end
  377. function weld(a, b)
  378. local weld = Instance.new("Weld")
  379. weld.Name = "W"
  380. weld.Part0 = a
  381. weld.Part1 = b
  382. weld.C0 = a.CFrame:inverse() * b.CFrame
  383. weld.Parent = a
  384. return weld;
  385. end
  386. ----------------------------------------------------
  387. function Lerp(c1,c2,al)
  388. local com1 = {c1.X,c1.Y,c1.Z,c1:toEulerAnglesXYZ()}
  389. local com2 = {c2.X,c2.Y,c2.Z,c2:toEulerAnglesXYZ()}
  390. for i,v in pairs(com1) do
  391. com1[i] = v+(com2[i]-v)*al
  392. end
  393. return CFrame.new(com1[1],com1[2],com1[3]) * CFrame.Angles(select(4,unpack(com1)))
  394. end
  395. ----------------------------------------------------
  396. newWeld = function(wp0, wp1, wc0x, wc0y, wc0z)
  397. local wld = Instance.new("Weld", wp1)
  398. wld.Part0 = wp0
  399. wld.Part1 = wp1
  400. wld.C0 = CFrame.new(wc0x, wc0y, wc0z)
  401. end
  402. ----------------------------------------------------
  403. newWeld(torso, larm, -1.5, 0.5, 0)
  404. larm.Weld.C1 = CFrame.new(0, 0.5, 0)
  405. newWeld(torso, rarm, 1.5, 0.5, 0)
  406. rarm.Weld.C1 = CFrame.new(0, 0.5, 0)
  407. newWeld(torso, hed, 0, 1.5, 0)
  408. newWeld(torso, lleg, -0.5, -1, 0)
  409. lleg.Weld.C1 = CFrame.new(0, 1, 0)
  410. newWeld(torso, rleg, 0.5, -1, 0)
  411. rleg.Weld.C1 = CFrame.new(0, 1, 0)
  412. newWeld(root, torso, 0, -1, 0)
  413. torso.Weld.C1 = CFrame.new(0, -1, 0)
  414. ----------------------------------------------------
  415. z = Instance.new("Sound",char)
  416. z.SoundId = "rbxassetid://1105378416"--THIS IS THE AUDIO FOR THE SCRIPT
  417. z.Looped = true
  418. z.Pitch = 1
  419. z.Volume = 4
  420. wait(0.1)
  421. z:Play()
  422.  
  423. z2 = Instance.new("Sound", larm)
  424. z2.SoundId = 'rbxassetid://415880478'
  425. z2.Pitch = 1
  426. z2.Volume = 1
  427. z2.Looped = false
  428. z2:Play()
  429. ----------------------------------------------------
  430. New = function(Object, Parent, Name, Data)
  431. local Object = Instance.new(Object)
  432. for Index, Value in pairs(Data or {}) do
  433. Object[Index] = Value
  434. end
  435. Object.Parent = Parent
  436. Object.Name = Name
  437. return Object
  438. end
  439. ----------------------------------------------------
  440. --Left Arm
  441. m = Instance.new("Model")
  442. m.Name = "LeftArm"
  443. p1 = Instance.new("Part", m)
  444. p1.BrickColor = BrickColor.new("Hot pink")
  445. p1.Material = Enum.Material.Neon
  446. p1.CFrame = CFrame.new(-1.5, 5.73969078, 22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  447. p1.Size = Vector3.new(1, 0.200000048, 1)
  448. p1.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  449. p1.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  450. p1.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  451. p1.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  452. p1.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  453. p1.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  454. b1 = Instance.new("SpecialMesh", p1)
  455. b1.MeshType = Enum.MeshType.Brick
  456. b1.Name = "Mesh"
  457. b1.Scale = Vector3.new(1.03999996, 1.01999998, 1.03999996)
  458. p2 = Instance.new("Part", m)
  459. p2.BrickColor = BrickColor.new("Hot pink")
  460. p2.Material = Enum.Material.Neon
  461. p2.CFrame = CFrame.new(-1.5, 6.03969383, 22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  462. p2.Size = Vector3.new(1, 0.200000048, 1)
  463. p2.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  464. p2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  465. p2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  466. p2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  467. p2.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  468. p2.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  469. b2 = Instance.new("SpecialMesh", p2)
  470. b2.MeshType = Enum.MeshType.Brick
  471. b2.Name = "Mesh"
  472. b2.Scale = Vector3.new(1.03999996, 1.01999998, 1.03999996)
  473. p3 = Instance.new("Part", m)
  474. p3.BrickColor = BrickColor.new("Hot pink")
  475. p3.Material = Enum.Material.Neon
  476. p3.CFrame = CFrame.new(-1.5, 6.63968849, 22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  477. p3.Size = Vector3.new(1, 0.200000048, 1)
  478. p3.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  479. p3.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  480. p3.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  481. p3.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  482. p3.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  483. p3.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  484. b3 = Instance.new("SpecialMesh", p3)
  485. b3.MeshType = Enum.MeshType.Brick
  486. b3.Name = "Mesh"
  487. b3.Scale = Vector3.new(1.03999996, 1.01999998, 1.03999996)
  488. p4 = Instance.new("Part", m)
  489. p4.BrickColor = BrickColor.new("Sunrise")
  490. p4.Material = Enum.Material.SmoothPlastic
  491. p4.Name = "LeftArmPlate"
  492. p4.Size = Vector3.new(1, 2, 1)
  493. p4.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  494. p4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  495. p4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  496. p4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  497. p4.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  498. p4.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  499. b4 = Instance.new("SpecialMesh", p4)
  500. b4.MeshType = Enum.MeshType.Brick
  501. b4.Name = "Mesh"
  502. b4.Scale = Vector3.new(1.01999998, 1.01999998, 1.01999998)
  503. p5 = Instance.new("Part", m)
  504. p5.BrickColor = BrickColor.new("Hot pink")
  505. p5.Material = Enum.Material.Neon
  506. p5.CFrame = CFrame.new(-1.5, 6.33969307, 22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  507. p5.Size = Vector3.new(1, 0.200000048, 1)
  508. p5.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  509. p5.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  510. p5.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  511. p5.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  512. p5.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  513. p5.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  514. b5 = Instance.new("SpecialMesh", p5)
  515. b5.MeshType = Enum.MeshType.Brick
  516. b5.Name = "Mesh"
  517. b5.Scale = Vector3.new(1.03999996, 1.01999998, 1.03999996)
  518. p6 = Instance.new("Part", m)
  519. p6.BrickColor = BrickColor.new("Hot pink")
  520. p6.Material = Enum.Material.Neon
  521. p6.CFrame = CFrame.new(-1.5, 5.73969078, 22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  522. p6.Size = Vector3.new(1, 0.200000048, 1)
  523. p6.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  524. p6.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  525. p6.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  526. p6.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  527. p6.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  528. p6.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  529. b6 = Instance.new("SpecialMesh", p6)
  530. b6.MeshType = Enum.MeshType.Brick
  531. b6.Name = "Mesh"
  532. b6.Scale = Vector3.new(1.05999994, 0.699999988, 1.05999994)
  533. p7 = Instance.new("Part", m)
  534. p7.BrickColor = BrickColor.new("Hot pink")
  535. p7.Material = Enum.Material.Neon
  536. p7.CFrame = CFrame.new(-1.5, 6.03969383, 22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  537. p7.FormFactor = Enum.FormFactor.Custom
  538. p7.Size = Vector3.new(1, 0.200000048, 1)
  539. p7.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  540. p7.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  541. p7.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  542. p7.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  543. p7.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  544. p7.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  545. b7 = Instance.new("SpecialMesh", p7)
  546. b7.MeshType = Enum.MeshType.Brick
  547. b7.Name = "Mesh"
  548. b7.Scale = Vector3.new(1.05999994, 0.699999988, 1.05999994)
  549. p8 = Instance.new("Part", m)
  550. p8.BrickColor = BrickColor.new("Hot pink")
  551. p8.Material = Enum.Material.Neon
  552. p8.CFrame = CFrame.new(-1.5, 6.33969307, 22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  553. p8.FormFactor = Enum.FormFactor.Custom
  554. p8.Size = Vector3.new(1, 0.200000048, 1)
  555. p8.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  556. p8.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  557. p8.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  558. p8.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  559. p8.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  560. p8.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  561. b8 = Instance.new("SpecialMesh", p8)
  562. b8.MeshType = Enum.MeshType.Brick
  563. b8.Name = "Mesh"
  564. b8.Scale = Vector3.new(1.05999994, 0.699999988, 1.05999994)
  565. p9 = Instance.new("Part", m)
  566. p9.BrickColor = BrickColor.new("Hot pink")
  567. p9.Material = Enum.Material.Neon
  568. p9.CFrame = CFrame.new(-1.5, 6.63968849, 22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  569. p9.FormFactor = Enum.FormFactor.Custom
  570. p9.Size = Vector3.new(1, 0.200000048, 1)
  571. p9.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  572. p9.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  573. p9.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  574. p9.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  575. p9.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  576. p9.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  577. b9 = Instance.new("SpecialMesh", p9)
  578. b9.MeshType = Enum.MeshType.Brick
  579. b9.Name = "Mesh"
  580. b9.Scale = Vector3.new(1.05999994, 0.699999988, 1.05999994)
  581. p10 = Instance.new("Part", m)
  582. p10.BrickColor = BrickColor.new("Sunrise")
  583. p10.Material = Enum.Material.SmoothPlastic
  584. p10.CFrame = CFrame.new(-1.5, 6.78969193, 22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  585. p10.FormFactor = Enum.FormFactor.Custom
  586. p10.Size = Vector3.new(1, 0.349999994, 1)
  587. p10.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  588. p10.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  589. p10.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  590. p10.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  591. p10.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  592. p10.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  593. b10 = Instance.new("SpecialMesh", p10)
  594. b10.MeshType = Enum.MeshType.Brick
  595. b10.Name = "Mesh"
  596. b10.Scale = Vector3.new(1.12, 1.01999998, 1.12)
  597. p11 = Instance.new("Part", m)
  598. p11.BrickColor = BrickColor.new("Sunrise")
  599. p11.Material = Enum.Material.Metal
  600. p11.CFrame = CFrame.new(-1.5, 6.48969078, 22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  601. p11.FormFactor = Enum.FormFactor.Custom
  602. p11.Size = Vector3.new(1, 0.25, 1)
  603. p11.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  604. p11.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  605. p11.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  606. p11.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  607. p11.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  608. p11.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  609. b11 = Instance.new("SpecialMesh", p11)
  610. b11.MeshType = Enum.MeshType.Brick
  611. b11.Name = "Mesh"
  612. b11.Scale = Vector3.new(1.03999996, 0.400000006, 1.03999996)
  613. p12 = Instance.new("Part", m)
  614. p12.BrickColor = BrickColor.new("Sunrise")
  615. p12.Material = Enum.Material.Metal
  616. p12.CFrame = CFrame.new(-1.5, 6.18969154, 22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  617. p12.FormFactor = Enum.FormFactor.Custom
  618. p12.Size = Vector3.new(1, 0.25, 1)
  619. p12.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  620. p12.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  621. p12.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  622. p12.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  623. p12.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  624. p12.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  625. b12 = Instance.new("SpecialMesh", p12)
  626. b12.MeshType = Enum.MeshType.Brick
  627. b12.Name = "Mesh"
  628. b12.Scale = Vector3.new(1.03999996, 0.400000006, 1.03999996)
  629. p13 = Instance.new("Part", m)
  630. p13.BrickColor = BrickColor.new("Sunrise")
  631. p13.Material = Enum.Material.Metal
  632. p13.CFrame = CFrame.new(-1.5, 5.88968849, 22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  633. p13.FormFactor = Enum.FormFactor.Custom
  634. p13.Size = Vector3.new(1, 0.25, 1)
  635. p13.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  636. p13.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  637. p13.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  638. p13.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  639. p13.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  640. p13.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  641. b13 = Instance.new("SpecialMesh", p13)
  642. b13.MeshType = Enum.MeshType.Brick
  643. b13.Name = "Mesh"
  644. b13.Scale = Vector3.new(1.03999996, 0.400000006, 1.03999996)
  645. p14 = Instance.new("Part", m)
  646. p14.BrickColor = BrickColor.new("Sunrise")
  647. p14.Material = Enum.Material.Metal
  648. p14.CFrame = CFrame.new(-1.5, 5.58969307, 22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  649. p14.FormFactor = Enum.FormFactor.Custom
  650. p14.Size = Vector3.new(1, 0.25, 1)
  651. p14.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  652. p14.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  653. p14.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  654. p14.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  655. p14.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  656. p14.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  657. b14 = Instance.new("SpecialMesh", p14)
  658. b14.MeshType = Enum.MeshType.Brick
  659. b14.Name = "Mesh"
  660. b14.Scale = Vector3.new(1.03999996, 0.400000006, 1.03999996)
  661. p15 = Instance.new("Part", m)
  662. p15.BrickColor = BrickColor.new("Hot pink")
  663. p15.Material = Enum.Material.Neon
  664. p15.CFrame = CFrame.new(-1.5, 6.63968849, 22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  665. p15.FormFactor = Enum.FormFactor.Custom
  666. p15.Size = Vector3.new(1, 1, 1)
  667. p15.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  668. p15.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  669. p15.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  670. p15.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  671. p15.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  672. p15.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  673. b15 = Instance.new("SpecialMesh", p15)
  674. b15.MeshType = Enum.MeshType.Sphere
  675. b15.Name = "Mesh"
  676. p16 = Instance.new("Part", m)
  677. p16.BrickColor = BrickColor.new("Sunrise")
  678. p16.Material = Enum.Material.Metal
  679. p16.CFrame = CFrame.new(-1.49142194, 4.80968094, 21.7695732, 1, 1.67448022e-007, -1.06342185e-007, -2.04123751e-007, 0.500000119, -0.866025269, -6.57511308e-008, 0.866025329, 0.5)
  680. p16.FormFactor = Enum.FormFactor.Custom
  681. p16.Size = Vector3.new(0.200000003, 0.200000048, 0.599999964)
  682. p16.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  683. p16.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  684. p16.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  685. p16.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  686. p16.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  687. p16.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  688. b16 = Instance.new("SpecialMesh", p16)
  689. b16.MeshType = Enum.MeshType.Brick
  690. b16.Name = "Mesh"
  691. b16.Scale = Vector3.new(1.04999995, 1.01999998, 1.03999996)
  692. p17 = Instance.new("Part", m)
  693. p17.BrickColor = BrickColor.new("Sunrise")
  694. p17.Material = Enum.Material.SmoothPlastic
  695. p17.CFrame = CFrame.new(-1.50000083, 5.33968592, 22.4999943, 1, -9.44388034e-009, 5.2184074e-008, -7.54702114e-008, 0.999999881, 2.38418579e-007, 2.60919535e-008, 1.1920929e-007, 0.999999881)
  696. p17.FormFactor = Enum.FormFactor.Custom
  697. p17.Size = Vector3.new(1.01999998, 0.300000012, 1.01999998)
  698. p17.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  699. p17.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  700. p17.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  701. p17.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  702. p17.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  703. p17.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  704. b17 = Instance.new("SpecialMesh", p17)
  705. b17.MeshType = Enum.MeshType.Brick
  706. b17.Name = "Mesh"
  707. b17.Scale = Vector3.new(1.01999998, 1.01999998, 1.01999998)
  708. p18 = Instance.new("Part", m)
  709. p18.BrickColor = BrickColor.new("Sunrise")
  710. p18.Material = Enum.Material.SmoothPlastic
  711. p18.CFrame = CFrame.new(-1.50000072, 5.33968782, 22.4999962, 1, -3.77485776e-008, 7.82760807e-008, -1.03774902e-007, 0.999999881, 3.57627869e-007, 5.21839532e-008, 2.38418565e-007, 0.999999881)
  712. p18.FormFactor = Enum.FormFactor.Custom
  713. p18.Size = Vector3.new(1.00999999, 0.400000036, 1.00999999)
  714. p18.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  715. p18.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  716. p18.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  717. p18.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  718. p18.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  719. p18.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  720. b18 = Instance.new("SpecialMesh", p18)
  721. b18.MeshType = Enum.MeshType.Brick
  722. b18.Name = "Mesh"
  723. b18.Scale = Vector3.new(1.01999998, 1.01999998, 1.01999998)
  724. p19 = Instance.new("Part", m)
  725. p19.BrickColor = BrickColor.new("Sunrise")
  726. p19.Material = Enum.Material.SmoothPlastic
  727. p19.CFrame = CFrame.new(-1.5000006, 5.33968973, 22.4999981, 1, -6.60532748e-008, 1.04368084e-007, -1.32079592e-007, 0.999999881, 4.76837158e-007, 7.82759457e-008, 3.5762784e-007, 0.999999881)
  728. p19.FormFactor = Enum.FormFactor.Custom
  729. p19.Size = Vector3.new(1.02999997, 0.200000003, 1.02999997)
  730. p19.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  731. p19.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  732. p19.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  733. p19.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  734. p19.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  735. p19.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  736. b19 = Instance.new("SpecialMesh", p19)
  737. b19.MeshType = Enum.MeshType.Brick
  738. b19.Name = "Mesh"
  739. b19.Scale = Vector3.new(1.02999997, 0.50999999, 1.02999997)
  740. p20 = Instance.new("Part", m)
  741. p20.BrickColor = BrickColor.new("Carnation pink")
  742. p20.Material = Enum.Material.SmoothPlastic
  743. p20.CFrame = CFrame.new(-1.50000048, 5.33969164, 22.5, 1, -9.4357965e-008, 1.3046008e-007, -1.60384275e-007, 0.999999881, 5.96046448e-007, 1.04367942e-007, 4.76837101e-007, 0.999999881)
  744. p20.FormFactor = Enum.FormFactor.Custom
  745. p20.Size = Vector3.new(1.02999997, 0.200000003, 1.02999997)
  746. p20.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  747. p20.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  748. p20.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  749. p20.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  750. p20.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  751. p20.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  752. b20 = Instance.new("SpecialMesh", p20)
  753. b20.MeshType = Enum.MeshType.Brick
  754. b20.Name = "Mesh"
  755. b20.Scale = Vector3.new(1.01999998, 1.01999998, 1.01999998)
  756. p21 = Instance.new("Part", m)
  757. p21.BrickColor = BrickColor.new("Sunrise")
  758. p21.Material = Enum.Material.Metal
  759. p21.CFrame = CFrame.new(-1.93255413, 4.43040705, 22.5000057, -1.61368675e-007, -0.707106769, -0.707106769, -4.62050195e-007, -0.707106471, 0.707106948, -0.999999881, -5.86611463e-007, 4.45824725e-007)
  760. p21.FormFactor = Enum.FormFactor.Custom
  761. p21.Size = Vector3.new(0.200000003, 0.200000048, 0.399999976)
  762. p21.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  763. p21.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  764. p21.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  765. p21.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  766. p21.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  767. p21.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  768. b21 = Instance.new("SpecialMesh", p21)
  769. b21.MeshType = Enum.MeshType.Wedge
  770. b21.Name = "Mesh"
  771. b21.Scale = Vector3.new(1.04999995, 1.01999998, 1.03999996)
  772. p22 = Instance.new("Part", m)
  773. p22.BrickColor = BrickColor.new("Sunrise")
  774. p22.Material = Enum.Material.Metal
  775. p22.CFrame = CFrame.new(-2.22184062, 4.80970049, 22.5000057, -6.50768897e-008, 0.866025269, 0.50000006, -7.82806978e-007, 0.499999732, -0.866025329, -0.999999881, 3.74247918e-007, -2.56530342e-007)
  776. p22.FormFactor = Enum.FormFactor.Custom
  777. p22.Size = Vector3.new(0.200000003, 0.200000048, 0.599999964)
  778. p22.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  779. p22.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  780. p22.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  781. p22.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  782. p22.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  783. p22.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  784. b22 = Instance.new("SpecialMesh", p22)
  785. b22.MeshType = Enum.MeshType.Brick
  786. b22.Name = "Mesh"
  787. b22.Scale = Vector3.new(1.04999995, 1.01999998, 1.03999996)
  788. p23 = Instance.new("Part", m)
  789. p23.BrickColor = BrickColor.new("Sunrise")
  790. p23.Material = Enum.Material.Metal
  791. p23.CFrame = CFrame.new(-2.41184235, 5.35969734, 22.5000076, -1.73507274e-007, 0.98480767, 0.17364803, -8.28146199e-007, 0.173647702, -0.984807611, -0.999999881, 1.49283139e-007, -3.43238185e-007)
  792. p23.FormFactor = Enum.FormFactor.Custom
  793. p23.Size = Vector3.new(0.200000003, 0.200000048, 0.599999964)
  794. p23.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  795. p23.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  796. p23.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  797. p23.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  798. p23.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  799. p23.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  800. b23 = Instance.new("SpecialMesh", p23)
  801. b23.MeshType = Enum.MeshType.Brick
  802. b23.Name = "Mesh"
  803. b23.Scale = Vector3.new(1.04999995, 1.01999998, 1.03999996)
  804. p24 = Instance.new("Part", m)
  805. p24.BrickColor = BrickColor.new("Sunrise")
  806. p24.Material = Enum.Material.Metal
  807. p24.CFrame = CFrame.new(-2.41184616, 5.92969847, 22.5000076, -1.73507232e-007, 0.984807611, -0.173648104, -8.12965368e-007, -0.173648402, -0.984807432, -0.999999881, 2.02498356e-008, -3.8854634e-007)
  808. p24.FormFactor = Enum.FormFactor.Custom
  809. p24.Size = Vector3.new(0.200000003, 0.200000048, 0.599999964)
  810. p24.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  811. p24.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  812. p24.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  813. p24.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  814. p24.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  815. p24.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  816. b24 = Instance.new("SpecialMesh", p24)
  817. b24.MeshType = Enum.MeshType.Brick
  818. b24.Name = "Mesh"
  819. b24.Scale = Vector3.new(1.04999995, 1.01999998, 1.03999996)
  820. p25 = Instance.new("Part", m)
  821. p25.BrickColor = BrickColor.new("Sunrise")
  822. p25.Material = Enum.Material.Metal
  823. p25.CFrame = CFrame.new(-2.14142036, 6.39827347, 22.5000114, -7.7074823e-008, 0.707106829, -0.70710659, -7.54731559e-007, -0.707106769, -0.707106471, -0.999999881, -1.79262827e-007, -4.39258827e-007)
  824. p25.FormFactor = Enum.FormFactor.Custom
  825. p25.Size = Vector3.new(0.200000003, 0.200000048, 0.599999964)
  826. p25.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  827. p25.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  828. p25.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  829. p25.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  830. p25.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  831. p25.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  832. b25 = Instance.new("SpecialMesh", p25)
  833. b25.MeshType = Enum.MeshType.Brick
  834. b25.Name = "Mesh"
  835. b25.Scale = Vector3.new(1.03999996, 1.01999998, 1.03999996)
  836. p26 = Instance.new("Part", m)
  837. p26.BrickColor = BrickColor.new("Sunrise")
  838. p26.Material = Enum.Material.Metal
  839. p26.CFrame = CFrame.new(-1.49142087, 6.39827442, 23.1500168, -0.999999881, 1.1920929e-007, 2.68220901e-007, 1.49011612e-007, -0.707106948, -0.707106233, -1.77625395e-007, -0.707107306, 0.707106113)
  840. p26.FormFactor = Enum.FormFactor.Custom
  841. p26.Size = Vector3.new(0.200000003, 0.200000048, 0.599999964)
  842. p26.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  843. p26.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  844. p26.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  845. p26.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  846. p26.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  847. p26.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  848. b26 = Instance.new("SpecialMesh", p26)
  849. b26.MeshType = Enum.MeshType.Brick
  850. b26.Name = "Mesh"
  851. b26.Scale = Vector3.new(1.03999996, 1.01999998, 1.03999996)
  852. p27 = Instance.new("Part", m)
  853. p27.BrickColor = BrickColor.new("Sunrise")
  854. p27.Material = Enum.Material.Metal
  855. p27.CFrame = CFrame.new(-1.49141955, 5.92969704, 23.420433, -0.999999881, -3.03310628e-007, 3.64177367e-007, 1.73600242e-007, -0.173648864, -0.984807312, 2.67648517e-008, -0.98480773, 0.173647434)
  856. p27.FormFactor = Enum.FormFactor.Custom
  857. p27.Size = Vector3.new(0.200000003, 0.200000048, 0.599999964)
  858. p27.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  859. p27.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  860. p27.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  861. p27.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  862. p27.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  863. p27.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  864. b27 = Instance.new("SpecialMesh", p27)
  865. b27.MeshType = Enum.MeshType.Brick
  866. b27.Name = "Mesh"
  867. b27.Scale = Vector3.new(1.04999995, 1.01999998, 1.03999996)
  868. p28 = Instance.new("Part", m)
  869. p28.BrickColor = BrickColor.new("Sunrise")
  870. p28.Material = Enum.Material.Metal
  871. p28.CFrame = CFrame.new(-1.49141943, 5.35969734, 23.4204254, -0.999999881, -3.81113438e-007, 3.10304756e-007, 1.64414772e-007, 0.173647091, -0.984807551, -6.59209363e-008, -0.984807372, -0.17364876)
  872. p28.FormFactor = Enum.FormFactor.Custom
  873. p28.Size = Vector3.new(0.200000003, 0.200000048, 0.599999964)
  874. p28.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  875. p28.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  876. p28.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  877. p28.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  878. p28.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  879. p28.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  880. b28 = Instance.new("SpecialMesh", p28)
  881. b28.MeshType = Enum.MeshType.Brick
  882. b28.Name = "Mesh"
  883. b28.Scale = Vector3.new(1.04999995, 1.01999998, 1.03999996)
  884. p29 = Instance.new("Part", m)
  885. p29.BrickColor = BrickColor.new("Sunrise")
  886. p29.Material = Enum.Material.Metal
  887. p29.CFrame = CFrame.new(-1.49141932, 4.80969858, 23.2304344, -0.999999881, -4.47128798e-007, 1.98065763e-007, 1.97699791e-007, 0.499998987, -0.866025448, -1.51352623e-007, -0.866024613, -0.500000715)
  888. p29.FormFactor = Enum.FormFactor.Custom
  889. p29.Size = Vector3.new(0.200000003, 0.200000048, 0.599999964)
  890. p29.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  891. p29.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  892. p29.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  893. p29.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  894. p29.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  895. p29.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  896. b29 = Instance.new("SpecialMesh", p29)
  897. b29.MeshType = Enum.MeshType.Brick
  898. b29.Name = "Mesh"
  899. b29.Scale = Vector3.new(1.04999995, 1.01999998, 1.03999996)
  900. p30 = Instance.new("Part", m)
  901. p30.BrickColor = BrickColor.new("Sunrise")
  902. p30.Material = Enum.Material.Metal
  903. p30.CFrame = CFrame.new(-1.49142027, 4.43040895, 22.9411469, -0.999999881, 4.25206935e-007, 1.94115486e-007, 4.85997248e-007, -0.707105517, 0.707107246, -5.38012159e-008, 0.707105875, 0.707107246)
  904. p30.FormFactor = Enum.FormFactor.Custom
  905. p30.Size = Vector3.new(0.200000003, 0.200000048, 0.399999976)
  906. p30.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  907. p30.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  908. p30.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  909. p30.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  910. p30.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  911. p30.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  912. b30 = Instance.new("SpecialMesh", p30)
  913. b30.MeshType = Enum.MeshType.Wedge
  914. b30.Name = "Mesh"
  915. b30.Scale = Vector3.new(1.04999995, 1.01999998, 1.03999996)
  916. p31 = Instance.new("Part", m)
  917. p31.BrickColor = BrickColor.new("Sunrise")
  918. p31.Material = Enum.Material.Metal
  919. p31.CFrame = CFrame.new(-1.49141979, 6.39827871, 21.8500175, 0.999999881, 3.40091276e-007, -1.70074486e-007, -5.85792634e-007, -0.707105458, -0.707107246, 1.83170471e-007, 0.707105815, -0.707107365)
  920. p31.FormFactor = Enum.FormFactor.Custom
  921. p31.Size = Vector3.new(0.200000003, 0.200000048, 0.599999964)
  922. p31.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  923. p31.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  924. p31.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  925. p31.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  926. p31.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  927. p31.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  928. b31 = Instance.new("SpecialMesh", p31)
  929. b31.MeshType = Enum.MeshType.Brick
  930. b31.Name = "Mesh"
  931. b31.Scale = Vector3.new(1.03999996, 1.01999998, 1.03999996)
  932. p32 = Instance.new("Part", m)
  933. p32.BrickColor = BrickColor.new("Sunrise")
  934. p32.Material = Enum.Material.Metal
  935. p32.CFrame = CFrame.new(-1.49141908, 4.43041086, 22.0588818, 0.999999881, -5.29441166e-008, -6.45117154e-007, -3.43892481e-007, -0.707107067, 0.707105517, 1.02492642e-007, -0.707107663, -0.707105637)
  936. p32.FormFactor = Enum.FormFactor.Custom
  937. p32.Size = Vector3.new(0.200000003, 0.200000048, 0.399999976)
  938. p32.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  939. p32.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  940. p32.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  941. p32.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  942. p32.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  943. p32.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  944. b32 = Instance.new("SpecialMesh", p32)
  945. b32.MeshType = Enum.MeshType.Wedge
  946. b32.Name = "Mesh"
  947. b32.Scale = Vector3.new(1.04999995, 1.01999998, 1.03999996)
  948. p33 = Instance.new("Part", m)
  949. p33.BrickColor = BrickColor.new("Sunrise")
  950. p33.Material = Enum.Material.Metal
  951. p33.CFrame = CFrame.new(-1.4914217, 5.92970181, 21.5795879, 0.999999881, 5.22213554e-007, 2.83446013e-008, -7.00635724e-007, -0.173646629, -0.984807253, 1.38921934e-007, 0.984807372, -0.17364946)
  952. p33.FormFactor = Enum.FormFactor.Custom
  953. p33.Size = Vector3.new(0.200000003, 0.200000048, 0.599999964)
  954. p33.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  955. p33.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  956. p33.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  957. p33.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  958. p33.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  959. p33.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  960. b33 = Instance.new("SpecialMesh", p33)
  961. b33.MeshType = Enum.MeshType.Brick
  962. b33.Name = "Mesh"
  963. b33.Scale = Vector3.new(1.04999995, 1.01999998, 1.03999996)
  964. p34 = Instance.new("Part", m)
  965. p34.BrickColor = BrickColor.new("Sunrise")
  966. p34.Material = Enum.Material.Metal
  967. p34.CFrame = CFrame.new(-1.49141932, 5.35969925, 21.5795956, 0.999999881, 5.04442426e-007, 2.22697935e-007, -7.44121166e-007, 0.17364943, -0.984806716, 1.65013844e-007, 0.984807849, 0.173646525)
  968. p34.FormFactor = Enum.FormFactor.Custom
  969. p34.Size = Vector3.new(0.200000003, 0.200000048, 0.599999964)
  970. p34.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  971. p34.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  972. p34.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  973. p34.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  974. p34.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  975. p34.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  976. b34 = Instance.new("SpecialMesh", p34)
  977. b34.MeshType = Enum.MeshType.Brick
  978. b34.Name = "Mesh"
  979. b34.Scale = Vector3.new(1.04999995, 1.01999998, 1.03999996)
  980. w1 = Instance.new("Weld", p1)
  981. w1.Name = "Part_Weld"
  982. w1.Part0 = p1
  983. w1.C0 = CFrame.new(1.5, -17.9000149, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  984. w1.Part1 = p2
  985. w1.C1 = CFrame.new(1.5, -18.2000179, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  986. w2 = Instance.new("Weld", p2)
  987. w2.Name = "Part_Weld"
  988. w2.Part0 = p2
  989. w2.C0 = CFrame.new(1.5, -18.2000179, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  990. w2.Part1 = p3
  991. w2.C1 = CFrame.new(1.5, -18.8000126, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  992. w3 = Instance.new("Weld", p3)
  993. w3.Name = "LeftArmPlate_Weld"
  994. w3.Part0 = p3
  995. w3.C0 = CFrame.new(1.5, -18.8000126, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  996. w3.Part1 = p4
  997. w3.C1 = CFrame.new(1.5, -18.1000156, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  998. w4 = Instance.new("Weld", p4)
  999. w4.Name = "Part_Weld"
  1000. w4.Part0 = p4
  1001. w4.C0 = CFrame.new(1.5, -18.1000156, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1002. w4.Part1 = p5
  1003. w4.C1 = CFrame.new(1.5, -18.5000172, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1004. w5 = Instance.new("Weld", p5)
  1005. w5.Name = "Part_Weld"
  1006. w5.Part0 = p5
  1007. w5.C0 = CFrame.new(1.5, -18.5000172, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1008. w5.Part1 = p6
  1009. w5.C1 = CFrame.new(1.5, -17.9000149, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1010. w6 = Instance.new("Weld", p6)
  1011. w6.Name = "Part_Weld"
  1012. w6.Part0 = p6
  1013. w6.C0 = CFrame.new(1.5, -17.9000149, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1014. w6.Part1 = p7
  1015. w6.C1 = CFrame.new(1.5, -18.2000179, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1016. w7 = Instance.new("Weld", p7)
  1017. w7.Name = "Part_Weld"
  1018. w7.Part0 = p7
  1019. w7.C0 = CFrame.new(1.5, -18.2000179, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1020. w7.Part1 = p8
  1021. w7.C1 = CFrame.new(1.5, -18.5000172, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1022. w8 = Instance.new("Weld", p8)
  1023. w8.Name = "Part_Weld"
  1024. w8.Part0 = p8
  1025. w8.C0 = CFrame.new(1.5, -18.5000172, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1026. w8.Part1 = p9
  1027. w8.C1 = CFrame.new(1.5, -18.8000126, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1028. w9 = Instance.new("Weld", p9)
  1029. w9.Name = "Part_Weld"
  1030. w9.Part0 = p9
  1031. w9.C0 = CFrame.new(1.5, -18.8000126, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1032. w9.Part1 = p10
  1033. w9.C1 = CFrame.new(1.5, -18.950016, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1034. w10 = Instance.new("Weld", p10)
  1035. w10.Name = "Part_Weld"
  1036. w10.Part0 = p10
  1037. w10.C0 = CFrame.new(1.5, -18.950016, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1038. w10.Part1 = p11
  1039. w10.C1 = CFrame.new(1.5, -18.6500149, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1040. w11 = Instance.new("Weld", p11)
  1041. w11.Name = "Part_Weld"
  1042. w11.Part0 = p11
  1043. w11.C0 = CFrame.new(1.5, -18.6500149, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1044. w11.Part1 = p12
  1045. w11.C1 = CFrame.new(1.5, -18.3500156, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1046. w12 = Instance.new("Weld", p12)
  1047. w12.Name = "Part_Weld"
  1048. w12.Part0 = p12
  1049. w12.C0 = CFrame.new(1.5, -18.3500156, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1050. w12.Part1 = p13
  1051. w12.C1 = CFrame.new(1.5, -18.0500126, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1052. w13 = Instance.new("Weld", p13)
  1053. w13.Name = "Part_Weld"
  1054. w13.Part0 = p13
  1055. w13.C0 = CFrame.new(1.5, -18.0500126, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1056. w13.Part1 = p14
  1057. w13.C1 = CFrame.new(1.5, -17.7500172, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1058. w14 = Instance.new("Weld", p14)
  1059. w14.Name = "Part_Weld"
  1060. w14.Part0 = p14
  1061. w14.C0 = CFrame.new(1.5, -17.7500172, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1062. w14.Part1 = p15
  1063. w14.C1 = CFrame.new(1.5, -18.8000126, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1064. w15 = Instance.new("Weld", p15)
  1065. w15.Name = "Part_Weld"
  1066. w15.Part0 = p15
  1067. w15.C0 = CFrame.new(1.5, -18.8000126, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1068. w15.Part1 = p16
  1069. w15.C1 = CFrame.new(1.49142683, -27.338007, 3.81166649, 1, -2.04123751e-007, -6.57511308e-008, 1.67448022e-007, 0.500000119, 0.866025329, -1.06342185e-007, -0.866025269, 0.5)
  1070. w16 = Instance.new("Weld", p16)
  1071. w16.Name = "Part_Weld"
  1072. w16.Part0 = p16
  1073. w16.C0 = CFrame.new(1.49142683, -27.338007, 3.81166649, 1, -2.04123751e-007, -6.57511308e-008, 1.67448022e-007, 0.500000119, 0.866025329, -1.06342185e-007, -0.866025269, 0.5)
  1074. w16.Part1 = p17
  1075. w16.C1 = CFrame.new(1.50000179, -17.5000076, -22.4999943, 1, -4.71655142e-008, -4.97379915e-014, 1.88608098e-008, 1, 2.98023224e-008, 2.60920601e-008, 8.94069672e-008, 1)
  1076. w17 = Instance.new("Weld", p17)
  1077. w17.Name = "Part_Weld"
  1078. w17.Part0 = p17
  1079. w17.C0 = CFrame.new(1.50000179, -17.5000076, -22.4999943, 1, -4.71655142e-008, -4.97379915e-014, 1.88608098e-008, 1, 2.98023224e-008, 2.60920601e-008, 8.94069672e-008, 1)
  1080. w17.Part1 = p18
  1081. w17.C1 = CFrame.new(1.50000179, -17.5000076, -22.4999943, 1, -4.71655142e-008, -4.97379915e-014, 1.88608098e-008, 1, 2.98023224e-008, 2.60920601e-008, 8.94069672e-008, 1)
  1082. w18 = Instance.new("Weld", p18)
  1083. w18.Name = "Part_Weld"
  1084. w18.Part0 = p18
  1085. w18.C0 = CFrame.new(1.50000179, -17.5000076, -22.4999943, 1, -4.71655142e-008, -4.97379915e-014, 1.88608098e-008, 1, 2.98023224e-008, 2.60920601e-008, 8.94069672e-008, 1)
  1086. w18.Part1 = p19
  1087. w18.C1 = CFrame.new(1.50000179, -17.5000076, -22.4999943, 1, -4.71655142e-008, -4.97379915e-014, 1.88608098e-008, 1, 2.98023224e-008, 2.60920601e-008, 8.94069672e-008, 1)
  1088. w19 = Instance.new("Weld", p19)
  1089. w19.Name = "Part_Weld"
  1090. w19.Part0 = p19
  1091. w19.C0 = CFrame.new(1.50000179, -17.5000076, -22.4999943, 1, -4.71655142e-008, -4.97379915e-014, 1.88608098e-008, 1, 2.98023224e-008, 2.60920601e-008, 8.94069672e-008, 1)
  1092. w19.Part1 = p20
  1093. w19.C1 = CFrame.new(1.50000179, -17.5000076, -22.4999943, 1, -4.71655142e-008, -4.97379915e-014, 1.88608098e-008, 1, 2.98023224e-008, 2.60920601e-008, 8.94069672e-008, 1)
  1094. w20 = Instance.new("Weld", p20)
  1095. w20.Name = "Part_Weld"
  1096. w20.Part0 = p20
  1097. w20.C0 = CFrame.new(1.50000179, -17.5000076, -22.4999943, 1, -4.71655142e-008, -4.97379915e-014, 1.88608098e-008, 1, 2.98023224e-008, 2.60920601e-008, 8.94069672e-008, 1)
  1098. w20.Part1 = p21
  1099. w20.C1 = CFrame.new(22.4999943, 10.3648901, -13.0979404, -3.09086232e-008, 1.63798575e-007, -1, -0.707106888, -0.70710665, -9.39673512e-008, -0.70710665, 0.707106888, 1.37678796e-007)
  1100. w21 = Instance.new("Weld", p21)
  1101. w21.Name = "Part_Weld"
  1102. w21.Part0 = p21
  1103. w21.C0 = CFrame.new(22.4999943, 10.3648901, -13.0979404, -3.09086232e-008, 1.63798575e-007, -1, -0.707106888, -0.70710665, -9.39673512e-008, -0.70710665, 0.707106888, 1.37678796e-007)
  1104. w21.Part1 = p22
  1105. w21.C1 = CFrame.new(22.4999981, -6.56083632, 15.8073826, 6.53831052e-008, -1.56958208e-007, -1, 0.866025388, 0.5, -2.18557226e-008, 0.5, -0.866025388, 1.68621398e-007)
  1106. w22 = Instance.new("Weld", p22)
  1107. w22.Name = "Part_Weld"
  1108. w22.Part0 = p22
  1109. w22.C0 = CFrame.new(22.4999981, -6.56083632, 15.8073826, 6.53831052e-008, -1.56958208e-007, -1, 0.866025388, 0.5, -2.18557226e-008, 0.5, -0.866025388, 1.68621398e-007)
  1110. w22.Part1 = p23
  1111. w22.C1 = CFrame.new(22.5, -0.667109907, 17.6726532, -4.30473222e-008, -2.02297542e-007, -1, 0.984807789, 0.17364794, -7.75219178e-008, 0.17364794, -0.984807789, 1.91749166e-007)
  1112. w23 = Instance.new("Weld", p23)
  1113. w23.Name = "Part_Weld"
  1114. w23.Part0 = p23
  1115. w23.C0 = CFrame.new(22.5, -0.667109907, 17.6726532, -4.30473222e-008, -2.02297542e-007, -1, 0.984807789, 0.17364794, -7.75219178e-008, 0.17364794, -0.984807789, 1.91749166e-007)
  1116. w23.Part1 = p24
  1117. w23.C1 = CFrame.new(22.5, 5.5165062, 17.3963699, -4.30473079e-008, -1.87116754e-007, -1, 0.98480773, -0.173648238, -9.9008588e-009, -0.173648238, -0.98480773, 1.91749152e-007)
  1118. w24 = Instance.new("Weld", p24)
  1119. w24.Name = "Part_Weld"
  1120. w24.Part0 = p24
  1121. w24.C0 = CFrame.new(22.5, 5.5165062, 17.3963699, -4.30473079e-008, -1.87116754e-007, -1, 0.98480773, -0.173648238, -9.9008588e-009, -0.173648238, -0.98480773, 1.91749152e-007)
  1122. w24.Part1 = p25
  1123. w24.C1 = CFrame.new(22.5000019, 14.6371164, 11.6086912, 5.33850866e-008, -1.28882959e-007, -1, 0.707106829, -0.707106769, 1.28882959e-007, -0.707106769, -0.707106829, 5.33851079e-008)
  1124. w25 = Instance.new("Weld", p25)
  1125. w25.Name = "Part_Weld"
  1126. w25.Part0 = p25
  1127. w25.C0 = CFrame.new(22.5000019, 14.6371164, 11.6086912, 5.33850866e-008, -1.28882959e-007, -1, 0.707106829, -0.707106769, 1.28882959e-007, -0.707106769, -0.707106829, 5.33851079e-008)
  1128. w25.Part1 = p26
  1129. w25.C1 = CFrame.new(-1.49141967, 29.4924316, -3.24661636, -1, -1.1920929e-007, -4.71654928e-008, 1.1920929e-007, -0.707106709, -0.707106888, 8.94069672e-008, -0.707106829, 0.70710665)
  1130. w26 = Instance.new("Weld", p26)
  1131. w26.Name = "Part_Weld"
  1132. w26.Part0 = p26
  1133. w26.C0 = CFrame.new(-1.49141967, 29.4924316, -3.24661636, -1, -1.1920929e-007, -4.71654928e-008, 1.1920929e-007, -0.707106709, -0.707106888, 8.94069672e-008, -0.707106829, 0.70710665)
  1134. w26.Part1 = p27
  1135. w26.C1 = CFrame.new(-1.49142396, 26.2059097, 13.748271, -1, -1.22925456e-007, 1.83316814e-007, -1.79966634e-007, -0.173648238, -0.98480773, 1.85296102e-007, -0.98480773, 0.173648149)
  1136. w27 = Instance.new("Weld", p27)
  1137. w27.Name = "Part_Weld"
  1138. w27.Part0 = p27
  1139. w27.C0 = CFrame.new(-1.49142396, 26.2059097, 13.748271, -1, -1.22925456e-007, 1.83316814e-007, -1.79966634e-007, -0.173648238, -0.98480773, 1.85296102e-007, -0.98480773, 0.173648149)
  1140. w27.Part1 = p28
  1141. w27.C1 = CFrame.new(-1.49142182, 20.0222931, 21.3207512, -1, -1.60415567e-007, 1.16723079e-007, -1.73416339e-007, 0.17364794, -0.98480773, 1.61053634e-007, -0.98480773, -0.173648015)
  1142. w28 = Instance.new("Weld", p28)
  1143. w28.Name = "Part_Weld"
  1144. w28.Part0 = p28
  1145. w28.C0 = CFrame.new(-1.49142182, 20.0222931, 21.3207512, -1, -1.60415567e-007, 1.16723079e-007, -1.73416339e-007, 0.17364794, -0.98480773, 1.61053634e-007, -0.98480773, -0.173648015)
  1146. w28.Part1 = p29
  1147. w28.C1 = CFrame.new(-1.49142063, 11.6331291, 26.311676, -1, -1.55435174e-007, 5.73833887e-008, -1.6416179e-007, 0.5, -0.866025329, 1.17385696e-007, -0.866025329, -0.500000119)
  1148. w29 = Instance.new("Weld", p29)
  1149. w29.Name = "Part_Weld"
  1150. w29.Part0 = p29
  1151. w29.C0 = CFrame.new(-1.49142063, 11.6331291, 26.311676, -1, -1.55435174e-007, 5.73833887e-008, -1.6416179e-007, 0.5, -0.866025329, 1.17385696e-007, -0.866025329, -0.500000119)
  1152. w29.Part1 = p30
  1153. w29.C1 = CFrame.new(-1.49142897, -4.49042225, -27.9532433, -1, 1.04557571e-007, 1.81026579e-007, 9.25360411e-008, -0.70710665, 0.707106829, 2.00373876e-007, 0.707106888, 0.707106769)
  1154. w30 = Instance.new("Weld", p30)
  1155. w30.Name = "Part_Weld"
  1156. w30.Part0 = p30
  1157. w30.C0 = CFrame.new(-1.49142897, -4.49042225, -27.9532433, -1, 1.04557571e-007, 1.81026579e-007, 9.25360411e-008, -0.70710665, 0.707106829, 2.00373876e-007, 0.707106888, 0.707106769)
  1158. w30.Part1 = p31
  1159. w30.C1 = CFrame.new(1.49142683, -2.32737827, 28.5731888, 1, -1.76048474e-007, -7.77491636e-008, -3.10438502e-008, -0.707106709, 0.707106769, -1.77897419e-007, -0.707106829, -0.707106829)
  1160. w31 = Instance.new("Weld", p31)
  1161. w31.Name = "Part_Weld"
  1162. w31.Part0 = p31
  1163. w31.C0 = CFrame.new(1.49142683, -2.32737827, 28.5731888, 1, -1.76048474e-007, -7.77491636e-008, -3.10438502e-008, -0.707106709, 0.707106769, -1.77897419e-007, -0.707106829, -0.707106829)
  1164. w31.Part1 = p32
  1165. w31.C1 = CFrame.new(1.49142444, 27.3293839, 3.86655521, 1, 9.41566256e-008, -1.8451928e-007, -6.23315088e-008, -0.70710665, -0.707107008, -2.35517859e-007, 0.707106888, -0.70710659)
  1166. w32 = Instance.new("Weld", p32)
  1167. w32.Name = "Part_Weld"
  1168. w32.Part0 = p32
  1169. w32.C0 = CFrame.new(1.49142444, 27.3293839, 3.86655521, 1, 9.41566256e-008, -1.8451928e-007, -6.23315088e-008, -0.70710665, -0.707107008, -2.35517859e-007, 0.707106888, -0.70710659)
  1170. w32.Part1 = p33
  1171. w32.C1 = CFrame.new(1.49143207, -18.1104279, 21.5624332, 1, -2.34282282e-007, -1.74181523e-007, 1.61463277e-007, -0.173648089, 0.98480773, -2.37625457e-007, -0.98480773, -0.173648238)
  1172. w33 = Instance.new("Weld", p33)
  1173. w33.Name = "Part_Weld"
  1174. w33.Part0 = p33
  1175. w33.C0 = CFrame.new(1.49143207, -18.1104279, 21.5624332, 1, -2.34282282e-007, -1.74181523e-007, 1.61463277e-007, -0.173648089, 0.98480773, -2.37625457e-007, -0.98480773, -0.173648238)
  1176. w33.Part1 = p34
  1177. w33.C1 = CFrame.new(1.49143016, -24.2940445, 13.5065851, 1, -2.49463085e-007, -1.74181523e-007, 2.35634644e-007, 0.173648074, 0.98480773, -1.83021399e-007, -0.98480773, 0.17364794)
  1178. m.Parent = larm
  1179. m:MakeJoints()
  1180. ----------------------------------------------------
  1181. local cor = Instance.new("Part", larm.LeftArm)
  1182. cor.Name = "Thingy"
  1183. cor.Locked = true
  1184. cor.BottomSurface = 0
  1185. cor.CanCollide = false
  1186. cor.Size = Vector3.new(1, 1, 1)
  1187. cor.Transparency = 1
  1188. cor.TopSurface = 0
  1189. corw = Instance.new("Weld", cor)
  1190. corw.Part0 = larm
  1191. corw.Part1 = cor
  1192. corw.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  1193. corw.C1 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  1194. weld1 = Instance.new("Weld", larm.LeftArm)
  1195. weld1.Part0 = cor
  1196. weld1.Part1 = larm.LeftArm.LeftArmPlate
  1197. weld1.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  1198. --Right Arm
  1199. m2 = Instance.new("Model")
  1200. m2.Name = "RightArm"
  1201. p1 = Instance.new("Part", m2)
  1202. p1.BrickColor = BrickColor.new("Hot pink")
  1203. p1.Material = Enum.Material.Neon
  1204. p1.CFrame = CFrame.new(3.5, -9.44201183, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1205. p1.FormFactor = Enum.FormFactor.Custom
  1206. p1.Size = Vector3.new(1, 0.200000048, 1)
  1207. p1.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1208. p1.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1209. p1.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1210. p1.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1211. p1.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1212. p1.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1213. b1 = Instance.new("SpecialMesh", p1)
  1214. b1.MeshType = Enum.MeshType.Brick
  1215. b1.Name = "Mesh"
  1216. b1.Scale = Vector3.new(1.05999994, 0.699999988, 1.05999994)
  1217. p2 = Instance.new("Part", m2)
  1218. p2.BrickColor = BrickColor.new("Hot pink")
  1219. p2.Material = Enum.Material.Neon
  1220. p2.CFrame = CFrame.new(3.5, -9.74201393, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1221. p2.FormFactor = Enum.FormFactor.Custom
  1222. p2.Size = Vector3.new(1, 0.200000048, 1)
  1223. p2.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1224. p2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1225. p2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1226. p2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1227. p2.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1228. p2.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1229. b2 = Instance.new("SpecialMesh", p2)
  1230. b2.MeshType = Enum.MeshType.Brick
  1231. b2.Name = "Mesh"
  1232. b2.Scale = Vector3.new(1.05999994, 0.699999988, 1.05999994)
  1233. p3 = Instance.new("Part", m2)
  1234. p3.BrickColor = BrickColor.new("Hot pink")
  1235. p3.Material = Enum.Material.Neon
  1236. p3.CFrame = CFrame.new(3.5, -9.14201164, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1237. p3.FormFactor = Enum.FormFactor.Custom
  1238. p3.Size = Vector3.new(1, 0.200000048, 1)
  1239. p3.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1240. p3.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1241. p3.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1242. p3.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1243. p3.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1244. p3.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1245. b3 = Instance.new("SpecialMesh", p3)
  1246. b3.MeshType = Enum.MeshType.Brick
  1247. b3.Name = "Mesh"
  1248. b3.Scale = Vector3.new(1.05999994, 0.699999988, 1.05999994)
  1249. p4 = Instance.new("Part", m2)
  1250. p4.BrickColor = BrickColor.new("Hot pink")
  1251. p4.Material = Enum.Material.Neon
  1252. p4.CFrame = CFrame.new(3.5, -8.84201622, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1253. p4.FormFactor = Enum.FormFactor.Custom
  1254. p4.Size = Vector3.new(1, 0.200000048, 1)
  1255. p4.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1256. p4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1257. p4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1258. p4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1259. p4.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1260. p4.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1261. b4 = Instance.new("SpecialMesh", p4)
  1262. b4.MeshType = Enum.MeshType.Brick
  1263. b4.Name = "Mesh"
  1264. b4.Scale = Vector3.new(1.05999994, 0.699999988, 1.05999994)
  1265. p5 = Instance.new("Part", m2)
  1266. p5.BrickColor = BrickColor.new("Hot pink")
  1267. p5.Material = Enum.Material.Neon
  1268. p5.CFrame = CFrame.new(3.5, -8.84201622, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1269. p5.FormFactor = Enum.FormFactor.Custom
  1270. p5.Size = Vector3.new(1, 0.200000048, 1)
  1271. p5.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1272. p5.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1273. p5.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1274. p5.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1275. p5.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1276. p5.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1277. b5 = Instance.new("SpecialMesh", p5)
  1278. b5.MeshType = Enum.MeshType.Brick
  1279. b5.Name = "Mesh"
  1280. b5.Scale = Vector3.new(1.03999996, 1.01999998, 1.03999996)
  1281. p6 = Instance.new("Part", m2)
  1282. p6.BrickColor = BrickColor.new("Hot pink")
  1283. p6.Material = Enum.Material.Neon
  1284. p6.CFrame = CFrame.new(3.5, -8.84201622, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1285. p6.FormFactor = Enum.FormFactor.Custom
  1286. p6.Size = Vector3.new(1, 1, 1)
  1287. p6.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1288. p6.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1289. p6.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1290. p6.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1291. p6.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1292. p6.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1293. b6 = Instance.new("SpecialMesh", p6)
  1294. b6.MeshType = Enum.MeshType.Sphere
  1295. b6.Name = "Mesh"
  1296. p7 = Instance.new("Part", m2)
  1297. p7.BrickColor = BrickColor.new("Sunrise")
  1298. p7.Material = Enum.Material.SmoothPlastic
  1299. p7.Name = "RightArmPlate"
  1300. p7.CFrame = CFrame.new(3.5, -9.54201603, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1301. p7.FormFactor = Enum.FormFactor.Symmetric
  1302. p7.Size = Vector3.new(1, 2, 1)
  1303. p7.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1304. p7.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1305. p7.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1306. p7.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1307. p7.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1308. p7.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1309. b7 = Instance.new("SpecialMesh", p7)
  1310. b7.MeshType = Enum.MeshType.Brick
  1311. b7.Name = "Mesh"
  1312. b7.Scale = Vector3.new(1.01999998, 1.01999998, 1.01999998)
  1313. p8 = Instance.new("Part", m2)
  1314. p8.BrickColor = BrickColor.new("Hot pink")
  1315. p8.Material = Enum.Material.Neon
  1316. p8.CFrame = CFrame.new(3.5, -9.14201164, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1317. p8.FormFactor = Enum.FormFactor.Custom
  1318. p8.Size = Vector3.new(1, 0.200000048, 1)
  1319. p8.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1320. p8.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1321. p8.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1322. p8.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1323. p8.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1324. p8.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1325. b8 = Instance.new("SpecialMesh", p8)
  1326. b8.MeshType = Enum.MeshType.Brick
  1327. b8.Name = "Mesh"
  1328. b8.Scale = Vector3.new(1.03999996, 1.01999998, 1.03999996)
  1329. p9 = Instance.new("Part", m2)
  1330. p9.BrickColor = BrickColor.new("Sunrise")
  1331. p9.Material = Enum.Material.SmoothPlastic
  1332. p9.CFrame = CFrame.new(3.5, -8.69201183, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1333. p9.FormFactor = Enum.FormFactor.Custom
  1334. p9.Size = Vector3.new(1, 0.349999994, 1)
  1335. p9.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1336. p9.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1337. p9.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1338. p9.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1339. p9.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1340. p9.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1341. b9 = Instance.new("SpecialMesh", p9)
  1342. b9.MeshType = Enum.MeshType.Brick
  1343. b9.Name = "Mesh"
  1344. b9.Scale = Vector3.new(1.12, 1.01999998, 1.12)
  1345. p10 = Instance.new("Part", m2)
  1346. p10.BrickColor = BrickColor.new("Sunrise")
  1347. p10.Material = Enum.Material.Metal
  1348. p10.CFrame = CFrame.new(3.5, -8.99201584, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1349. p10.FormFactor = Enum.FormFactor.Custom
  1350. p10.Size = Vector3.new(1, 0.25, 1)
  1351. p10.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1352. p10.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1353. p10.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1354. p10.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1355. p10.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1356. p10.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1357. b10 = Instance.new("SpecialMesh", p10)
  1358. b10.MeshType = Enum.MeshType.Brick
  1359. b10.Name = "Mesh"
  1360. b10.Scale = Vector3.new(1.03999996, 0.400000006, 1.03999996)
  1361. p11 = Instance.new("Part", m2)
  1362. p11.BrickColor = BrickColor.new("Sunrise")
  1363. p11.Material = Enum.Material.Metal
  1364. p11.CFrame = CFrame.new(3.5, -9.29201508, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1365. p11.FormFactor = Enum.FormFactor.Custom
  1366. p11.Size = Vector3.new(1, 0.25, 1)
  1367. p11.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1368. p11.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1369. p11.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1370. p11.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1371. p11.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1372. p11.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1373. b11 = Instance.new("SpecialMesh", p11)
  1374. b11.MeshType = Enum.MeshType.Brick
  1375. b11.Name = "Mesh"
  1376. b11.Scale = Vector3.new(1.03999996, 0.400000006, 1.03999996)
  1377. p12 = Instance.new("Part", m2)
  1378. p12.BrickColor = BrickColor.new("Sunrise")
  1379. p12.Material = Enum.Material.Metal
  1380. p12.CFrame = CFrame.new(3.5, -9.59201431, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1381. p12.FormFactor = Enum.FormFactor.Custom
  1382. p12.Size = Vector3.new(1, 0.25, 1)
  1383. p12.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1384. p12.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1385. p12.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1386. p12.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1387. p12.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1388. p12.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1389. b12 = Instance.new("SpecialMesh", p12)
  1390. b12.MeshType = Enum.MeshType.Brick
  1391. b12.Name = "Mesh"
  1392. b12.Scale = Vector3.new(1.03999996, 0.400000006, 1.03999996)
  1393. p13 = Instance.new("Part", m2)
  1394. p13.BrickColor = BrickColor.new("Hot pink")
  1395. p13.Material = Enum.Material.Neon
  1396. p13.CFrame = CFrame.new(3.5, -9.44201088, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1397. p13.FormFactor = Enum.FormFactor.Custom
  1398. p13.Size = Vector3.new(1, 0.200000048, 1)
  1399. p13.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1400. p13.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1401. p13.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1402. p13.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1403. p13.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1404. p13.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1405. b13 = Instance.new("SpecialMesh", p13)
  1406. b13.MeshType = Enum.MeshType.Brick
  1407. b13.Name = "Mesh"
  1408. b13.Scale = Vector3.new(1.03999996, 1.01999998, 1.03999996)
  1409. p14 = Instance.new("Part", m2)
  1410. p14.BrickColor = BrickColor.new("Sunrise")
  1411. p14.Material = Enum.Material.Metal
  1412. p14.CFrame = CFrame.new(3.5, -9.89201069, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1413. p14.FormFactor = Enum.FormFactor.Custom
  1414. p14.Size = Vector3.new(1, 0.25, 1)
  1415. p14.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1416. p14.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1417. p14.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1418. p14.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1419. p14.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1420. p14.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1421. b14 = Instance.new("SpecialMesh", p14)
  1422. b14.MeshType = Enum.MeshType.Brick
  1423. b14.Name = "Mesh"
  1424. b14.Scale = Vector3.new(1.03999996, 0.400000006, 1.03999996)
  1425. p15 = Instance.new("Part", m2)
  1426. p15.BrickColor = BrickColor.new("Hot pink")
  1427. p15.Material = Enum.Material.Neon
  1428. p15.CFrame = CFrame.new(3.5, -9.74201298, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1429. p15.FormFactor = Enum.FormFactor.Custom
  1430. p15.Size = Vector3.new(1, 0.200000048, 1)
  1431. p15.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1432. p15.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1433. p15.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1434. p15.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1435. p15.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1436. p15.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1437. b15 = Instance.new("SpecialMesh", p15)
  1438. b15.MeshType = Enum.MeshType.Brick
  1439. b15.Name = "Mesh"
  1440. b15.Scale = Vector3.new(1.03999996, 1.01999998, 1.03999996)
  1441. p16 = Instance.new("Part", m2)
  1442. p16.BrickColor = BrickColor.new("Sunrise")
  1443. p16.Material = Enum.Material.SmoothPlastic
  1444. p16.CFrame = CFrame.new(3.5, -10.1420107, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1445. p16.FormFactor = Enum.FormFactor.Custom
  1446. p16.Size = Vector3.new(1.01999998, 0.300000012, 1.01999998)
  1447. p16.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1448. p16.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1449. p16.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1450. p16.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1451. p16.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1452. p16.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1453. b16 = Instance.new("SpecialMesh", p16)
  1454. b16.MeshType = Enum.MeshType.Brick
  1455. b16.Name = "Mesh"
  1456. b16.Scale = Vector3.new(1.01999998, 1.01999998, 1.01999998)
  1457. p17 = Instance.new("Part", m2)
  1458. p17.BrickColor = BrickColor.new("Sunrise")
  1459. p17.Material = Enum.Material.SmoothPlastic
  1460. p17.CFrame = CFrame.new(3.5, -10.1420107, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1461. p17.FormFactor = Enum.FormFactor.Custom
  1462. p17.Size = Vector3.new(1.00999999, 0.400000036, 1.00999999)
  1463. p17.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1464. p17.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1465. p17.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1466. p17.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1467. p17.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1468. p17.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1469. b17 = Instance.new("SpecialMesh", p17)
  1470. b17.MeshType = Enum.MeshType.Brick
  1471. b17.Name = "Mesh"
  1472. b17.Scale = Vector3.new(1.01999998, 1.01999998, 1.01999998)
  1473. p18 = Instance.new("Part", m2)
  1474. p18.BrickColor = BrickColor.new("Carnation pink")
  1475. p18.Material = Enum.Material.SmoothPlastic
  1476. p18.CFrame = CFrame.new(3.5, -10.1420107, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1477. p18.FormFactor = Enum.FormFactor.Custom
  1478. p18.Size = Vector3.new(1.02999997, 0.200000003, 1.02999997)
  1479. p18.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1480. p18.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1481. p18.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1482. p18.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1483. p18.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1484. p18.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1485. b18 = Instance.new("SpecialMesh", p18)
  1486. b18.MeshType = Enum.MeshType.Brick
  1487. b18.Name = "Mesh"
  1488. b18.Scale = Vector3.new(1.01999998, 1.01999998, 1.01999998)
  1489. p19 = Instance.new("Part", m2)
  1490. p19.BrickColor = BrickColor.new("Sunrise")
  1491. p19.Material = Enum.Material.SmoothPlastic
  1492. p19.CFrame = CFrame.new(3.5, -10.1420107, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1493. p19.FormFactor = Enum.FormFactor.Custom
  1494. p19.Size = Vector3.new(1.02999997, 0.200000003, 1.02999997)
  1495. p19.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1496. p19.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1497. p19.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1498. p19.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1499. p19.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1500. p19.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1501. b19 = Instance.new("SpecialMesh", p19)
  1502. b19.MeshType = Enum.MeshType.Brick
  1503. b19.Name = "Mesh"
  1504. b19.Scale = Vector3.new(1.02999997, 0.50999999, 1.02999997)
  1505. w1 = Instance.new("Weld", p1)
  1506. w1.Name = "Part_Weld"
  1507. w1.Part0 = p1
  1508. w1.C0 = CFrame.new(-3.5, -4.20002079, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1509. w1.Part1 = p2
  1510. w1.C1 = CFrame.new(-3.5, -3.90001893, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1511. w2 = Instance.new("Weld", p2)
  1512. w2.Name = "Part_Weld"
  1513. w2.Part0 = p2
  1514. w2.C0 = CFrame.new(-3.5, -3.90001893, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1515. w2.Part1 = p3
  1516. w2.C1 = CFrame.new(-3.5, -4.50002098, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1517. w3 = Instance.new("Weld", p3)
  1518. w3.Name = "Part_Weld"
  1519. w3.Part0 = p3
  1520. w3.C0 = CFrame.new(-3.5, -4.50002098, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1521. w3.Part1 = p4
  1522. w3.C1 = CFrame.new(-3.5, -4.80001688, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1523. w4 = Instance.new("Weld", p4)
  1524. w4.Name = "Part_Weld"
  1525. w4.Part0 = p4
  1526. w4.C0 = CFrame.new(-3.5, -4.80001688, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1527. w4.Part1 = p5
  1528. w4.C1 = CFrame.new(-3.5, -4.80001688, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1529. w5 = Instance.new("Weld", p5)
  1530. w5.Name = "Part_Weld"
  1531. w5.Part0 = p5
  1532. w5.C0 = CFrame.new(-3.5, -4.80001688, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1533. w5.Part1 = p6
  1534. w5.C1 = CFrame.new(-3.5, -4.80001688, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1535. w6 = Instance.new("Weld", p6)
  1536. w6.Name = "RightArmPlate_Weld"
  1537. w6.Part0 = p6
  1538. w6.C0 = CFrame.new(-3.5, -4.80001688, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1539. w6.Part1 = p7
  1540. w6.C1 = CFrame.new(-3.5, -4.10001707, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1541. w7 = Instance.new("Weld", p7)
  1542. w7.Name = "Part_Weld"
  1543. w7.Part0 = p7
  1544. w7.C0 = CFrame.new(-3.5, -4.10001707, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1545. w7.Part1 = p8
  1546. w7.C1 = CFrame.new(-3.5, -4.50002098, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1547. w8 = Instance.new("Weld", p8)
  1548. w8.Name = "Part_Weld"
  1549. w8.Part0 = p8
  1550. w8.C0 = CFrame.new(-3.5, -4.50002098, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1551. w8.Part1 = p9
  1552. w8.C1 = CFrame.new(-3.5, -4.95002079, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1553. w9 = Instance.new("Weld", p9)
  1554. w9.Name = "Part_Weld"
  1555. w9.Part0 = p9
  1556. w9.C0 = CFrame.new(-3.5, -4.95002079, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1557. w9.Part1 = p10
  1558. w9.C1 = CFrame.new(-3.5, -4.65001678, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1559. w10 = Instance.new("Weld", p10)
  1560. w10.Name = "Part_Weld"
  1561. w10.Part0 = p10
  1562. w10.C0 = CFrame.new(-3.5, -4.65001678, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1563. w10.Part1 = p11
  1564. w10.C1 = CFrame.new(-3.5, -4.35001707, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1565. w11 = Instance.new("Weld", p11)
  1566. w11.Name = "Part_Weld"
  1567. w11.Part0 = p11
  1568. w11.C0 = CFrame.new(-3.5, -4.35001707, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1569. w11.Part1 = p12
  1570. w11.C1 = CFrame.new(-3.5, -4.05001783, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1571. w12 = Instance.new("Weld", p12)
  1572. w12.Name = "Part_Weld"
  1573. w12.Part0 = p12
  1574. w12.C0 = CFrame.new(-3.5, -4.05001783, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1575. w12.Part1 = p13
  1576. w12.C1 = CFrame.new(-3.5, -4.20002079, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1577. w13 = Instance.new("Weld", p13)
  1578. w13.Name = "Part_Weld"
  1579. w13.Part0 = p13
  1580. w13.C0 = CFrame.new(-3.5, -4.20002079, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1581. w13.Part1 = p14
  1582. w13.C1 = CFrame.new(-3.5, -3.75002098, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1583. w14 = Instance.new("Weld", p14)
  1584. w14.Name = "Part_Weld"
  1585. w14.Part0 = p14
  1586. w14.C0 = CFrame.new(-3.5, -3.75002098, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1587. w14.Part1 = p15
  1588. w14.C1 = CFrame.new(-3.5, -3.90001893, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1589. w15 = Instance.new("Weld", p15)
  1590. w15.Name = "Part_Weld"
  1591. w15.Part0 = p15
  1592. w15.C0 = CFrame.new(-3.5, -3.90001893, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1593. w15.Part1 = p16
  1594. w15.C1 = CFrame.new(-3.5, -3.50002098, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1595. w16 = Instance.new("Weld", p16)
  1596. w16.Name = "Part_Weld"
  1597. w16.Part0 = p16
  1598. w16.C0 = CFrame.new(-3.5, -3.50002098, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1599. w16.Part1 = p17
  1600. w16.C1 = CFrame.new(-3.5, -3.50002098, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1601. w17 = Instance.new("Weld", p17)
  1602. w17.Name = "Part_Weld"
  1603. w17.Part0 = p17
  1604. w17.C0 = CFrame.new(-3.5, -3.50002098, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1605. w17.Part1 = p18
  1606. w17.C1 = CFrame.new(-3.5, -3.50002098, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1607. w18 = Instance.new("Weld", p18)
  1608. w18.Name = "Part_Weld"
  1609. w18.Part0 = p18
  1610. w18.C0 = CFrame.new(-3.5, -3.50002098, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1611. w18.Part1 = p19
  1612. w18.C1 = CFrame.new(-3.5, -3.50002098, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1613. m2.Parent = rarm
  1614. m2:MakeJoints()
  1615. ----------------------------------------------------
  1616. local cor2 = Instance.new("Part", rarm.RightArm)
  1617. cor2.Name = "Thingy"
  1618. cor2.Locked = true
  1619. cor2.BottomSurface = 0
  1620. cor2.CanCollide = false
  1621. cor2.Size = Vector3.new(1, 1, 1)
  1622. cor2.Transparency = 1
  1623. cor2.TopSurface = 0
  1624. corw2 = Instance.new("Weld", cor2)
  1625. corw2.Part0 = rarm
  1626. corw2.Part1 = cor2
  1627. corw2.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  1628. corw2.C1 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  1629. weld2 = Instance.new("Weld", rarm.RightArm)
  1630. weld2.Part0 = cor2
  1631. weld2.Part1 = rarm.RightArm.RightArmPlate
  1632. weld2.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  1633. --Torso
  1634. m3 = Instance.new("Model")
  1635. m3.Name = "Torso"
  1636. p1 = Instance.new("Part", m3)
  1637. p1.BrickColor = BrickColor.new("Carnation pink")
  1638. p1.Material = Enum.Material.Metal
  1639. p1.Name = "TorsoPlate"
  1640. p1.CFrame = CFrame.new(0, 3.10002589, 0.50000006, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1641. p1.CanCollide = false
  1642. p1.Locked = true
  1643. p1.FormFactor = Enum.FormFactor.Custom
  1644. p1.Size = Vector3.new(2, 2, 1)
  1645. p1.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1646. p1.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1647. p1.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1648. p1.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1649. p1.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1650. p1.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1651. b1 = Instance.new("SpecialMesh", p1)
  1652. b1.MeshType = Enum.MeshType.Brick
  1653. b1.Name = "Mesh"
  1654. b1.Scale = Vector3.new(1, 1.01999998, 1.01999998)
  1655. p2 = Instance.new("Part", m3)
  1656. p2.BrickColor = BrickColor.new("Carnation pink")
  1657. p2.Material = Enum.Material.Metal
  1658. p2.CFrame = CFrame.new(-0.450000942, 4.05002356, -0.100002818, -0.685070276, 0.686094284, 0.244853854, 0.616745472, 0.367372453, 0.696177125, 0.387690574, 0.627942622, -0.674821496)
  1659. p2.CanCollide = false
  1660. p2.Locked = true
  1661. p2.FormFactor = Enum.FormFactor.Custom
  1662. p2.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  1663. b2 = Instance.new("SpecialMesh", p2)
  1664. b2.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1665. b2.TextureId = ""
  1666. b2.MeshType = Enum.MeshType.FileMesh
  1667. b2.Name = "Mesh"
  1668. b2.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  1669. p3 = Instance.new("Part", m3)
  1670. p3.BrickColor = BrickColor.new("Sunrise")
  1671. p3.Material = Enum.Material.Metal
  1672. p3.CFrame = CFrame.new(0, 3.10002589, 0.970001996, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1673. p3.CanCollide = false
  1674. p3.Locked = true
  1675. p3.FormFactor = Enum.FormFactor.Custom
  1676. p3.Size = Vector3.new(2, 2, 0.200000018)
  1677. p3.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1678. p3.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1679. p3.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1680. p3.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1681. p3.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1682. p3.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1683. b3 = Instance.new("SpecialMesh", p3)
  1684. b3.MeshType = Enum.MeshType.Brick
  1685. b3.Name = "Mesh"
  1686. b3.Scale = Vector3.new(1, 1.01999998, 1.01999998)
  1687. p4 = Instance.new("Part", m3)
  1688. p4.BrickColor = BrickColor.new("Sunrise")
  1689. p4.Material = Enum.Material.Metal
  1690. p4.CFrame = CFrame.new(0, 4.00002623, 0.529999971, 1, 0, 0, 0, -4.37113883e-008, 1, 0, -1, -4.37113883e-008)
  1691. p4.CanCollide = false
  1692. p4.Locked = true
  1693. p4.FormFactor = Enum.FormFactor.Custom
  1694. p4.Size = Vector3.new(2, 1.04000008, 0.239999995)
  1695. p4.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1696. p4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1697. p4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1698. p4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1699. p4.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1700. p4.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1701. b4 = Instance.new("SpecialMesh", p4)
  1702. b4.MeshType = Enum.MeshType.Brick
  1703. b4.Name = "Mesh"
  1704. b4.Scale = Vector3.new(1, 1.01999998, 1.01999998)
  1705. p5 = Instance.new("Part", m3)
  1706. p5.BrickColor = BrickColor.new("Sunrise")
  1707. p5.Material = Enum.Material.Metal
  1708. p5.CFrame = CFrame.new(-0.499999821, 3.15002489, 0.0999978557, 7.54979084e-008, 1, 0, 4.37113918e-008, 0, 1, 1, -7.54978942e-008, -4.37113883e-008)
  1709. p5.CanCollide = false
  1710. p5.Locked = true
  1711. p5.FormFactor = Enum.FormFactor.Custom
  1712. p5.Size = Vector3.new(0.300000012, 1, 1.89999998)
  1713. p5.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1714. p5.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1715. p5.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1716. p5.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1717. p5.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1718. p5.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1719. b5 = Instance.new("SpecialMesh", p5)
  1720. b5.MeshType = Enum.MeshType.Wedge
  1721. b5.Name = "Mesh"
  1722. b5.Scale = Vector3.new(1, 1.01999998, 1.01999998)
  1723. p6 = Instance.new("Part", m3)
  1724. p6.BrickColor = BrickColor.new("Sunrise")
  1725. p6.Material = Enum.Material.Metal
  1726. p6.CFrame = CFrame.new(0.500000179, 3.15002489, 0.0999980345, -4.37113918e-008, -1, 0, -4.37113812e-008, 0, 1, -1, 4.37113847e-008, -4.37113883e-008)
  1727. p6.CanCollide = false
  1728. p6.Locked = true
  1729. p6.FormFactor = Enum.FormFactor.Custom
  1730. p6.Size = Vector3.new(0.300000012, 0.99999994, 1.89999998)
  1731. p6.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1732. p6.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1733. p6.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1734. p6.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1735. p6.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1736. p6.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1737. b6 = Instance.new("SpecialMesh", p6)
  1738. b6.MeshType = Enum.MeshType.Wedge
  1739. b6.Name = "Mesh"
  1740. b6.Scale = Vector3.new(1, 1.01999998, 1.01999998)
  1741. p7 = Instance.new("Part", m3)
  1742. p7.BrickColor = BrickColor.new("Sunrise")
  1743. p7.Material = Enum.Material.Metal
  1744. p7.CFrame = CFrame.new(1.63912773e-007, 3.20002794, 0.0999980569, -3.09086197e-008, -0.707106829, -0.707106769, -7.46200044e-008, -0.707106769, 0.707106829, -1, 7.46200044e-008, -3.09086197e-008)
  1745. p7.CanCollide = false
  1746. p7.Locked = true
  1747. p7.FormFactor = Enum.FormFactor.Custom
  1748. p7.Size = Vector3.new(0.300000012, 1.20000005, 1.20000005)
  1749. p7.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1750. p7.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1751. p7.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1752. p7.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1753. p7.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1754. p7.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1755. b7 = Instance.new("SpecialMesh", p7)
  1756. b7.MeshType = Enum.MeshType.Wedge
  1757. b7.Name = "Mesh"
  1758. p8 = Instance.new("Part", m3)
  1759. p8.BrickColor = BrickColor.new("Sunrise")
  1760. p8.Material = Enum.Material.Metal
  1761. p8.CFrame = CFrame.new(-1, 3.10002613, 0.520000935, -4.37113883e-008, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-008)
  1762. p8.CanCollide = false
  1763. p8.Locked = true
  1764. p8.FormFactor = Enum.FormFactor.Custom
  1765. p8.Size = Vector3.new(1, 2, 0.200000018)
  1766. p8.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1767. p8.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1768. p8.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1769. p8.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1770. p8.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1771. p8.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1772. b8 = Instance.new("SpecialMesh", p8)
  1773. b8.MeshType = Enum.MeshType.Brick
  1774. b8.Name = "Mesh"
  1775. b8.Scale = Vector3.new(1, 1.01999998, 1.01999998)
  1776. p9 = Instance.new("Part", m3)
  1777. p9.BrickColor = BrickColor.new("Sunrise")
  1778. p9.Material = Enum.Material.Metal
  1779. p9.CFrame = CFrame.new(1, 3.10002613, 0.520001054, -4.37113883e-008, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-008)
  1780. p9.CanCollide = false
  1781. p9.Locked = true
  1782. p9.FormFactor = Enum.FormFactor.Custom
  1783. p9.Size = Vector3.new(1, 2, 0.200000018)
  1784. p9.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1785. p9.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1786. p9.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1787. p9.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1788. p9.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1789. p9.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1790. b9 = Instance.new("SpecialMesh", p9)
  1791. b9.MeshType = Enum.MeshType.Brick
  1792. b9.Name = "Mesh"
  1793. b9.Scale = Vector3.new(1, 1.01999998, 1.01999998)
  1794. p10 = Instance.new("Part", m3)
  1795. p10.BrickColor = BrickColor.new("Sunrise")
  1796. p10.Material = Enum.Material.Metal
  1797. p10.CFrame = CFrame.new(0, 2.05002642, 0.539999843, 1, 0, 0, 0, -4.37113883e-008, 1, 0, -1, -4.37113883e-008)
  1798. p10.CanCollide = false
  1799. p10.Locked = true
  1800. p10.FormFactor = Enum.FormFactor.Custom
  1801. p10.Size = Vector3.new(2, 1.0200001, 0.239999995)
  1802. p10.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1803. p10.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1804. p10.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1805. p10.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1806. p10.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1807. p10.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1808. b10 = Instance.new("SpecialMesh", p10)
  1809. b10.MeshType = Enum.MeshType.Brick
  1810. b10.Name = "Mesh"
  1811. b10.Scale = Vector3.new(1, 1.01999998, 1.01999998)
  1812. p11 = Instance.new("Part", m3)
  1813. p11.BrickColor = BrickColor.new("Carnation pink")
  1814. p11.Material = Enum.Material.Metal
  1815. p11.CFrame = CFrame.new(0.499999523, 4.05002451, -0.0499982014, 1.00000024, -8.94069672e-008, -1.78813934e-007, -2.98023224e-008, 0.906307817, -0.422618449, -2.23517418e-007, 0.42261821, 0.906307697)
  1816. p11.CanCollide = false
  1817. p11.Locked = true
  1818. p11.FormFactor = Enum.FormFactor.Custom
  1819. p11.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  1820. b11 = Instance.new("SpecialMesh", p11)
  1821. b11.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1822. b11.TextureId = ""
  1823. b11.MeshType = Enum.MeshType.FileMesh
  1824. b11.Name = "Mesh"
  1825. b11.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  1826. p12 = Instance.new("Part", m3)
  1827. p12.BrickColor = BrickColor.new("Carnation pink")
  1828. p12.Material = Enum.Material.Metal
  1829. p12.Transparency = 1
  1830. p12.Name = "Chain2Torso"
  1831. p12.CFrame = CFrame.new(0.0500000007, 3.35002589, 0.0200020671, -4.37113883e-008, -1, 0, -4.37113883e-008, 1.91068547e-015, -1, 1, -4.37113883e-008, -4.37113883e-008)
  1832. p12.CanCollide = false
  1833. p12.Locked = true
  1834. p12.FormFactor = Enum.FormFactor.Custom
  1835. p12.Size = Vector3.new(0.699999988, 0.300000012, 0.300000012)
  1836. b12 = Instance.new("SpecialMesh", p12)
  1837. b12.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1838. b12.TextureId = ""
  1839. b12.MeshType = Enum.MeshType.FileMesh
  1840. b12.Name = "Mesh"
  1841. b12.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  1842. p13 = Instance.new("Part", m3)
  1843. p13.BrickColor = BrickColor.new("Carnation pink")
  1844. p13.Material = Enum.Material.Metal
  1845. p13.CFrame = CFrame.new(-0.700000763, 4.25002289, 0.349998087, -0.606457233, -0.374239564, 0.70153743, -0.641863465, -0.290311694, -0.709739804, 0.469277143, -0.880717754, -0.0641489923)
  1846. p13.CanCollide = false
  1847. p13.Locked = true
  1848. p13.FormFactor = Enum.FormFactor.Custom
  1849. p13.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  1850. b13 = Instance.new("SpecialMesh", p13)
  1851. b13.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1852. b13.TextureId = ""
  1853. b13.MeshType = Enum.MeshType.FileMesh
  1854. b13.Name = "Mesh"
  1855. b13.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  1856. p14 = Instance.new("Part", m3)
  1857. p14.BrickColor = BrickColor.new("Carnation pink")
  1858. p14.Material = Enum.Material.Metal
  1859. p14.CFrame = CFrame.new(-0.0500002243, 3.50002766, -0.150001988, -0.331867754, 0.457445055, -0.824989557, 0.877285957, -0.171802372, -0.448166817, -0.346746802, -0.87248385, -0.344294399)
  1860. p14.CanCollide = false
  1861. p14.Locked = true
  1862. p14.FormFactor = Enum.FormFactor.Custom
  1863. p14.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  1864. b14 = Instance.new("SpecialMesh", p14)
  1865. b14.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1866. b14.TextureId = ""
  1867. b14.MeshType = Enum.MeshType.FileMesh
  1868. b14.Name = "Mesh"
  1869. b14.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  1870. p15 = Instance.new("Part", m3)
  1871. p15.BrickColor = BrickColor.new("Carnation pink")
  1872. p15.Material = Enum.Material.Metal
  1873. p15.CFrame = CFrame.new(0.199999034, 3.55002332, -0.150001839, -0.0627828911, -0.802308202, -0.593599737, 0.678633273, -0.470427632, 0.564052343, -0.731789052, -0.367423117, 0.57400763)
  1874. p15.CanCollide = false
  1875. p15.Locked = true
  1876. p15.FormFactor = Enum.FormFactor.Custom
  1877. p15.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  1878. b15 = Instance.new("SpecialMesh", p15)
  1879. b15.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1880. b15.TextureId = ""
  1881. b15.MeshType = Enum.MeshType.FileMesh
  1882. b15.Name = "Mesh"
  1883. b15.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  1884. p16 = Instance.new("Part", m3)
  1885. p16.BrickColor = BrickColor.new("Carnation pink")
  1886. p16.Material = Enum.Material.Metal
  1887. p16.CFrame = CFrame.new(0.349999189, 3.70002842, -0.150001973, 0.994292557, 0.0709807873, 0.0796526894, -0.0587368309, 0.987431884, -0.146726117, -0.0890666768, 0.141209915, 0.985964835)
  1888. p16.CanCollide = false
  1889. p16.Locked = true
  1890. p16.FormFactor = Enum.FormFactor.Custom
  1891. p16.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  1892. b16 = Instance.new("SpecialMesh", p16)
  1893. b16.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1894. b16.TextureId = ""
  1895. b16.MeshType = Enum.MeshType.FileMesh
  1896. b16.Name = "Mesh"
  1897. b16.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  1898. p17 = Instance.new("Part", m3)
  1899. p17.BrickColor = BrickColor.new("Carnation pink")
  1900. p17.Material = Enum.Material.Metal
  1901. p17.CFrame = CFrame.new(-0.200000346, 3.70002747, -0.150002211, 0.964791715, 0.0184034109, -0.262370646, -0.0587368906, 0.987431884, -0.146726027, 0.256372869, 0.156970888, 0.953746974)
  1902. p17.CanCollide = false
  1903. p17.Locked = true
  1904. p17.FormFactor = Enum.FormFactor.Custom
  1905. p17.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  1906. b17 = Instance.new("SpecialMesh", p17)
  1907. b17.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1908. b17.TextureId = ""
  1909. b17.MeshType = Enum.MeshType.FileMesh
  1910. b17.Name = "Mesh"
  1911. b17.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  1912. p18 = Instance.new("Part", m3)
  1913. p18.BrickColor = BrickColor.new("Carnation pink")
  1914. p18.Material = Enum.Material.Metal
  1915. p18.CFrame = CFrame.new(-0.35000062, 3.85002661, -0.150002271, 0.407530367, -0.427938014, 0.806714416, 0.0989350602, 0.898891687, 0.426855773, -0.907816589, -0.0941444039, 0.40866372)
  1916. p18.CanCollide = false
  1917. p18.Locked = true
  1918. p18.FormFactor = Enum.FormFactor.Custom
  1919. p18.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  1920. b18 = Instance.new("SpecialMesh", p18)
  1921. b18.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1922. b18.TextureId = ""
  1923. b18.MeshType = Enum.MeshType.FileMesh
  1924. b18.Name = "Mesh"
  1925. b18.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  1926. p19 = Instance.new("Part", m3)
  1927. p19.BrickColor = BrickColor.new("Carnation pink")
  1928. p19.Material = Enum.Material.Metal
  1929. p19.CFrame = CFrame.new(0.599999547, 4.25002337, 1.49011612e-008, 0.450589776, 0.596651912, -0.664060116, 0.322663993, 0.584720135, 0.744305372, 0.832379937, -0.549644768, 0.0709509254)
  1930. p19.CanCollide = false
  1931. p19.Locked = true
  1932. p19.FormFactor = Enum.FormFactor.Custom
  1933. p19.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  1934. b19 = Instance.new("SpecialMesh", p19)
  1935. b19.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1936. b19.TextureId = ""
  1937. b19.MeshType = Enum.MeshType.FileMesh
  1938. b19.Name = "Mesh"
  1939. b19.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  1940. p20 = Instance.new("Part", m3)
  1941. p20.BrickColor = BrickColor.new("Carnation pink")
  1942. p20.Material = Enum.Material.Metal
  1943. p20.CFrame = CFrame.new(0.449999154, 3.90002728, -0.150000244, 0.148452312, 0.508259773, -0.848312676, -0.212012291, 0.85422945, 0.474703223, 0.965925753, 0.109381542, 0.234569833)
  1944. p20.CanCollide = false
  1945. p20.Locked = true
  1946. p20.FormFactor = Enum.FormFactor.Custom
  1947. p20.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  1948. b20 = Instance.new("SpecialMesh", p20)
  1949. b20.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1950. b20.TextureId = ""
  1951. b20.MeshType = Enum.MeshType.FileMesh
  1952. b20.Name = "Mesh"
  1953. b20.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  1954. p21 = Instance.new("Part", m3)
  1955. p21.BrickColor = BrickColor.new("Carnation pink")
  1956. p21.Material = Enum.Material.Metal
  1957. p21.CFrame = CFrame.new(0.699999869, 4.25002337, 0.200001985, -0.0996009707, 0.981125295, 0.165750414, -0.142243966, -0.178907469, 0.973529041, 0.98480773, 0.0733870864, 0.157378286)
  1958. p21.CanCollide = false
  1959. p21.Locked = true
  1960. p21.FormFactor = Enum.FormFactor.Custom
  1961. p21.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  1962. b21 = Instance.new("SpecialMesh", p21)
  1963. b21.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1964. b21.TextureId = ""
  1965. b21.MeshType = Enum.MeshType.FileMesh
  1966. b21.Name = "Mesh"
  1967. b21.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  1968. p22 = Instance.new("Part", m3)
  1969. p22.BrickColor = BrickColor.new("Carnation pink")
  1970. p22.Material = Enum.Material.Metal
  1971. p22.CFrame = CFrame.new(0.69999975, 4.25002289, 0.450001955, -0.167731196, 0.167446673, 0.971508265, 0.0449438766, -0.983146012, 0.17721194, 0.984807789, 0.0733873621, 0.157378122)
  1972. p22.CanCollide = false
  1973. p22.Locked = true
  1974. p22.FormFactor = Enum.FormFactor.Custom
  1975. p22.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  1976. b22 = Instance.new("SpecialMesh", p22)
  1977. b22.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1978. b22.TextureId = ""
  1979. b22.MeshType = Enum.MeshType.FileMesh
  1980. b22.Name = "Mesh"
  1981. b22.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  1982. p23 = Instance.new("Part", m3)
  1983. p23.BrickColor = BrickColor.new("Carnation pink")
  1984. p23.Material = Enum.Material.Metal
  1985. p23.CFrame = CFrame.new(0.699999511, 4.25002289, 0.700001478, 0.0593914539, -0.993999004, 0.0918651819, 0.163175613, -0.0811224878, -0.98325628, 0.984807849, 0.0733875483, 0.157378405)
  1986. p23.CanCollide = false
  1987. p23.Locked = true
  1988. p23.FormFactor = Enum.FormFactor.Custom
  1989. p23.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  1990. b23 = Instance.new("SpecialMesh", p23)
  1991. b23.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1992. b23.TextureId = ""
  1993. b23.MeshType = Enum.MeshType.FileMesh
  1994. b23.Name = "Mesh"
  1995. b23.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  1996. p24 = Instance.new("Part", m3)
  1997. p24.BrickColor = BrickColor.new("Carnation pink")
  1998. p24.Material = Enum.Material.Metal
  1999. p24.CFrame = CFrame.new(0.699999452, 4.25002289, 0.900001347, -0.197025463, -0.431517303, 0.880326331, 0.133022487, -0.90138948, -0.412070453, 0.971332312, 0.0359149873, 0.234997824)
  2000. p24.CanCollide = false
  2001. p24.Locked = true
  2002. p24.FormFactor = Enum.FormFactor.Custom
  2003. p24.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  2004. b24 = Instance.new("SpecialMesh", p24)
  2005. b24.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2006. b24.TextureId = ""
  2007. b24.MeshType = Enum.MeshType.FileMesh
  2008. b24.Name = "Mesh"
  2009. b24.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  2010. p25 = Instance.new("Part", m3)
  2011. p25.BrickColor = BrickColor.new("Carnation pink")
  2012. p25.Material = Enum.Material.Metal
  2013. p25.CFrame = CFrame.new(0.599999249, 4.25002289, 1.05000341, -0.793593884, -0.433597952, 0.42685172, 0.426002622, 0.104941569, 0.898615122, -0.434431762, 0.894975305, 0.101432741)
  2014. p25.CanCollide = false
  2015. p25.Locked = true
  2016. p25.FormFactor = Enum.FormFactor.Custom
  2017. p25.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  2018. b25 = Instance.new("SpecialMesh", p25)
  2019. b25.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2020. b25.TextureId = ""
  2021. b25.MeshType = Enum.MeshType.FileMesh
  2022. b25.Name = "Mesh"
  2023. b25.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  2024. p26 = Instance.new("Part", m3)
  2025. p26.BrickColor = BrickColor.new("Carnation pink")
  2026. p26.Material = Enum.Material.Metal
  2027. p26.CFrame = CFrame.new(0.399999261, 4.25002289, 1.09999716, 0.474074066, -0.73934859, 0.478140384, 0.876810074, 0.445984155, -0.17972827, -0.0803612769, 0.504442811, 0.859697402)
  2028. p26.CanCollide = false
  2029. p26.Locked = true
  2030. p26.FormFactor = Enum.FormFactor.Custom
  2031. p26.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  2032. b26 = Instance.new("SpecialMesh", p26)
  2033. b26.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2034. b26.TextureId = ""
  2035. b26.MeshType = Enum.MeshType.FileMesh
  2036. b26.Name = "Mesh"
  2037. b26.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  2038. p27 = Instance.new("Part", m3)
  2039. p27.BrickColor = BrickColor.new("Carnation pink")
  2040. p27.Material = Enum.Material.Metal
  2041. p27.CFrame = CFrame.new(0.249999076, 4.25002289, 1.20000076, 0.524626255, -0.838181257, 0.149064019, -0.503709316, -0.446768612, -0.739374638, 0.686326742, 0.31281051, -0.656585932)
  2042. p27.CanCollide = false
  2043. p27.Locked = true
  2044. p27.FormFactor = Enum.FormFactor.Custom
  2045. p27.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  2046. b27 = Instance.new("SpecialMesh", p27)
  2047. b27.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2048. b27.TextureId = ""
  2049. b27.MeshType = Enum.MeshType.FileMesh
  2050. b27.Name = "Mesh"
  2051. b27.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  2052. p28 = Instance.new("Part", m3)
  2053. p28.BrickColor = BrickColor.new("Carnation pink")
  2054. p28.Material = Enum.Material.Metal
  2055. p28.CFrame = CFrame.new(0.0499990731, 4.25002289, 1.20000088, 0.524626136, -0.838181317, 0.149063885, 0.588431716, 0.230477661, -0.775002301, 0.615236104, 0.494300276, 0.614126861)
  2056. p28.CanCollide = false
  2057. p28.Locked = true
  2058. p28.FormFactor = Enum.FormFactor.Custom
  2059. p28.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  2060. b28 = Instance.new("SpecialMesh", p28)
  2061. b28.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2062. b28.TextureId = ""
  2063. b28.MeshType = Enum.MeshType.FileMesh
  2064. b28.Name = "Mesh"
  2065. b28.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  2066. p29 = Instance.new("Part", m3)
  2067. p29.BrickColor = BrickColor.new("Carnation pink")
  2068. p29.Material = Enum.Material.Metal
  2069. p29.CFrame = CFrame.new(-0.200000852, 4.25002289, 1.20000088, 0.524626195, -0.838181257, 0.149063647, 0.664180398, 0.512506962, 0.544243872, -0.532571197, -0.186519295, 0.825577736)
  2070. p29.CanCollide = false
  2071. p29.Locked = true
  2072. p29.FormFactor = Enum.FormFactor.Custom
  2073. p29.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  2074. b29 = Instance.new("SpecialMesh", p29)
  2075. b29.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2076. b29.TextureId = ""
  2077. b29.MeshType = Enum.MeshType.FileMesh
  2078. b29.Name = "Mesh"
  2079. b29.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  2080. p30 = Instance.new("Part", m3)
  2081. p30.BrickColor = BrickColor.new("Carnation pink")
  2082. p30.Material = Enum.Material.Metal
  2083. p30.CFrame = CFrame.new(-0.400000989, 4.25002289, 1.15000105, -0.205189675, -0.942334533, -0.264392197, 0.472657442, 0.141141802, -0.869870245, 0.857025325, -0.303455055, 0.416440606)
  2084. p30.CanCollide = false
  2085. p30.Locked = true
  2086. p30.FormFactor = Enum.FormFactor.Custom
  2087. p30.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  2088. b30 = Instance.new("SpecialMesh", p30)
  2089. b30.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2090. b30.TextureId = ""
  2091. b30.MeshType = Enum.MeshType.FileMesh
  2092. b30.Name = "Mesh"
  2093. b30.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  2094. p31 = Instance.new("Part", m3)
  2095. p31.BrickColor = BrickColor.new("Carnation pink")
  2096. p31.Material = Enum.Material.Metal
  2097. p31.CFrame = CFrame.new(-0.550001025, 4.25002337, 0.999999702, 0.151335806, -0.651350021, -0.743532896, 0.979139984, 0.201951638, 0.022377044, 0.135582238, -0.731408894, 0.668325186)
  2098. p31.CanCollide = false
  2099. p31.Locked = true
  2100. p31.FormFactor = Enum.FormFactor.Custom
  2101. p31.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  2102. b31 = Instance.new("SpecialMesh", p31)
  2103. b31.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2104. b31.TextureId = ""
  2105. b31.MeshType = Enum.MeshType.FileMesh
  2106. b31.Name = "Mesh"
  2107. b31.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  2108. p32 = Instance.new("Part", m3)
  2109. p32.BrickColor = BrickColor.new("Carnation pink")
  2110. p32.Material = Enum.Material.Metal
  2111. p32.CFrame = CFrame.new(-0.700000763, 4.25002337, 0.800000489, -0.804778874, -0.593520701, 0.0080409348, 0.142058611, -0.205740049, -0.968240976, 0.576325178, -0.778077364, 0.249890015)
  2112. p32.CanCollide = false
  2113. p32.Locked = true
  2114. p32.FormFactor = Enum.FormFactor.Custom
  2115. p32.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  2116. b32 = Instance.new("SpecialMesh", p32)
  2117. b32.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2118. b32.TextureId = ""
  2119. b32.MeshType = Enum.MeshType.FileMesh
  2120. b32.Name = "Mesh"
  2121. b32.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  2122. p33 = Instance.new("Part", m3)
  2123. p33.BrickColor = BrickColor.new("Carnation pink")
  2124. p33.Material = Enum.Material.Metal
  2125. p33.CFrame = CFrame.new(-0.700000942, 4.25002289, 0.549999833, -0.526802063, -0.220915288, -0.820777893, 0.708702326, 0.418966174, -0.567634225, 0.469277024, -0.880717933, -0.0641489923)
  2126. p33.CanCollide = false
  2127. p33.Locked = true
  2128. p33.FormFactor = Enum.FormFactor.Custom
  2129. p33.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  2130. b33 = Instance.new("SpecialMesh", p33)
  2131. b33.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2132. b33.TextureId = ""
  2133. b33.MeshType = Enum.MeshType.FileMesh
  2134. b33.Name = "Mesh"
  2135. b33.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  2136. p34 = Instance.new("Part", m3)
  2137. p34.BrickColor = BrickColor.new("Carnation pink")
  2138. p34.Material = Enum.Material.Metal
  2139. p34.Name = "Connection"
  2140. p34.CFrame = CFrame.new(0.0551848896, 3.35002589, -0.131655902, 0.635109425, -0.765570045, -0.102657467, -0.766416311, -0.641122162, 0.0396047123, -0.0961361453, 0.0535250306, -0.993928015)
  2141. p34.CanCollide = false
  2142. p34.Locked = true
  2143. p34.FormFactor = Enum.FormFactor.Custom
  2144. p34.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  2145. b34 = Instance.new("SpecialMesh", p34)
  2146. b34.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2147. b34.TextureId = ""
  2148. b34.MeshType = Enum.MeshType.FileMesh
  2149. b34.Name = "Mesh"
  2150. b34.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  2151. p35 = Instance.new("Part", m3)
  2152. p35.BrickColor = BrickColor.new("Carnation pink")
  2153. p35.Material = Enum.Material.Metal
  2154. p35.CFrame = CFrame.new(-0.600001037, 4.25002289, 0.149997264, 0.493824095, 0.604460001, 0.62511301, -0.565569818, -0.322785676, 0.758907318, 0.660506427, -0.728311539, 0.182464883)
  2155. p35.CanCollide = false
  2156. p35.Locked = true
  2157. p35.FormFactor = Enum.FormFactor.Custom
  2158. p35.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  2159. b35 = Instance.new("SpecialMesh", p35)
  2160. b35.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2161. b35.TextureId = ""
  2162. b35.MeshType = Enum.MeshType.FileMesh
  2163. b35.Name = "Mesh"
  2164. b35.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  2165. p36 = Instance.new("Part", m3)
  2166. p36.BrickColor = BrickColor.new("Carnation pink")
  2167. p36.Material = Enum.Material.Metal
  2168. p36.CFrame = CFrame.new(-0.500000834, 4.2000227, -2.52574682e-006, -0.285961747, 0.418113738, -0.862210572, 0.191904813, 0.906544387, 0.375965416, 0.93882823, -0.0579507053, -0.339474916)
  2169. p36.CanCollide = false
  2170. p36.Locked = true
  2171. p36.FormFactor = Enum.FormFactor.Custom
  2172. p36.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  2173. b36 = Instance.new("SpecialMesh", p36)
  2174. b36.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2175. b36.TextureId = ""
  2176. b36.MeshType = Enum.MeshType.FileMesh
  2177. b36.Name = "Mesh"
  2178. b36.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  2179. w1 = Instance.new("Weld", p2)
  2180. w1.Name = "Joint"
  2181. w1.Part0 = p2
  2182. w1.C0 = CFrame.new(-0.211238861, -0.0362606049, -0.0810072422, -0.57012105, 0.811055779, -0.130959615, -0.254106343, -0.022495009, 0.966914535, 0.781275749, 0.584536016, 0.218919396)
  2183. w1.Part1 = p18
  2184. w1.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2185. w2 = Instance.new("Weld", p3)
  2186. w2.Name = "Joint"
  2187. w2.Part0 = p3
  2188. w2.C0 = CFrame.new(0, 0, -0.470001936, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2189. w2.Part1 = p1
  2190. w2.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2191. w3 = Instance.new("Weld", p4)
  2192. w3.Name = "Joint"
  2193. w3.Part0 = p4
  2194. w3.C0 = CFrame.new(0, 0.0299999714, -0.900000334, 1, 0, 0, 0, -4.37113883e-008, -1, 0, 1, -4.37113883e-008)
  2195. w3.Part1 = p1
  2196. w3.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2197. w4 = Instance.new("Weld", p5)
  2198. w4.Name = "Joint"
  2199. w4.Part0 = p5
  2200. w4.C0 = CFrame.new(2.38418579e-007, 0.5, 0.0500030518, -1, -9.67369829e-009, -5.33850759e-008, 4.45892816e-008, -0.707106829, -0.707106769, -3.09086161e-008, -0.707106769, 0.707106829)
  2201. w4.Part1 = p7
  2202. w4.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2203. w5 = Instance.new("Weld", p6)
  2204. w5.Name = "Joint"
  2205. w5.Part0 = p6
  2206. w5.C0 = CFrame.new(0, 0.5, 0.0500030518, 1, -1.28027651e-008, 3.09086197e-008, -1.28027686e-008, 0.707106829, 0.707106769, -3.09086161e-008, -0.707106769, 0.707106829)
  2207. w5.Part1 = p7
  2208. w5.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2209. w6 = Instance.new("Weld", p7)
  2210. w6.Name = "Joint"
  2211. w6.Part0 = p7
  2212. w6.C0 = CFrame.new(-0.400002003, 0.070712328, -0.0707120895, -3.09086197e-008, -7.46200044e-008, -1, -0.707106829, -0.707106769, 7.46200044e-008, -0.707106769, 0.707106829, -3.09086197e-008)
  2213. w6.Part1 = p1
  2214. w6.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2215. w7 = Instance.new("Weld", p8)
  2216. w7.Name = "Joint"
  2217. w7.Part0 = p8
  2218. w7.C0 = CFrame.new(-0.0200009346, -2.38418579e-007, -1, -4.37113883e-008, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-008)
  2219. w7.Part1 = p1
  2220. w7.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2221. w8 = Instance.new("Weld", p9)
  2222. w8.Name = "Joint"
  2223. w8.Part0 = p9
  2224. w8.C0 = CFrame.new(-0.0200009346, -2.38418579e-007, 1, -4.37113883e-008, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-008)
  2225. w8.Part1 = p1
  2226. w8.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2227. w9 = Instance.new("Weld", p10)
  2228. w9.Name = "Joint"
  2229. w9.Part0 = p10
  2230. w9.C0 = CFrame.new(0, 0.0399997234, 1.04999948, 1, 0, 0, 0, -4.37113883e-008, -1, 0, 1, -4.37113883e-008)
  2231. w9.Part1 = p1
  2232. w9.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2233. w10 = Instance.new("Weld", p11)
  2234. w10.Name = "Joint"
  2235. w10.Part0 = p11
  2236. w10.C0 = CFrame.new(0.100000024, 0.202390671, -0.0392093658, 0.450589836, 0.596651673, -0.664059937, 0.644212067, 0.297646403, 0.704554796, 0.618028879, -0.745260656, -0.250253737)
  2237. w10.Part1 = p19
  2238. w10.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2239. w11 = Instance.new("Weld", p12)
  2240. w11.Name = "Joint"
  2241. w11.Part0 = p12
  2242. w11.C0 = CFrame.new(0.479997993, 0.0499999784, 0.25, -4.37113883e-008, -4.37113883e-008, 1, -1, 1.91068547e-015, -4.37113883e-008, 0, -1, -4.37113883e-008)
  2243. w11.Part1 = p1
  2244. w11.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2245. w12 = Instance.new("Weld", p13)
  2246. w12.Name = "Joint"
  2247. w12.Part0 = p13
  2248. w12.C0 = CFrame.new(-0.1545012, 0.138720512, 0.0829834938, 0.373496056, -0.501174688, -0.780592561, -0.602336764, 0.50893271, -0.614961803, 0.70547235, 0.699865282, -0.111791633)
  2249. w12.Part1 = p35
  2250. w12.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2251. w13 = Instance.new("Weld", p14)
  2252. w13.Name = "Joint"
  2253. w13.Part0 = p14
  2254. w13.C0 = CFrame.new(-0.172863483, 0.0578804016, -0.0258672237, -0.849803627, -0.326939017, 0.413454711, 0.506076992, -0.286759645, 0.813421786, -0.147377193, 0.900488615, 0.409145683)
  2255. w13.Part1 = p34
  2256. w13.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2257. w14 = Instance.new("Weld", p15)
  2258. w14.Name = "Joint"
  2259. w14.Part0 = p15
  2260. w14.C0 = CFrame.new(0.0923810005, -0.190912724, -0.00442934036, -0.0371075198, 0.56231159, -0.826092422, -0.73737216, -0.573347449, -0.357148677, -0.674466848, 0.595884562, 0.435908347)
  2261. w14.Part1 = p16
  2262. w14.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2263. w15 = Instance.new("Weld", p16)
  2264. w15.Name = "Joint"
  2265. w15.Part0 = p16
  2266. w15.C0 = CFrame.new(0.0876817107, 0.204583645, -0.0213780403, 0.074026458, 0.445441723, -0.892245352, -0.0624118894, 0.895015597, 0.441646636, 0.995301366, 0.022993207, 0.0940556675)
  2267. w15.Part1 = p20
  2268. w15.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2269. w16 = Instance.new("Weld", p17)
  2270. w16.Name = "Joint"
  2271. w16.Part0 = p17
  2272. w16.C0 = CFrame.new(0.156466246, -0.194725513, -0.0100102425, -0.460608691, 0.227749109, -0.85788697, 0.80572325, -0.29817903, -0.51176101, -0.372357011, -0.926941037, -0.0461589098)
  2273. w16.Part1 = p14
  2274. w16.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2275. w17 = Instance.new("Weld", p18)
  2276. w17.Name = "Joint"
  2277. w17.Part0 = p18
  2278. w17.C0 = CFrame.new(0.046289444, -0.199023724, 0.0569794178, 0.154631272, -0.0373091251, -0.987267554, -0.489805043, 0.864940584, -0.109402351, 0.858009458, 0.500485599, 0.115472674)
  2279. w17.Part1 = p17
  2280. w17.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2281. w18 = Instance.new("Weld", p19)
  2282. w18.Name = "Joint"
  2283. w18.Part0 = p19
  2284. w18.C0 = CFrame.new(0.211536884, -0.0502645969, -0.0522158146, 0.728958309, 0.445444137, 0.519806981, -0.683894217, 0.440442294, 0.581635118, 0.0301409438, -0.779480696, 0.625700712)
  2285. w18.Part1 = p21
  2286. w18.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2287. w19 = Instance.new("Weld", p20)
  2288. w19.Name = "Joint"
  2289. w19.Part0 = p20
  2290. w19.C0 = CFrame.new(0.0722160339, 0.164483547, 0.0522456169, 0.148452476, 0.216069669, 0.965026319, 0.508259654, 0.820421398, -0.261879444, -0.848312438, 0.529360592, 0.0119740963)
  2291. w19.Part1 = p11
  2292. w19.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2293. w20 = Instance.new("Weld", p21)
  2294. w20.Name = "Joint"
  2295. w20.Part0 = p21
  2296. w20.C0 = CFrame.new(0.246201992, 0.0183468163, 0.0393443108, 0.980159461, 0.195441127, 0.0330170989, -0.100333519, 0.345563769, 0.933016002, 0.170940176, -0.917817175, 0.358316928)
  2297. w20.Part1 = p22
  2298. w20.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2299. w21 = Instance.new("Weld", p22)
  2300. w21.Name = "Joint"
  2301. w21.Part0 = p22
  2302. w21.C0 = CFrame.new(0.246201515, 0.0183467865, 0.0393443108, 0.96721822, 0.235350817, 0.0953874439, -0.0782081187, -0.0813006833, 0.993616521, 0.241603509, -0.968504071, -0.060229145)
  2303. w21.Part1 = p23
  2304. w21.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2305. w22 = Instance.new("Weld", p23)
  2306. w22.Name = "Joint"
  2307. w22.Part0 = p23
  2308. w22.C0 = CFrame.new(0.196961403, 0.014677465, 0.031475544, 0.966579735, -0.137344033, 0.21647194, 0.256335169, 0.504686236, -0.824368834, 0.0039717555, 0.852307677, 0.523025632)
  2309. w22.Part1 = p24
  2310. w22.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2311. w23 = Instance.new("Weld", p24)
  2312. w23.Name = "Joint"
  2313. w23.Part0 = p24
  2314. w23.C0 = CFrame.new(0.16540432, 0.0485391617, -0.0527825356, -0.208951756, 0.968707323, 0.133960381, -0.0571475253, 0.124654606, -0.990553021, -0.976254702, -0.214633241, 0.0293123852)
  2315. w23.Part1 = p25
  2316. w23.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2317. w24 = Instance.new("Weld", p25)
  2318. w24.Name = "Joint"
  2319. w24.Part0 = p25
  2320. w24.C0 = CFrame.new(0.136999726, 0.131462574, -0.0802993774, 0.0322127938, 0.557586372, -0.829493642, -0.185464859, 0.81884563, 0.543226421, 0.982122838, 0.136343077, 0.129789978)
  2321. w24.Part1 = p26
  2322. w24.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2323. w25 = Instance.new("Weld", p26)
  2324. w25.Name = "Joint"
  2325. w25.Part0 = p26
  2326. w25.C0 = CFrame.new(-0.0791475773, 0.161348343, 0.014251709, -0.2480997, -0.814228892, -0.524859786, -0.266315132, 0.578250885, -0.771169424, 0.931409001, -0.0515488982, -0.360305429)
  2327. w25.Part1 = p27
  2328. w25.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2329. w26 = Instance.new("Weld", p27)
  2330. w26.Name = "Joint"
  2331. w26.Part0 = p27
  2332. w26.C0 = CFrame.new(-0.104925156, 0.167636156, -0.0298128128, 0.401087224, -0.216573805, 0.890070021, -0.510172248, 0.754199564, 0.413409412, -0.760824084, -0.619902253, 0.192009777)
  2333. w26.Part1 = p28
  2334. w26.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2335. w27 = Instance.new("Weld", p28)
  2336. w27.Name = "Joint"
  2337. w27.Part0 = p28
  2338. w27.C0 = CFrame.new(-0.131156445, 0.209545135, -0.037266016, 0.338400394, -0.252909899, 0.906378388, -0.549903035, 0.728472173, 0.408576787, -0.763604522, -0.636682749, 0.10743928)
  2339. w27.Part1 = p29
  2340. w27.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2341. w28 = Instance.new("Weld", p29)
  2342. w28.Name = "Joint"
  2343. w28.Part0 = p29
  2344. w28.C0 = CFrame.new(-0.0782968998, 0.176962137, -0.0710916519, -0.250144869, -0.239018306, -0.938241899, 0.254374206, 0.918783069, -0.301879942, 0.934195518, -0.314178288, -0.169028759)
  2345. w28.Part1 = p30
  2346. w28.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2347. w29 = Instance.new("Weld", p30)
  2348. w29.Name = "Joint"
  2349. w29.Part0 = p30
  2350. w29.C0 = CFrame.new(-0.097776413, 0.186868906, -0.022808075, 0.547942579, -0.39773193, 0.735913277, -0.0455548018, 0.864242792, 0.501007974, -0.835274637, -0.30804801, 0.455436885)
  2351. w29.Part1 = p31
  2352. w29.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2353. w30 = Instance.new("Weld", p31)
  2354. w30.Name = "Joint"
  2355. w30.Part0 = p31
  2356. w30.C0 = CFrame.new(-0.0498166084, 0.243983507, -0.0221347809, 0.0954426825, -0.396762908, -0.912945747, 0.131352007, 0.914132595, -0.38354671, 0.986730695, -0.0833105743, 0.139362901)
  2357. w30.Part1 = p32
  2358. w30.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2359. w31 = Instance.new("Weld", p32)
  2360. w31.Name = "Joint"
  2361. w31.Part0 = p32
  2362. w31.C0 = CFrame.new(-0.144081593, 0.194519997, -0.0624723434, 0.795092285, -0.270274341, 0.542936563, -0.198274553, 0.730186164, 0.653846622, -0.573162735, -0.627518892, 0.526976764)
  2363. w31.Part1 = p33
  2364. w31.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2365. w32 = Instance.new("Weld", p33)
  2366. w32.Name = "Joint"
  2367. w32.Part0 = p33
  2368. w32.C0 = CFrame.new(-0.0938563347, 0.176145077, 0.0128297806, 0.0848137587, -0.421895206, -0.902668893, -0.548244178, 0.736708403, -0.39583993, 0.832006574, 0.528455555, -0.168818489)
  2369. w32.Part1 = p13
  2370. w32.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2371. w33 = Instance.new("Weld", p34)
  2372. w33.Name = "Joint"
  2373. w33.Part0 = p34
  2374. w33.C0 = CFrame.new(-0.0178728104, 0.0120868683, -0.150204837, -0.0961361453, -0.635109425, 0.766416311, 0.0535250939, 0.765570045, 0.641122162, -0.993928015, 0.102657512, -0.0396046676)
  2375. w33.Part1 = p12
  2376. w33.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2377. w34 = Instance.new("Weld", p35)
  2378. w34.Name = "Joint"
  2379. w34.Part0 = p35
  2380. w34.C0 = CFrame.new(-0.0214147568, 0.185832024, -0.00280380249, 0.370351821, -0.344516218, -0.862640202, -0.918555975, 0.00231964141, -0.395284295, 0.138182849, 0.938777506, -0.315598398)
  2381. w34.Part1 = p36
  2382. w34.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2383. w35 = Instance.new("Weld", p36)
  2384. w35.Name = "Joint"
  2385. w35.Part0 = p36
  2386. w35.C0 = CFrame.new(-0.136966705, -0.109280109, -0.0655572414, 0.678235054, 0.463834167, -0.569960475, 0.250202835, 0.583515286, 0.772598565, 0.690938354, -0.666609228, 0.279707849)
  2387. w35.Part1 = p2
  2388. w35.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2389. m3.Parent = torso
  2390. m3:MakeJoints()
  2391. ----------------------------------------------------
  2392. local cor3 = Instance.new("Part", torso.Torso)
  2393. cor3.Name = "Thingy"
  2394. cor3.Locked = true
  2395. cor3.BottomSurface = 0
  2396. cor3.CanCollide = false
  2397. cor3.Size = Vector3.new(1, 1, 1)
  2398. cor3.Transparency = 1
  2399. cor3.TopSurface = 0
  2400. corw3 = Instance.new("Weld", cor3)
  2401. corw3.Part0 = torso
  2402. corw3.Part1 = cor3
  2403. corw3.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  2404. corw3.C1 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  2405. weld3 = Instance.new("Weld", torso.Torso)
  2406. weld3.Part0 = cor3
  2407. weld3.Part1 = torso.Torso.TorsoPlate
  2408. weld3.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  2409. --Left Leg
  2410. m4 = Instance.new("Model")
  2411. m4.Name = "LeftLeg"
  2412. p1 = Instance.new("Part", m4)
  2413. p1.BrickColor = BrickColor.new("Carnation pink")
  2414. p1.Material = Enum.Material.Metal
  2415. p1.Name = "LeftLegPlate"
  2416. p1.CFrame = CFrame.new(-1.5, 4.74442291, -7.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2417. p1.Anchored = false
  2418. p1.CanCollide = false
  2419. p1.FormFactor = Enum.FormFactor.Custom
  2420. p1.Size = Vector3.new(1, 2, 1)
  2421. p1.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2422. p1.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2423. p1.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2424. p1.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2425. p1.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2426. p1.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2427. b1 = Instance.new("SpecialMesh", p1)
  2428. b1.MeshType = Enum.MeshType.Brick
  2429. b1.Name = "Mesh"
  2430. b1.Scale = Vector3.new(1.01999998, 1, 1.01999998)
  2431. p2 = Instance.new("Part", m4)
  2432. p2.BrickColor = BrickColor.new("Carnation pink")
  2433. p2.Material = Enum.Material.Metal
  2434. p2.CFrame = CFrame.new(-2.0999999, 5.44442606, -7.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2435. p2.Anchored = false
  2436. p2.CanCollide = false
  2437. p2.FormFactor = Enum.FormFactor.Custom
  2438. p2.Size = Vector3.new(0.239999995, 0.300000012, 0.899999976)
  2439. p2.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2440. p2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2441. p2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2442. p2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2443. p2.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2444. p2.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2445. b2 = Instance.new("SpecialMesh", p2)
  2446. b2.MeshType = Enum.MeshType.Brick
  2447. b2.Name = "Mesh"
  2448. b2.Scale = Vector3.new(1.01999998, 1, 1.01999998)
  2449. p3 = Instance.new("Part", m4)
  2450. p3.BrickColor = BrickColor.new("Carnation pink")
  2451. p3.Material = Enum.Material.Metal
  2452. p3.CFrame = CFrame.new(-2.0999999, 5.04442501, -7.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2453. p3.Anchored = false
  2454. p3.CanCollide = false
  2455. p3.FormFactor = Enum.FormFactor.Custom
  2456. p3.Size = Vector3.new(0.200000003, 0.600000024, 0.800000012)
  2457. p3.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2458. p3.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2459. p3.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2460. p3.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2461. p3.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2462. p3.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2463. b3 = Instance.new("SpecialMesh", p3)
  2464. b3.MeshType = Enum.MeshType.Brick
  2465. b3.Name = "Mesh"
  2466. b3.Scale = Vector3.new(1.01999998, 1, 1.01999998)
  2467. p4 = Instance.new("Part", m4)
  2468. p4.BrickColor = BrickColor.new("Sunrise")
  2469. p4.Material = Enum.Material.Metal
  2470. p4.CFrame = CFrame.new(-1.5, 4.74442291, -7.02999783, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2471. p4.Anchored = false
  2472. p4.CanCollide = false
  2473. p4.FormFactor = Enum.FormFactor.Custom
  2474. p4.Size = Vector3.new(1, 2, 0.200000018)
  2475. p4.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2476. p4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2477. p4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2478. p4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2479. p4.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2480. p4.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2481. b4 = Instance.new("SpecialMesh", p4)
  2482. b4.MeshType = Enum.MeshType.Brick
  2483. b4.Name = "Mesh"
  2484. b4.Scale = Vector3.new(1, 1.01999998, 1.01999998)
  2485. p5 = Instance.new("Part", m4)
  2486. p5.BrickColor = BrickColor.new("Sunrise")
  2487. p5.Material = Enum.Material.Metal
  2488. p5.CFrame = CFrame.new(-2, 4.74442291, -7.47999907, -4.37113883e-008, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-008)
  2489. p5.Anchored = false
  2490. p5.CanCollide = false
  2491. p5.FormFactor = Enum.FormFactor.Custom
  2492. p5.Size = Vector3.new(1, 2, 0.200000018)
  2493. p5.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2494. p5.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2495. p5.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2496. p5.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2497. p5.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2498. p5.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2499. b5 = Instance.new("SpecialMesh", p5)
  2500. b5.MeshType = Enum.MeshType.Brick
  2501. b5.Name = "Mesh"
  2502. b5.Scale = Vector3.new(1, 1.01999998, 1.01999998)
  2503. p6 = Instance.new("Part", m4)
  2504. p6.BrickColor = BrickColor.new("Sunrise")
  2505. p6.Material = Enum.Material.Metal
  2506. p6.CFrame = CFrame.new(-1.50999999, 3.74442887, -7.5, -4.37113883e-008, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-008)
  2507. p6.Anchored = false
  2508. p6.CanCollide = false
  2509. p6.FormFactor = Enum.FormFactor.Custom
  2510. p6.Size = Vector3.new(1, 0.200000048, 0.980000019)
  2511. p6.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2512. p6.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2513. p6.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2514. p6.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2515. p6.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2516. p6.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2517. b6 = Instance.new("SpecialMesh", p6)
  2518. b6.MeshType = Enum.MeshType.Brick
  2519. b6.Name = "Mesh"
  2520. b6.Scale = Vector3.new(1, 1.01999998, 1.01999998)
  2521. p7 = Instance.new("Part", m4)
  2522. p7.BrickColor = BrickColor.new("Sunrise")
  2523. p7.Material = Enum.Material.Metal
  2524. p7.CFrame = CFrame.new(-1.5, 5.74442291, -7.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2525. p7.Anchored = false
  2526. p7.CanCollide = false
  2527. p7.FormFactor = Enum.FormFactor.Custom
  2528. p7.Size = Vector3.new(1, 0.200000048, 0.99000001)
  2529. p7.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2530. p7.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2531. p7.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2532. p7.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2533. p7.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2534. p7.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2535. b7 = Instance.new("SpecialMesh", p7)
  2536. b7.MeshType = Enum.MeshType.Brick
  2537. b7.Name = "Mesh"
  2538. b7.Scale = Vector3.new(1, 1.01999998, 1.01999998)
  2539. w1 = Instance.new("Weld", p2)
  2540. w1.Name = "Joint"
  2541. w1.Part0 = p2
  2542. w1.C0 = CFrame.new(0, -0.40000093, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2543. w1.Part1 = p3
  2544. w1.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2545. w2 = Instance.new("Weld", p3)
  2546. w2.Name = "Joint"
  2547. w2.Part0 = p3
  2548. w2.C0 = CFrame.new(0.0999999046, -0.300002098, 0.0200009346, -4.37113883e-008, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-008)
  2549. w2.Part1 = p5
  2550. w2.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2551. w3 = Instance.new("Weld", p4)
  2552. w3.Name = "Joint"
  2553. w3.Part0 = p4
  2554. w3.C0 = CFrame.new(0, 0, -0.470002174, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2555. w3.Part1 = p1
  2556. w3.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2557. w4 = Instance.new("Weld", p5)
  2558. w4.Name = "Joint"
  2559. w4.Part0 = p5
  2560. w4.C0 = CFrame.new(-0.0200009346, 0, -0.5, -4.37113883e-008, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-008)
  2561. w4.Part1 = p1
  2562. w4.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2563. w5 = Instance.new("Weld", p6)
  2564. w5.Name = "Joint"
  2565. w5.Part0 = p6
  2566. w5.C0 = CFrame.new(0, 0.99999404, -0.00999999046, -4.37113883e-008, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-008)
  2567. w5.Part1 = p1
  2568. w5.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2569. w6 = Instance.new("Weld", p7)
  2570. w6.Name = "Joint"
  2571. w6.Part0 = p7
  2572. w6.C0 = CFrame.new(0, -1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2573. w6.Part1 = p1
  2574. w6.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2575. m4.Parent = lleg
  2576. m4:MakeJoints()
  2577. ----------------------------------------------------
  2578. local cor4 = Instance.new("Part", lleg.LeftLeg)
  2579. cor4.Name = "Thingy"
  2580. cor4.Locked = true
  2581. cor4.BottomSurface = 0
  2582. cor4.CanCollide = false
  2583. cor4.Size = Vector3.new(1, 1, 1)
  2584. cor4.Transparency = 1
  2585. cor4.TopSurface = 0
  2586. corw4 = Instance.new("Weld", cor4)
  2587. corw4.Part0 = lleg
  2588. corw4.Part1 = cor4
  2589. corw4.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  2590. corw4.C1 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  2591. weld4 = Instance.new("Weld", lleg.LeftLeg)
  2592. weld4.Part0 = cor4
  2593. weld4.Part1 = lleg.LeftLeg.LeftLegPlate
  2594. weld4.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  2595. --Right Leg
  2596. m5 = Instance.new("Model")
  2597. m5.Name = "RightLeg"
  2598. p1 = Instance.new("Part", m5)
  2599. p1.BrickColor = BrickColor.new("Carnation pink")
  2600. p1.Material = Enum.Material.Metal
  2601. p1.Name = "RightLegPlate"
  2602. p1.CFrame = CFrame.new(1.5, 4.74441528, -7.49999952, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2603. p1.Anchored = false
  2604. p1.CanCollide = false
  2605. p1.CanCollide = false
  2606. p1.FormFactor = Enum.FormFactor.Custom
  2607. p1.Size = Vector3.new(1, 2, 1)
  2608. p1.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2609. p1.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2610. p1.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2611. p1.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2612. p1.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2613. p1.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2614. b1 = Instance.new("SpecialMesh", p1)
  2615. b1.MeshType = Enum.MeshType.Brick
  2616. b1.Name = "Mesh"
  2617. b1.Scale = Vector3.new(1.01999998, 1, 1.01999998)
  2618. p2 = Instance.new("Part", m5)
  2619. p2.BrickColor = BrickColor.new("Carnation pink")
  2620. p2.Material = Enum.Material.Metal
  2621. p2.CFrame = CFrame.new(2.05000019, 5.44441557, -7.49999952, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2622. p2.Anchored = false
  2623. p2.CanCollide = false
  2624. p2.FormFactor = Enum.FormFactor.Custom
  2625. p2.Size = Vector3.new(0.239999995, 0.300000012, 0.899999976)
  2626. p2.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2627. p2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2628. p2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2629. p2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2630. p2.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2631. p2.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2632. b2 = Instance.new("SpecialMesh", p2)
  2633. b2.MeshType = Enum.MeshType.Brick
  2634. b2.Name = "Mesh"
  2635. b2.Scale = Vector3.new(1.01999998, 1, 1.01999998)
  2636. p3 = Instance.new("Part", m5)
  2637. p3.BrickColor = BrickColor.new("Carnation pink")
  2638. p3.Material = Enum.Material.Metal
  2639. p3.CFrame = CFrame.new(2.05000019, 5.04441547, -7.49999952, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2640. p3.Anchored = false
  2641. p3.CanCollide = false
  2642. p3.FormFactor = Enum.FormFactor.Custom
  2643. p3.Size = Vector3.new(0.200000003, 0.600000024, 0.800000012)
  2644. p3.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2645. p3.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2646. p3.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2647. p3.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2648. p3.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2649. p3.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2650. b3 = Instance.new("SpecialMesh", p3)
  2651. b3.MeshType = Enum.MeshType.Brick
  2652. b3.Name = "Mesh"
  2653. b3.Scale = Vector3.new(1.01999998, 1, 1.01999998)
  2654. p4 = Instance.new("Part", m5)
  2655. p4.BrickColor = BrickColor.new("Sunrise")
  2656. p4.Material = Enum.Material.Metal
  2657. p4.CFrame = CFrame.new(1.5, 4.74441528, -7.0299983, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2658. p4.Anchored = false
  2659. p4.CanCollide = false
  2660. p4.FormFactor = Enum.FormFactor.Custom
  2661. p4.Size = Vector3.new(1, 2, 0.200000018)
  2662. p4.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2663. p4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2664. p4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2665. p4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2666. p4.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2667. p4.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2668. b4 = Instance.new("SpecialMesh", p4)
  2669. b4.MeshType = Enum.MeshType.Brick
  2670. b4.Name = "Mesh"
  2671. b4.Scale = Vector3.new(1, 1.01999998, 1.01999998)
  2672. p5 = Instance.new("Part", m5)
  2673. p5.BrickColor = BrickColor.new("Sunrise")
  2674. p5.Material = Enum.Material.Metal
  2675. p5.CFrame = CFrame.new(2, 4.74441528, -7.47999907, -4.37113883e-008, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-008)
  2676. p5.Anchored = false
  2677. p5.CanCollide = false
  2678. p5.FormFactor = Enum.FormFactor.Custom
  2679. p5.Size = Vector3.new(1, 2, 0.200000018)
  2680. p5.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2681. p5.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2682. p5.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2683. p5.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2684. p5.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2685. p5.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2686. b5 = Instance.new("SpecialMesh", p5)
  2687. b5.MeshType = Enum.MeshType.Brick
  2688. b5.Name = "Mesh"
  2689. b5.Scale = Vector3.new(1, 1.01999998, 1.01999998)
  2690. p6 = Instance.new("Part", m5)
  2691. p6.BrickColor = BrickColor.new("Sunrise")
  2692. p6.Material = Enum.Material.Metal
  2693. p6.CFrame = CFrame.new(1.505, 3.74442124, -7.49999952, -4.37113883e-008, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-008)
  2694. p6.Anchored = false
  2695. p6.CanCollide = false
  2696. p6.FormFactor = Enum.FormFactor.Custom
  2697. p6.Size = Vector3.new(1, 0.200000048, 0.99000001)
  2698. p6.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2699. p6.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2700. p6.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2701. p6.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2702. p6.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2703. p6.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2704. b6 = Instance.new("SpecialMesh", p6)
  2705. b6.MeshType = Enum.MeshType.Brick
  2706. b6.Name = "Mesh"
  2707. b6.Scale = Vector3.new(1, 1.01999998, 1.01999998)
  2708. p7 = Instance.new("Part", m5)
  2709. p7.BrickColor = BrickColor.new("Sunrise")
  2710. p7.Material = Enum.Material.Metal
  2711. p7.CFrame = CFrame.new(1.505, 5.69442129, -7.49999952, -4.37113883e-008, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-008)
  2712. p7.Anchored = false
  2713. p7.CanCollide = false
  2714. p7.FormFactor = Enum.FormFactor.Custom
  2715. p7.Size = Vector3.new(1, 0.200000048, 0.99000001)
  2716. p7.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2717. p7.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2718. p7.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2719. p7.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2720. p7.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2721. p7.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2722. b7 = Instance.new("SpecialMesh", p7)
  2723. b7.MeshType = Enum.MeshType.Brick
  2724. b7.Name = "Mesh"
  2725. b7.Scale = Vector3.new(1, 1.01999998, 1.01999998)
  2726. w1 = Instance.new("Weld", p2)
  2727. w1.Name = "Joint"
  2728. w1.Part0 = p2
  2729. w1.C0 = CFrame.new(0, -0.400000095, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2730. w1.Part1 = p3
  2731. w1.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2732. w2 = Instance.new("Weld", p3)
  2733. w2.Name = "Joint"
  2734. w2.Part0 = p3
  2735. w2.C0 = CFrame.new(-0.0500001907, -0.300000191, 0.0200004578, -4.37113883e-008, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-008)
  2736. w2.Part1 = p5
  2737. w2.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2738. w3 = Instance.new("Weld", p4)
  2739. w3.Name = "Joint"
  2740. w3.Part0 = p4
  2741. w3.C0 = CFrame.new(0, 0, -0.470001221, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2742. w3.Part1 = p1
  2743. w3.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2744. w4 = Instance.new("Weld", p5)
  2745. w4.Name = "Joint"
  2746. w4.Part0 = p5
  2747. w4.C0 = CFrame.new(-0.0200004578, 0, 0.5, -4.37113883e-008, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-008)
  2748. w4.Part1 = p1
  2749. w4.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2750. w5 = Instance.new("Weld", p6)
  2751. w5.Name = "Joint"
  2752. w5.Part0 = p6
  2753. w5.C0 = CFrame.new(0, 0.99999404, 0.00499999523, -4.37113883e-008, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-008)
  2754. w5.Part1 = p1
  2755. w5.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2756. w6 = Instance.new("Weld", p7)
  2757. w6.Name = "Joint"
  2758. w6.Part0 = p7
  2759. w6.C0 = CFrame.new(0, -0.950006008, 0.00499999523, -4.37113883e-008, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-008)
  2760. w6.Part1 = p1
  2761. w6.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2762. m5.Parent = rleg
  2763. m5:MakeJoints()
  2764. ----------------------------------------------------
  2765. local cor5 = Instance.new("Part", rleg.RightLeg)
  2766. cor5.Name = "Thingy"
  2767. cor5.Locked = true
  2768. cor5.BottomSurface = 0
  2769. cor5.CanCollide = false
  2770. cor5.Size = Vector3.new(1, 1, 1)
  2771. cor5.Transparency = 1
  2772. cor5.TopSurface = 0
  2773. corw5 = Instance.new("Weld", cor5)
  2774. corw5.Part0 = rleg
  2775. corw5.Part1 = cor5
  2776. corw5.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  2777. corw5.C1 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  2778. wld5 = Instance.new("Weld", rleg.RightLeg)
  2779. wld5.Part0 = cor5
  2780. wld5.Part1 = rleg.RightLeg.RightLegPlate
  2781. wld5.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  2782. --Cape
  2783. m6 = Instance.new("Model")
  2784. m6.Name = "Cloak"
  2785. p1 = Instance.new("WedgePart", m6)
  2786. p1.BrickColor = BrickColor.new("Hot pink")
  2787. p1.Material = Enum.Material.SmoothPlastic
  2788. p1.Name = "Wedge"
  2789. p1.Transparency = 1
  2790. p1.CFrame = CFrame.new(0.959278464, 4.40979004, 4.03967237, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  2791. p1.CanCollide = false
  2792. p1.Locked = true
  2793. p1.FormFactor = Enum.FormFactor.Custom
  2794. p1.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  2795. p1.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2796. p1.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2797. p1.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2798. p1.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2799. p1.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2800. p1.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2801. b1 = Instance.new("SpecialMesh", p1)
  2802. b1.MeshType = Enum.MeshType.Wedge
  2803. b1.Name = "Mesh"
  2804. b1.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  2805. p2 = Instance.new("WedgePart", m6)
  2806. p2.BrickColor = BrickColor.new("Sunrise")
  2807. p2.Material = Enum.Material.SmoothPlastic
  2808. p2.Name = "Wedge"
  2809. p2.CFrame = CFrame.new(-1.27945054, 2.10108781, 4.03967237, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  2810. p2.CanCollide = false
  2811. p2.Locked = true
  2812. p2.FormFactor = Enum.FormFactor.Custom
  2813. p2.Size = Vector3.new(0.232357651, 0.279841363, 0.232357636)
  2814. p2.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2815. p2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2816. p2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2817. p2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2818. p2.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2819. p2.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2820. b2 = Instance.new("SpecialMesh", p2)
  2821. b2.MeshType = Enum.MeshType.Wedge
  2822. b2.Name = "Mesh"
  2823. b2.Scale = Vector3.new(0.602178097, 1, 0.602178097)
  2824. p3 = Instance.new("Part", m6)
  2825. p3.BrickColor = BrickColor.new("Sunrise")
  2826. p3.Material = Enum.Material.SmoothPlastic
  2827. p3.Name = "CapeLevel2"
  2828. p3.CFrame = CFrame.new(-0.300008506, 3.78014231, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2829. p3.CanCollide = false
  2830. p3.Locked = true
  2831. p3.FormFactor = Enum.FormFactor.Custom
  2832. p3.Size = Vector3.new(2.09881067, 0.559682727, 0.232357636)
  2833. p3.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2834. p3.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2835. p3.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2836. p3.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2837. p3.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2838. p3.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2839. b3 = Instance.new("BlockMesh", p3)
  2840. b3.Name = "Mesh"
  2841. b3.Scale = Vector3.new(1, 1, 0.602178097)
  2842. p4 = Instance.new("Part", m6)
  2843. p4.BrickColor = BrickColor.new("Sunrise")
  2844. p4.Material = Enum.Material.SmoothPlastic
  2845. p4.CFrame = CFrame.new(-1.8391341, 2.73073244, 4.03967237, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  2846. p4.CanCollide = false
  2847. p4.Locked = true
  2848. p4.FormFactor = Enum.FormFactor.Custom
  2849. p4.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  2850. p4.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2851. p4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2852. p4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2853. p4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2854. p4.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2855. p4.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2856. b4 = Instance.new("BlockMesh", p4)
  2857. b4.Name = "Mesh"
  2858. b4.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  2859. p5 = Instance.new("Part", m6)
  2860. p5.BrickColor = BrickColor.new("Sunrise")
  2861. p5.Material = Enum.Material.SmoothPlastic
  2862. p5.CFrame = CFrame.new(-1.69921267, 2.73073244, 4.03967237, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  2863. p5.CanCollide = false
  2864. p5.Locked = true
  2865. p5.FormFactor = Enum.FormFactor.Custom
  2866. p5.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  2867. p5.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2868. p5.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2869. p5.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2870. p5.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2871. p5.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2872. p5.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2873. b5 = Instance.new("BlockMesh", p5)
  2874. b5.Name = "Mesh"
  2875. b5.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  2876. p6 = Instance.new("Part", m6)
  2877. p6.BrickColor = BrickColor.new("Sunrise")
  2878. p6.Material = Enum.Material.SmoothPlastic
  2879. p6.Name = "CapeLevel1"
  2880. p6.CFrame = CFrame.new(-0.300008506, 4.6896286, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2881. p6.CanCollide = false
  2882. p6.Locked = true
  2883. p6.FormFactor = Enum.FormFactor.Custom
  2884. p6.Size = Vector3.new(1.25928628, 0.232357651, 0.232357636)
  2885. p6.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2886. p6.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2887. p6.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2888. p6.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2889. p6.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2890. p6.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2891. b6 = Instance.new("BlockMesh", p6)
  2892. b6.Name = "Mesh"
  2893. b6.Scale = Vector3.new(1, 0.602178097, 0.602178097)
  2894. p7 = Instance.new("Part", m6)
  2895. p7.BrickColor = BrickColor.new("Sunrise")
  2896. p7.Material = Enum.Material.SmoothPlastic
  2897. p7.CFrame = CFrame.new(1.23912418, 2.73073268, 4.03967333, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2898. p7.CanCollide = false
  2899. p7.Locked = true
  2900. p7.FormFactor = Enum.FormFactor.Custom
  2901. p7.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  2902. p7.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2903. p7.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2904. p7.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2905. p7.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2906. p7.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2907. p7.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2908. b7 = Instance.new("BlockMesh", p7)
  2909. b7.Name = "Mesh"
  2910. b7.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  2911. p8 = Instance.new("Part", m6)
  2912. p8.BrickColor = BrickColor.new("Sunrise")
  2913. p8.Material = Enum.Material.SmoothPlastic
  2914. p8.CFrame = CFrame.new(0.539517641, 2.10109043, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2915. p8.CanCollide = false
  2916. p8.Locked = true
  2917. p8.FormFactor = Enum.FormFactor.Custom
  2918. p8.Size = Vector3.new(0.232357651, 0.279841363, 0.232357636)
  2919. p8.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2920. p8.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2921. p8.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2922. p8.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2923. p8.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2924. p8.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2925. b8 = Instance.new("BlockMesh", p8)
  2926. b8.Name = "Mesh"
  2927. b8.Scale = Vector3.new(0.602178097, 1, 0.602178097)
  2928. p9 = Instance.new("Part", m6)
  2929. p9.BrickColor = BrickColor.new("Sunrise")
  2930. p9.Material = Enum.Material.SmoothPlastic
  2931. p9.CFrame = CFrame.new(-0.300009966, 2.03112936, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2932. p9.CanCollide = false
  2933. p9.Locked = true
  2934. p9.FormFactor = Enum.FormFactor.Custom
  2935. p9.Size = Vector3.new(0.419762105, 0.419762105, 0.232357636)
  2936. p9.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2937. p9.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2938. p9.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2939. p9.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2940. p9.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2941. p9.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2942. b9 = Instance.new("BlockMesh", p9)
  2943. b9.Name = "Mesh"
  2944. b9.Scale = Vector3.new(1, 1, 0.602178097)
  2945. p10 = Instance.new("Part", m6)
  2946. p10.BrickColor = BrickColor.new("Sunrise")
  2947. p10.Material = Enum.Material.SmoothPlastic
  2948. p10.CFrame = CFrame.new(1.09920263, 2.73073268, 4.03967333, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2949. p10.CanCollide = false
  2950. p10.Locked = true
  2951. p10.FormFactor = Enum.FormFactor.Custom
  2952. p10.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  2953. p10.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2954. p10.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2955. p10.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2956. p10.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2957. p10.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2958. p10.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2959. b10 = Instance.new("BlockMesh", p10)
  2960. b10.Name = "Mesh"
  2961. b10.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  2962. p11 = Instance.new("Part", m6)
  2963. p11.BrickColor = BrickColor.new("Sunrise")
  2964. p11.Material = Enum.Material.SmoothPlastic
  2965. p11.CFrame = CFrame.new(-1.13953161, 2.10109043, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2966. p11.CanCollide = false
  2967. p11.Locked = true
  2968. p11.FormFactor = Enum.FormFactor.Custom
  2969. p11.Size = Vector3.new(0.232357651, 0.279841363, 0.232357636)
  2970. p11.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2971. p11.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2972. p11.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2973. p11.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2974. p11.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2975. p11.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2976. b11 = Instance.new("BlockMesh", p11)
  2977. b11.Name = "Mesh"
  2978. b11.Scale = Vector3.new(0.602178097, 1, 0.602178097)
  2979. p12 = Instance.new("Part", m6)
  2980. p12.BrickColor = BrickColor.new("Sunrise")
  2981. p12.Material = Enum.Material.SmoothPlastic
  2982. p12.CFrame = CFrame.new(-1.6992135, 3.29041815, 4.03967237, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  2983. p12.CanCollide = false
  2984. p12.Locked = true
  2985. p12.FormFactor = Enum.FormFactor.Custom
  2986. p12.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  2987. p12.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2988. p12.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2989. p12.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2990. p12.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2991. p12.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2992. p12.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2993. b12 = Instance.new("BlockMesh", p12)
  2994. b12.Name = "Mesh"
  2995. b12.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  2996. p13 = Instance.new("Part", m6)
  2997. p13.BrickColor = BrickColor.new("Sunrise")
  2998. p13.Material = Enum.Material.SmoothPlastic
  2999. p13.Name = "BottomLeftFlap"
  3000. p13.CFrame = CFrame.new(-1.13953161, 2.31097221, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3001. p13.CanCollide = false
  3002. p13.Locked = true
  3003. p13.FormFactor = Enum.FormFactor.Custom
  3004. p13.Size = Vector3.new(0.419762105, 0.232357651, 0.232357636)
  3005. p13.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3006. p13.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3007. p13.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3008. p13.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3009. p13.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3010. p13.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3011. b13 = Instance.new("BlockMesh", p13)
  3012. b13.Name = "Mesh"
  3013. b13.Scale = Vector3.new(1, 0.602178097, 0.602178097)
  3014. p14 = Instance.new("Part", m6)
  3015. p14.BrickColor = BrickColor.new("Sunrise")
  3016. p14.Material = Enum.Material.SmoothPlastic
  3017. p14.Transparency = 1
  3018. p14.Name = "Rotater"
  3019. p14.CFrame = CFrame.new(-0.300001532, 4.82954979, 4.03967381, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3020. p14.CanCollide = false
  3021. p14.Locked = true
  3022. p14.FormFactor = Enum.FormFactor.Custom
  3023. p14.Size = Vector3.new(1.25928617, 0.232357651, 0.232357636)
  3024. p14.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3025. p14.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3026. p14.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3027. p14.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3028. p14.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3029. p14.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3030. b14 = Instance.new("BlockMesh", p14)
  3031. b14.Name = "Mesh"
  3032. b14.Scale = Vector3.new(1, 0.632287025, 0.632287025)
  3033. p15 = Instance.new("Part", m6)
  3034. p15.BrickColor = BrickColor.new("Sunrise")
  3035. p15.Material = Enum.Material.SmoothPlastic
  3036. p15.CFrame = CFrame.new(-1.41937125, 4.40979004, 4.03967237, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  3037. p15.CanCollide = false
  3038. p15.Locked = true
  3039. p15.FormFactor = Enum.FormFactor.Custom
  3040. p15.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3041. p15.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3042. p15.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3043. p15.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3044. p15.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3045. p15.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3046. p15.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3047. b15 = Instance.new("BlockMesh", p15)
  3048. b15.Name = "Mesh"
  3049. b15.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  3050. p16 = Instance.new("Part", m6)
  3051. p16.BrickColor = BrickColor.new("Sunrise")
  3052. p16.Material = Enum.Material.SmoothPlastic
  3053. p16.Name = "BottomCenterFlap"
  3054. p16.CFrame = CFrame.new(-0.300009966, 2.31097221, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3055. p16.CanCollide = false
  3056. p16.Locked = true
  3057. p16.FormFactor = Enum.FormFactor.Custom
  3058. p16.Size = Vector3.new(0.699603498, 0.232357651, 0.232357636)
  3059. p16.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3060. p16.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3061. p16.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3062. p16.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3063. p16.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3064. p16.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3065. b16 = Instance.new("BlockMesh", p16)
  3066. b16.Name = "Mesh"
  3067. b16.Scale = Vector3.new(1, 0.602178097, 0.602178097)
  3068. p17 = Instance.new("Part", m6)
  3069. p17.BrickColor = BrickColor.new("Sunrise")
  3070. p17.Material = Enum.Material.SmoothPlastic
  3071. p17.CFrame = CFrame.new(-1.27945054, 4.26986647, 4.03967237, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  3072. p17.CanCollide = false
  3073. p17.Locked = true
  3074. p17.FormFactor = Enum.FormFactor.Custom
  3075. p17.Size = Vector3.new(0.232357651, 0.419762105, 0.232357636)
  3076. p17.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3077. p17.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3078. p17.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3079. p17.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3080. p17.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3081. p17.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3082. b17 = Instance.new("BlockMesh", p17)
  3083. b17.Name = "Mesh"
  3084. b17.Scale = Vector3.new(0.602178097, 1, 0.602178097)
  3085. p18 = Instance.new("Part", m6)
  3086. p18.BrickColor = BrickColor.new("Sunrise")
  3087. p18.Material = Enum.Material.SmoothPlastic
  3088. p18.CFrame = CFrame.new(0.679436207, 4.26986647, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3089. p18.CanCollide = false
  3090. p18.Locked = true
  3091. p18.FormFactor = Enum.FormFactor.Custom
  3092. p18.Size = Vector3.new(0.232357651, 0.419762105, 0.232357636)
  3093. p18.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3094. p18.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3095. p18.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3096. p18.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3097. p18.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3098. p18.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3099. b18 = Instance.new("BlockMesh", p18)
  3100. b18.Name = "Mesh"
  3101. b18.Scale = Vector3.new(0.602178097, 1, 0.602178097)
  3102. p19 = Instance.new("WedgePart", m6)
  3103. p19.BrickColor = BrickColor.new("Hot pink")
  3104. p19.Name = "Wedge"
  3105. p19.CFrame = CFrame.new(-0.265017539, 1.47144794, 4.03967237, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  3106. p19.CanCollide = false
  3107. p19.Locked = true
  3108. p19.FormFactor = Enum.FormFactor.Custom
  3109. p19.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3110. p19.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3111. p19.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3112. p19.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3113. p19.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3114. p19.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3115. p19.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3116. b19 = Instance.new("SpecialMesh", p19)
  3117. b19.MeshType = Enum.MeshType.Wedge
  3118. b19.Name = "Mesh"
  3119. b19.Scale = Vector3.new(0.602178395, 0.602178395, 0.301089197)
  3120. p20 = Instance.new("Part", m6)
  3121. p20.BrickColor = BrickColor.new("Sunrise")
  3122. p20.Material = Enum.Material.SmoothPlastic
  3123. p20.CFrame = CFrame.new(1.09919691, 3.29041815, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3124. p20.CanCollide = false
  3125. p20.Locked = true
  3126. p20.FormFactor = Enum.FormFactor.Custom
  3127. p20.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3128. p20.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3129. p20.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3130. p20.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3131. p20.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3132. p20.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3133. p20.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3134. b20 = Instance.new("BlockMesh", p20)
  3135. b20.Name = "Mesh"
  3136. b20.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  3137. p21 = Instance.new("Part", m6)
  3138. p21.BrickColor = BrickColor.new("Sunrise")
  3139. p21.Material = Enum.Material.SmoothPlastic
  3140. p21.CFrame = CFrame.new(0.959275484, 3.1504972, 4.03967381, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3141. p21.CanCollide = false
  3142. p21.Locked = true
  3143. p21.FormFactor = Enum.FormFactor.Custom
  3144. p21.Size = Vector3.new(0.232357651, 0.419762105, 0.232357636)
  3145. p21.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3146. p21.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3147. p21.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3148. p21.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3149. p21.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3150. p21.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3151. b21 = Instance.new("BlockMesh", p21)
  3152. b21.Name = "Mesh"
  3153. b21.Scale = Vector3.new(0.602178097, 1, 0.602178097)
  3154. p22 = Instance.new("WedgePart", m6)
  3155. p22.BrickColor = BrickColor.new("Hot pink")
  3156. p22.Name = "Wedge"
  3157. p22.CFrame = CFrame.new(0.50454706, 1.89121199, 4.03967237, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  3158. p22.CanCollide = false
  3159. p22.Locked = true
  3160. p22.FormFactor = Enum.FormFactor.Custom
  3161. p22.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3162. p22.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3163. p22.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3164. p22.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3165. p22.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3166. p22.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3167. p22.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3168. b22 = Instance.new("SpecialMesh", p22)
  3169. b22.MeshType = Enum.MeshType.Wedge
  3170. b22.Name = "Mesh"
  3171. b22.Scale = Vector3.new(0.602178395, 0.602178395, 0.301089197)
  3172. p23 = Instance.new("WedgePart", m6)
  3173. p23.BrickColor = BrickColor.new("Hot pink")
  3174. p23.Material = Enum.Material.SmoothPlastic
  3175. p23.Name = "Wedge"
  3176. p23.CFrame = CFrame.new(1.09919691, 3.85010386, 4.03967237, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  3177. p23.CanCollide = false
  3178. p23.Locked = true
  3179. p23.FormFactor = Enum.FormFactor.Custom
  3180. p23.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3181. p23.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3182. p23.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3183. p23.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3184. p23.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3185. p23.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3186. p23.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3187. b23 = Instance.new("SpecialMesh", p23)
  3188. b23.MeshType = Enum.MeshType.Wedge
  3189. b23.Name = "Mesh"
  3190. b23.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  3191. p24 = Instance.new("WedgePart", m6)
  3192. p24.BrickColor = BrickColor.new("Sunrise")
  3193. p24.Material = Enum.Material.SmoothPlastic
  3194. p24.Name = "Wedge"
  3195. p24.CFrame = CFrame.new(0.959281087, 2.45089102, 4.03967333, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  3196. p24.CanCollide = false
  3197. p24.Locked = true
  3198. p24.FormFactor = Enum.FormFactor.Custom
  3199. p24.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3200. p24.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3201. p24.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3202. p24.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3203. p24.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3204. p24.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3205. p24.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3206. b24 = Instance.new("SpecialMesh", p24)
  3207. b24.MeshType = Enum.MeshType.Wedge
  3208. b24.Name = "Mesh"
  3209. b24.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  3210. p25 = Instance.new("WedgePart", m6)
  3211. p25.BrickColor = BrickColor.new("Hot pink")
  3212. p25.Name = "Wedge"
  3213. p25.CFrame = CFrame.new(0.574507415, 1.89121199, 4.03967237, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  3214. p25.CanCollide = false
  3215. p25.Locked = true
  3216. p25.FormFactor = Enum.FormFactor.Custom
  3217. p25.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3218. p25.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3219. p25.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3220. p25.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3221. p25.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3222. p25.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3223. p25.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3224. b25 = Instance.new("SpecialMesh", p25)
  3225. b25.MeshType = Enum.MeshType.Wedge
  3226. b25.Name = "Mesh"
  3227. b25.Scale = Vector3.new(0.602178395, 0.602178395, 0.301089197)
  3228. p26 = Instance.new("WedgePart", m6)
  3229. p26.BrickColor = BrickColor.new("Sunrise")
  3230. p26.Material = Enum.Material.SmoothPlastic
  3231. p26.Name = "Wedge"
  3232. p26.CFrame = CFrame.new(-1.06957662, 4.68963194, 4.03967237, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  3233. p26.CanCollide = false
  3234. p26.Locked = true
  3235. p26.FormFactor = Enum.FormFactor.Custom
  3236. p26.Size = Vector3.new(0.232357651, 0.232357651, 0.279841363)
  3237. p26.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3238. p26.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3239. p26.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3240. p26.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3241. p26.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3242. p26.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3243. b26 = Instance.new("SpecialMesh", p26)
  3244. b26.MeshType = Enum.MeshType.Wedge
  3245. b26.Name = "Mesh"
  3246. b26.Scale = Vector3.new(0.602178097, 0.602178097, 1)
  3247. p27 = Instance.new("Part", m6)
  3248. p27.BrickColor = BrickColor.new("Sunrise")
  3249. p27.Material = Enum.Material.SmoothPlastic
  3250. p27.CFrame = CFrame.new(-1.55929208, 2.73073244, 4.03967237, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  3251. p27.CanCollide = false
  3252. p27.Locked = true
  3253. p27.FormFactor = Enum.FormFactor.Custom
  3254. p27.Size = Vector3.new(0.232357651, 0.419762105, 0.232357636)
  3255. p27.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3256. p27.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3257. p27.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3258. p27.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3259. p27.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3260. p27.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3261. b27 = Instance.new("BlockMesh", p27)
  3262. b27.Name = "Mesh"
  3263. b27.Scale = Vector3.new(0.602178097, 1, 0.602178097)
  3264. p28 = Instance.new("WedgePart", m6)
  3265. p28.BrickColor = BrickColor.new("Sunrise")
  3266. p28.Material = Enum.Material.SmoothPlastic
  3267. p28.Name = "Wedge"
  3268. p28.CFrame = CFrame.new(0.959275484, 3.71018291, 4.03967237, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  3269. p28.CanCollide = false
  3270. p28.Locked = true
  3271. p28.FormFactor = Enum.FormFactor.Custom
  3272. p28.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3273. p28.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3274. p28.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3275. p28.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3276. p28.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3277. p28.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3278. p28.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3279. b28 = Instance.new("SpecialMesh", p28)
  3280. b28.MeshType = Enum.MeshType.Wedge
  3281. b28.Name = "Mesh"
  3282. b28.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  3283. p29 = Instance.new("Part", m6)
  3284. p29.BrickColor = BrickColor.new("Sunrise")
  3285. p29.Material = Enum.Material.SmoothPlastic
  3286. p29.CFrame = CFrame.new(-1.55929208, 3.15049648, 4.03967237, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  3287. p29.CanCollide = false
  3288. p29.Locked = true
  3289. p29.FormFactor = Enum.FormFactor.Custom
  3290. p29.Size = Vector3.new(0.232357651, 0.419762105, 0.232357636)
  3291. p29.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3292. p29.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3293. p29.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3294. p29.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3295. p29.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3296. p29.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3297. b29 = Instance.new("BlockMesh", p29)
  3298. b29.Name = "Mesh"
  3299. b29.Scale = Vector3.new(0.602178097, 1, 0.602178097)
  3300. p30 = Instance.new("WedgePart", m6)
  3301. p30.BrickColor = BrickColor.new("Sunrise")
  3302. p30.Material = Enum.Material.SmoothPlastic
  3303. p30.Name = "Wedge"
  3304. p30.CFrame = CFrame.new(1.09919691, 3.15049744, 4.03967237, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  3305. p30.CanCollide = false
  3306. p30.Locked = true
  3307. p30.FormFactor = Enum.FormFactor.Custom
  3308. p30.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3309. p30.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3310. p30.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3311. p30.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3312. p30.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3313. p30.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3314. p30.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3315. b30 = Instance.new("SpecialMesh", p30)
  3316. b30.MeshType = Enum.MeshType.Wedge
  3317. b30.Name = "Mesh"
  3318. b30.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  3319. p31 = Instance.new("WedgePart", m6)
  3320. p31.BrickColor = BrickColor.new("Sunrise")
  3321. p31.Material = Enum.Material.SmoothPlastic
  3322. p31.Name = "Wedge"
  3323. p31.CFrame = CFrame.new(0.119759142, 2.31096911, 4.03967237, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  3324. p31.CanCollide = false
  3325. p31.Locked = true
  3326. p31.FormFactor = Enum.FormFactor.Custom
  3327. p31.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3328. p31.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3329. p31.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3330. p31.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3331. p31.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3332. p31.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3333. p31.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3334. b31 = Instance.new("SpecialMesh", p31)
  3335. b31.MeshType = Enum.MeshType.Wedge
  3336. b31.Name = "Mesh"
  3337. b31.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  3338. p32 = Instance.new("Part", m6)
  3339. p32.BrickColor = BrickColor.new("Sunrise")
  3340. p32.Material = Enum.Material.SmoothPlastic
  3341. p32.Name = "BottomRightFlap"
  3342. p32.CFrame = CFrame.new(0.539517641, 2.31097221, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3343. p32.CanCollide = false
  3344. p32.Locked = true
  3345. p32.FormFactor = Enum.FormFactor.Custom
  3346. p32.Size = Vector3.new(0.419762105, 0.232357651, 0.232357636)
  3347. p32.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3348. p32.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3349. p32.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3350. p32.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3351. p32.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3352. p32.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3353. b32 = Instance.new("BlockMesh", p32)
  3354. b32.Name = "Mesh"
  3355. b32.Scale = Vector3.new(1, 0.602178097, 0.602178097)
  3356. p33 = Instance.new("WedgePart", m6)
  3357. p33.BrickColor = BrickColor.new("Sunrise")
  3358. p33.Material = Enum.Material.SmoothPlastic
  3359. p33.Name = "Wedge"
  3360. p33.CFrame = CFrame.new(1.02923799, 3.43033957, 4.03967237, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  3361. p33.CanCollide = false
  3362. p33.Locked = true
  3363. p33.FormFactor = Enum.FormFactor.Custom
  3364. p33.Size = Vector3.new(0.232357651, 0.232357651, 0.279841363)
  3365. p33.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3366. p33.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3367. p33.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3368. p33.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3369. p33.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3370. p33.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3371. b33 = Instance.new("SpecialMesh", p33)
  3372. b33.MeshType = Enum.MeshType.Wedge
  3373. b33.Name = "Mesh"
  3374. b33.Scale = Vector3.new(0.602178097, 0.602178097, 1)
  3375. p34 = Instance.new("WedgePart", m6)
  3376. p34.BrickColor = BrickColor.new("Sunrise")
  3377. p34.Material = Enum.Material.SmoothPlastic
  3378. p34.Name = "Wedge"
  3379. p34.CFrame = CFrame.new(-1.55929208, 2.45089054, 4.03967237, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  3380. p34.CanCollide = false
  3381. p34.Locked = true
  3382. p34.FormFactor = Enum.FormFactor.Custom
  3383. p34.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3384. p34.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3385. p34.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3386. p34.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3387. p34.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3388. p34.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3389. p34.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3390. b34 = Instance.new("SpecialMesh", p34)
  3391. b34.MeshType = Enum.MeshType.Wedge
  3392. b34.Name = "Mesh"
  3393. b34.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  3394. p35 = Instance.new("Part", m6)
  3395. p35.BrickColor = BrickColor.new("Sunrise")
  3396. p35.Material = Enum.Material.SmoothPlastic
  3397. p35.CFrame = CFrame.new(0.959275484, 3.85010386, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3398. p35.CanCollide = false
  3399. p35.Locked = true
  3400. p35.FormFactor = Enum.FormFactor.Custom
  3401. p35.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3402. p35.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3403. p35.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3404. p35.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3405. p35.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3406. p35.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3407. p35.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3408. b35 = Instance.new("BlockMesh", p35)
  3409. b35.Name = "Mesh"
  3410. b35.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  3411. p36 = Instance.new("WedgePart", m6)
  3412. p36.BrickColor = BrickColor.new("Sunrise")
  3413. p36.Material = Enum.Material.SmoothPlastic
  3414. p36.Name = "Wedge"
  3415. p36.CFrame = CFrame.new(-1.62925327, 3.43033957, 4.03967237, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  3416. p36.CanCollide = false
  3417. p36.Locked = true
  3418. p36.FormFactor = Enum.FormFactor.Custom
  3419. p36.Size = Vector3.new(0.232357651, 0.232357651, 0.279841363)
  3420. p36.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3421. p36.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3422. p36.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3423. p36.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3424. p36.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3425. p36.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3426. b36 = Instance.new("SpecialMesh", p36)
  3427. b36.MeshType = Enum.MeshType.Wedge
  3428. b36.Name = "Mesh"
  3429. b36.Scale = Vector3.new(0.602178097, 0.602178097, 1)
  3430. p37 = Instance.new("Part", m6)
  3431. p37.BrickColor = BrickColor.new("Sunrise")
  3432. p37.Material = Enum.Material.SmoothPlastic
  3433. p37.Name = "CapeLevel3"
  3434. p37.CFrame = CFrame.new(-0.300008506, 3.22045994, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3435. p37.CanCollide = false
  3436. p37.Locked = true
  3437. p37.FormFactor = Enum.FormFactor.Custom
  3438. p37.Size = Vector3.new(2.3786521, 0.559682727, 0.232357636)
  3439. p37.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3440. p37.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3441. p37.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3442. p37.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3443. p37.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3444. p37.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3445. b37 = Instance.new("BlockMesh", p37)
  3446. b37.Name = "Mesh"
  3447. b37.Scale = Vector3.new(1, 1, 0.602178097)
  3448. p38 = Instance.new("WedgePart", m6)
  3449. p38.BrickColor = BrickColor.new("Hot pink")
  3450. p38.Material = Enum.Material.SmoothPlastic
  3451. p38.Name = "Wedge"
  3452. p38.CFrame = CFrame.new(-1.97905517, 2.73073244, 4.03967237, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  3453. p38.CanCollide = false
  3454. p38.Locked = true
  3455. p38.FormFactor = Enum.FormFactor.Custom
  3456. p38.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3457. p38.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3458. p38.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3459. p38.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3460. p38.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3461. p38.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3462. p38.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3463. b38 = Instance.new("SpecialMesh", p38)
  3464. b38.MeshType = Enum.MeshType.Wedge
  3465. b38.Name = "Mesh"
  3466. b38.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  3467. p39 = Instance.new("WedgePart", m6)
  3468. p39.BrickColor = BrickColor.new("Hot pink")
  3469. p39.Material = Enum.Material.SmoothPlastic
  3470. p39.Name = "Wedge"
  3471. p39.CFrame = CFrame.new(-1.83913493, 3.29041815, 4.03967237, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  3472. p39.CanCollide = false
  3473. p39.Locked = true
  3474. p39.FormFactor = Enum.FormFactor.Custom
  3475. p39.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3476. p39.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3477. p39.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3478. p39.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3479. p39.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3480. p39.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3481. p39.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3482. b39 = Instance.new("SpecialMesh", p39)
  3483. b39.MeshType = Enum.MeshType.Wedge
  3484. b39.Name = "Mesh"
  3485. b39.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  3486. p40 = Instance.new("WedgePart", m6)
  3487. p40.BrickColor = BrickColor.new("Sunrise")
  3488. p40.Material = Enum.Material.SmoothPlastic
  3489. p40.Name = "Wedge"
  3490. p40.CFrame = CFrame.new(-1.48933268, 3.99002528, 4.03967237, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  3491. p40.CanCollide = false
  3492. p40.Locked = true
  3493. p40.FormFactor = Enum.FormFactor.Custom
  3494. p40.Size = Vector3.new(0.232357651, 0.232357651, 0.279841363)
  3495. p40.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3496. p40.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3497. p40.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3498. p40.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3499. p40.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3500. p40.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3501. b40 = Instance.new("SpecialMesh", p40)
  3502. b40.MeshType = Enum.MeshType.Wedge
  3503. b40.Name = "Mesh"
  3504. b40.Scale = Vector3.new(0.602178097, 0.602178097, 1)
  3505. p41 = Instance.new("WedgePart", m6)
  3506. p41.BrickColor = BrickColor.new("Sunrise")
  3507. p41.Material = Enum.Material.SmoothPlastic
  3508. p41.Name = "Wedge"
  3509. p41.CFrame = CFrame.new(-1.76917338, 2.59081101, 4.03967237, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  3510. p41.CanCollide = false
  3511. p41.Locked = true
  3512. p41.FormFactor = Enum.FormFactor.Custom
  3513. p41.Size = Vector3.new(0.232357651, 0.232357651, 0.279841363)
  3514. p41.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3515. p41.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3516. p41.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3517. p41.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3518. p41.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3519. p41.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3520. b41 = Instance.new("SpecialMesh", p41)
  3521. b41.MeshType = Enum.MeshType.Wedge
  3522. b41.Name = "Mesh"
  3523. b41.Scale = Vector3.new(0.602178097, 0.602178097, 1)
  3524. p42 = Instance.new("WedgePart", m6)
  3525. p42.BrickColor = BrickColor.new("Sunrise")
  3526. p42.Material = Enum.Material.SmoothPlastic
  3527. p42.Name = "Wedge"
  3528. p42.CFrame = CFrame.new(0.679442644, 2.10108781, 4.03967237, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  3529. p42.CanCollide = false
  3530. p42.Locked = true
  3531. p42.FormFactor = Enum.FormFactor.Custom
  3532. p42.Size = Vector3.new(0.232357651, 0.279841363, 0.232357636)
  3533. p42.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3534. p42.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3535. p42.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3536. p42.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3537. p42.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3538. p42.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3539. b42 = Instance.new("SpecialMesh", p42)
  3540. b42.MeshType = Enum.MeshType.Wedge
  3541. b42.Name = "Mesh"
  3542. b42.Scale = Vector3.new(0.602178097, 1, 0.602178097)
  3543. p43 = Instance.new("WedgePart", m6)
  3544. p43.BrickColor = BrickColor.new("Sunrise")
  3545. p43.Material = Enum.Material.SmoothPlastic
  3546. p43.Name = "Wedge"
  3547. p43.CFrame = CFrame.new(-1.76917338, 2.87065363, 4.03967237, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  3548. p43.CanCollide = false
  3549. p43.Locked = true
  3550. p43.FormFactor = Enum.FormFactor.Custom
  3551. p43.Size = Vector3.new(0.232357651, 0.232357651, 0.279841363)
  3552. p43.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3553. p43.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3554. p43.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3555. p43.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3556. p43.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3557. p43.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3558. b43 = Instance.new("SpecialMesh", p43)
  3559. b43.MeshType = Enum.MeshType.Wedge
  3560. b43.Name = "Mesh"
  3561. b43.Scale = Vector3.new(0.602178097, 0.602178097, 1)
  3562. p44 = Instance.new("WedgePart", m6)
  3563. p44.BrickColor = BrickColor.new("Sunrise")
  3564. p44.Material = Enum.Material.SmoothPlastic
  3565. p44.Name = "Wedge"
  3566. p44.CFrame = CFrame.new(-1.41937125, 4.26986837, 4.03967237, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  3567. p44.CanCollide = false
  3568. p44.Locked = true
  3569. p44.FormFactor = Enum.FormFactor.Custom
  3570. p44.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3571. p44.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3572. p44.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3573. p44.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3574. p44.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3575. p44.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3576. p44.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3577. b44 = Instance.new("SpecialMesh", p44)
  3578. b44.MeshType = Enum.MeshType.Wedge
  3579. b44.Name = "Mesh"
  3580. b44.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  3581. p45 = Instance.new("WedgePart", m6)
  3582. p45.BrickColor = BrickColor.new("Sunrise")
  3583. p45.Material = Enum.Material.SmoothPlastic
  3584. p45.Name = "Wedge"
  3585. p45.CFrame = CFrame.new(-0.999610066, 2.10108781, 4.03967237, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  3586. p45.CanCollide = false
  3587. p45.Locked = true
  3588. p45.FormFactor = Enum.FormFactor.Custom
  3589. p45.Size = Vector3.new(0.232357651, 0.279841363, 0.232357636)
  3590. p45.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3591. p45.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3592. p45.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3593. p45.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3594. p45.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3595. p45.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3596. b45 = Instance.new("SpecialMesh", p45)
  3597. b45.MeshType = Enum.MeshType.Wedge
  3598. b45.Name = "Mesh"
  3599. b45.Scale = Vector3.new(0.602178097, 1, 0.602178097)
  3600. p46 = Instance.new("WedgePart", m6)
  3601. p46.BrickColor = BrickColor.new("Sunrise")
  3602. p46.Material = Enum.Material.SmoothPlastic
  3603. p46.Name = "Wedge"
  3604. p46.CFrame = CFrame.new(0.46955356, 4.68963194, 4.03967237, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  3605. p46.CanCollide = false
  3606. p46.Locked = true
  3607. p46.FormFactor = Enum.FormFactor.Custom
  3608. p46.Size = Vector3.new(0.232357651, 0.232357651, 0.279841363)
  3609. p46.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3610. p46.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3611. p46.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3612. p46.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3613. p46.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3614. p46.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3615. b46 = Instance.new("SpecialMesh", p46)
  3616. b46.MeshType = Enum.MeshType.Wedge
  3617. b46.Name = "Mesh"
  3618. b46.Scale = Vector3.new(0.602178097, 0.602178097, 1)
  3619. p47 = Instance.new("Part", m6)
  3620. p47.BrickColor = BrickColor.new("Sunrise")
  3621. p47.Material = Enum.Material.SmoothPlastic
  3622. p47.CFrame = CFrame.new(0.819356859, 4.40979004, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3623. p47.CanCollide = false
  3624. p47.Locked = true
  3625. p47.FormFactor = Enum.FormFactor.Custom
  3626. p47.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3627. p47.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3628. p47.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3629. p47.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3630. p47.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3631. p47.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3632. p47.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3633. b47 = Instance.new("BlockMesh", p47)
  3634. b47.Name = "Mesh"
  3635. b47.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  3636. p48 = Instance.new("Part", m6)
  3637. p48.BrickColor = BrickColor.new("Sunrise")
  3638. p48.Material = Enum.Material.SmoothPlastic
  3639. p48.Name = "CapeLevel4"
  3640. p48.CFrame = CFrame.new(-0.300008506, 2.66077495, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3641. p48.CanCollide = false
  3642. p48.Locked = true
  3643. p48.FormFactor = Enum.FormFactor.Custom
  3644. p48.Size = Vector3.new(2.3786521, 0.559682727, 0.232357636)
  3645. p48.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3646. p48.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3647. p48.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3648. p48.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3649. p48.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3650. p48.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3651. b48 = Instance.new("BlockMesh", p48)
  3652. b48.Name = "Mesh"
  3653. b48.Scale = Vector3.new(1, 1, 0.602178097)
  3654. p49 = Instance.new("WedgePart", m6)
  3655. p49.BrickColor = BrickColor.new("Sunrise")
  3656. p49.Material = Enum.Material.SmoothPlastic
  3657. p49.Name = "Wedge"
  3658. p49.CFrame = CFrame.new(0.819356859, 4.26986837, 4.03967237, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  3659. p49.CanCollide = false
  3660. p49.Locked = true
  3661. p49.FormFactor = Enum.FormFactor.Custom
  3662. p49.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3663. p49.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3664. p49.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3665. p49.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3666. p49.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3667. p49.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3668. p49.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3669. b49 = Instance.new("SpecialMesh", p49)
  3670. b49.MeshType = Enum.MeshType.Wedge
  3671. b49.Name = "Mesh"
  3672. b49.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  3673. p50 = Instance.new("Part", m6)
  3674. p50.BrickColor = BrickColor.new("Sunrise")
  3675. p50.Material = Enum.Material.SmoothPlastic
  3676. p50.Name = "CapeLevel1SubPart"
  3677. p50.CFrame = CFrame.new(-0.300008506, 4.33982658, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3678. p50.CanCollide = false
  3679. p50.Locked = true
  3680. p50.FormFactor = Enum.FormFactor.Custom
  3681. p50.Size = Vector3.new(1.81896901, 0.559682727, 0.232357636)
  3682. p50.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3683. p50.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3684. p50.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3685. p50.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3686. p50.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3687. p50.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3688. b50 = Instance.new("BlockMesh", p50)
  3689. b50.Name = "Mesh"
  3690. b50.Scale = Vector3.new(1, 1, 0.602178097)
  3691. p51 = Instance.new("Part", m6)
  3692. p51.BrickColor = BrickColor.new("Sunrise")
  3693. p51.Material = Enum.Material.SmoothPlastic
  3694. p51.CFrame = CFrame.new(-1.55929291, 3.85010386, 4.03967237, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  3695. p51.CanCollide = false
  3696. p51.Locked = true
  3697. p51.FormFactor = Enum.FormFactor.Custom
  3698. p51.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3699. p51.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3700. p51.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3701. p51.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3702. p51.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3703. p51.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3704. p51.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3705. b51 = Instance.new("BlockMesh", p51)
  3706. b51.Name = "Mesh"
  3707. b51.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  3708. p52 = Instance.new("Part", m6)
  3709. p52.BrickColor = BrickColor.new("Sunrise")
  3710. p52.Material = Enum.Material.SmoothPlastic
  3711. p52.CFrame = CFrame.new(-1.41937149, 3.71018171, 4.03967237, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  3712. p52.CanCollide = false
  3713. p52.Locked = true
  3714. p52.FormFactor = Enum.FormFactor.Custom
  3715. p52.Size = Vector3.new(0.232357651, 0.419762105, 0.232357636)
  3716. p52.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3717. p52.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3718. p52.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3719. p52.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3720. p52.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3721. p52.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3722. b52 = Instance.new("BlockMesh", p52)
  3723. b52.Name = "Mesh"
  3724. b52.Scale = Vector3.new(0.602178097, 1, 0.602178097)
  3725. p53 = Instance.new("WedgePart", m6)
  3726. p53.BrickColor = BrickColor.new("Sunrise")
  3727. p53.Material = Enum.Material.SmoothPlastic
  3728. p53.Name = "Wedge"
  3729. p53.CFrame = CFrame.new(-0.0201580226, 2.03113341, 4.03967237, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  3730. p53.CanCollide = false
  3731. p53.Locked = true
  3732. p53.FormFactor = Enum.FormFactor.Custom
  3733. p53.Size = Vector3.new(0.232357651, 0.419762105, 0.232357636)
  3734. p53.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3735. p53.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3736. p53.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3737. p53.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3738. p53.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3739. p53.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3740. b53 = Instance.new("SpecialMesh", p53)
  3741. b53.MeshType = Enum.MeshType.Wedge
  3742. b53.Name = "Mesh"
  3743. b53.Scale = Vector3.new(0.602178097, 1, 0.602178097)
  3744. p54 = Instance.new("Part", m6)
  3745. p54.BrickColor = BrickColor.new("Sunrise")
  3746. p54.Material = Enum.Material.SmoothPlastic
  3747. p54.CFrame = CFrame.new(-0.300009966, 1.68132639, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3748. p54.CanCollide = false
  3749. p54.Locked = true
  3750. p54.FormFactor = Enum.FormFactor.Custom
  3751. p54.Size = Vector3.new(0.232357651, 0.279841423, 0.232357636)
  3752. p54.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3753. p54.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3754. p54.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3755. p54.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3756. p54.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3757. p54.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3758. b54 = Instance.new("BlockMesh", p54)
  3759. b54.Name = "Mesh"
  3760. b54.Scale = Vector3.new(0.602178395, 1, 0.602178097)
  3761. p55 = Instance.new("WedgePart", m6)
  3762. p55.BrickColor = BrickColor.new("Sunrise")
  3763. p55.Material = Enum.Material.SmoothPlastic
  3764. p55.Name = "Wedge"
  3765. p55.CFrame = CFrame.new(0.39960131, 2.10108781, 4.03967237, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  3766. p55.CanCollide = false
  3767. p55.Locked = true
  3768. p55.FormFactor = Enum.FormFactor.Custom
  3769. p55.Size = Vector3.new(0.232357651, 0.279841363, 0.232357636)
  3770. p55.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3771. p55.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3772. p55.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3773. p55.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3774. p55.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3775. p55.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3776. b55 = Instance.new("SpecialMesh", p55)
  3777. b55.MeshType = Enum.MeshType.Wedge
  3778. b55.Name = "Mesh"
  3779. b55.Scale = Vector3.new(0.602178097, 1, 0.602178097)
  3780. p56 = Instance.new("WedgePart", m6)
  3781. p56.BrickColor = BrickColor.new("Hot pink")
  3782. p56.Material = Enum.Material.SmoothPlastic
  3783. p56.Name = "Wedge"
  3784. p56.CFrame = CFrame.new(1.23911822, 3.29041815, 4.03967237, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  3785. p56.CanCollide = false
  3786. p56.Locked = true
  3787. p56.FormFactor = Enum.FormFactor.Custom
  3788. p56.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3789. p56.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3790. p56.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3791. p56.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3792. p56.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3793. p56.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3794. p56.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3795. b56 = Instance.new("SpecialMesh", p56)
  3796. b56.MeshType = Enum.MeshType.Wedge
  3797. b56.Name = "Mesh"
  3798. b56.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  3799. p57 = Instance.new("WedgePart", m6)
  3800. p57.BrickColor = BrickColor.new("Sunrise")
  3801. p57.Material = Enum.Material.SmoothPlastic
  3802. p57.Name = "Wedge"
  3803. p57.CFrame = CFrame.new(0.749394774, 4.54971123, 4.03967237, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  3804. p57.CanCollide = false
  3805. p57.Locked = true
  3806. p57.FormFactor = Enum.FormFactor.Custom
  3807. p57.Size = Vector3.new(0.232357651, 0.232357651, 0.279841363)
  3808. p57.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3809. p57.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3810. p57.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3811. p57.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3812. p57.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3813. p57.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3814. b57 = Instance.new("SpecialMesh", p57)
  3815. b57.MeshType = Enum.MeshType.Wedge
  3816. b57.Name = "Mesh"
  3817. b57.Scale = Vector3.new(0.602178097, 0.602178097, 1)
  3818. p58 = Instance.new("Part", m6)
  3819. p58.BrickColor = BrickColor.new("Sunrise")
  3820. p58.Material = Enum.Material.SmoothPlastic
  3821. p58.CFrame = CFrame.new(0.819354892, 3.71018171, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3822. p58.CanCollide = false
  3823. p58.Locked = true
  3824. p58.FormFactor = Enum.FormFactor.Custom
  3825. p58.Size = Vector3.new(0.232357651, 0.419762105, 0.232357636)
  3826. p58.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3827. p58.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3828. p58.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3829. p58.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3830. p58.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3831. p58.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3832. b58 = Instance.new("BlockMesh", p58)
  3833. b58.Name = "Mesh"
  3834. b58.Scale = Vector3.new(0.602178097, 1, 0.602178097)
  3835. p59 = Instance.new("WedgePart", m6)
  3836. p59.BrickColor = BrickColor.new("Sunrise")
  3837. p59.Material = Enum.Material.SmoothPlastic
  3838. p59.Name = "Wedge"
  3839. p59.CFrame = CFrame.new(0.259678036, 2.31096983, 4.03967237, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  3840. p59.CanCollide = false
  3841. p59.Locked = true
  3842. p59.FormFactor = Enum.FormFactor.Custom
  3843. p59.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3844. p59.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3845. p59.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3846. p59.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3847. p59.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3848. p59.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3849. p59.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3850. b59 = Instance.new("SpecialMesh", p59)
  3851. b59.MeshType = Enum.MeshType.Wedge
  3852. b59.Name = "Mesh"
  3853. b59.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  3854. p60 = Instance.new("Part", m6)
  3855. p60.BrickColor = BrickColor.new("Sunrise")
  3856. p60.Material = Enum.Material.SmoothPlastic
  3857. p60.Name = "NeckPart"
  3858. p60.CFrame = CFrame.new(-0.300008506, 4.82955122, 3.8997519, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3859. p60.CanCollide = false
  3860. p60.Locked = true
  3861. p60.FormFactor = Enum.FormFactor.Custom
  3862. p60.Size = Vector3.new(1.25928628, 0.232357651, 0.419762105)
  3863. p60.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3864. p60.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3865. p60.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3866. p60.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3867. p60.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3868. p60.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3869. b60 = Instance.new("BlockMesh", p60)
  3870. b60.Name = "Mesh"
  3871. b60.Scale = Vector3.new(1, 0.602178097, 1)
  3872. p61 = Instance.new("Part", m6)
  3873. p61.BrickColor = BrickColor.new("Sunrise")
  3874. p61.Material = Enum.Material.SmoothPlastic
  3875. p61.CFrame = CFrame.new(0.959281087, 2.73073363, 4.03967333, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3876. p61.CanCollide = false
  3877. p61.Locked = true
  3878. p61.FormFactor = Enum.FormFactor.Custom
  3879. p61.Size = Vector3.new(0.232357651, 0.419762105, 0.232357636)
  3880. p61.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3881. p61.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3882. p61.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3883. p61.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3884. p61.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3885. p61.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3886. b61 = Instance.new("BlockMesh", p61)
  3887. b61.Name = "Mesh"
  3888. b61.Scale = Vector3.new(0.602178097, 1, 0.602178097)
  3889. p62 = Instance.new("WedgePart", m6)
  3890. p62.BrickColor = BrickColor.new("Sunrise")
  3891. p62.Material = Enum.Material.SmoothPlastic
  3892. p62.Name = "Wedge"
  3893. p62.CFrame = CFrame.new(1.16916382, 2.87065434, 4.03967333, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  3894. p62.CanCollide = false
  3895. p62.Locked = true
  3896. p62.FormFactor = Enum.FormFactor.Custom
  3897. p62.Size = Vector3.new(0.232357651, 0.232357651, 0.279841363)
  3898. p62.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3899. p62.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3900. p62.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3901. p62.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3902. p62.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3903. p62.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3904. b62 = Instance.new("SpecialMesh", p62)
  3905. b62.MeshType = Enum.MeshType.Wedge
  3906. b62.Name = "Mesh"
  3907. b62.Scale = Vector3.new(0.602178097, 0.602178097, 1)
  3908. p63 = Instance.new("WedgePart", m6)
  3909. p63.BrickColor = BrickColor.new("Hot pink")
  3910. p63.Material = Enum.Material.SmoothPlastic
  3911. p63.Name = "Wedge"
  3912. p63.CFrame = CFrame.new(1.37904489, 2.73073268, 4.03967333, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  3913. p63.CanCollide = false
  3914. p63.Locked = true
  3915. p63.FormFactor = Enum.FormFactor.Custom
  3916. p63.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3917. p63.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3918. p63.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3919. p63.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3920. p63.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3921. p63.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3922. p63.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3923. b63 = Instance.new("SpecialMesh", p63)
  3924. b63.MeshType = Enum.MeshType.Wedge
  3925. b63.Name = "Mesh"
  3926. b63.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  3927. p64 = Instance.new("WedgePart", m6)
  3928. p64.BrickColor = BrickColor.new("Sunrise")
  3929. p64.Material = Enum.Material.SmoothPlastic
  3930. p64.Name = "Wedge"
  3931. p64.CFrame = CFrame.new(-0.439923674, 1.68132377, 4.03967237, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  3932. p64.CanCollide = false
  3933. p64.Locked = true
  3934. p64.FormFactor = Enum.FormFactor.Custom
  3935. p64.Size = Vector3.new(0.232357651, 0.279841423, 0.232357636)
  3936. p64.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3937. p64.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3938. p64.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3939. p64.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3940. p64.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3941. p64.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3942. b64 = Instance.new("SpecialMesh", p64)
  3943. b64.MeshType = Enum.MeshType.Wedge
  3944. b64.Name = "Mesh"
  3945. b64.Scale = Vector3.new(0.602178097, 1, 0.602178097)
  3946. p65 = Instance.new("WedgePart", m6)
  3947. p65.BrickColor = BrickColor.new("Sunrise")
  3948. p65.Material = Enum.Material.SmoothPlastic
  3949. p65.Name = "Wedge"
  3950. p65.CFrame = CFrame.new(-0.859687686, 2.31096983, 4.03967237, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  3951. p65.CanCollide = false
  3952. p65.Locked = true
  3953. p65.FormFactor = Enum.FormFactor.Custom
  3954. p65.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3955. p65.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3956. p65.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3957. p65.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3958. p65.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3959. p65.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3960. p65.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3961. b65 = Instance.new("SpecialMesh", p65)
  3962. b65.MeshType = Enum.MeshType.Wedge
  3963. b65.Name = "Mesh"
  3964. b65.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  3965. p66 = Instance.new("WedgePart", m6)
  3966. p66.BrickColor = BrickColor.new("Sunrise")
  3967. p66.Material = Enum.Material.SmoothPlastic
  3968. p66.Name = "Wedge"
  3969. p66.CFrame = CFrame.new(-1.55929291, 3.71018267, 4.03967237, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  3970. p66.CanCollide = false
  3971. p66.Locked = true
  3972. p66.FormFactor = Enum.FormFactor.Custom
  3973. p66.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3974. p66.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3975. p66.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3976. p66.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3977. p66.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3978. p66.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3979. p66.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3980. b66 = Instance.new("SpecialMesh", p66)
  3981. b66.MeshType = Enum.MeshType.Wedge
  3982. b66.Name = "Mesh"
  3983. b66.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  3984. p67 = Instance.new("WedgePart", m6)
  3985. p67.BrickColor = BrickColor.new("Sunrise")
  3986. p67.Material = Enum.Material.SmoothPlastic
  3987. p67.Name = "Wedge"
  3988. p67.CFrame = CFrame.new(-0.719767809, 2.31096911, 4.03967237, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  3989. p67.CanCollide = false
  3990. p67.Locked = true
  3991. p67.FormFactor = Enum.FormFactor.Custom
  3992. p67.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3993. p67.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3994. p67.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3995. p67.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3996. p67.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3997. p67.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3998. p67.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3999. b67 = Instance.new("SpecialMesh", p67)
  4000. b67.MeshType = Enum.MeshType.Wedge
  4001. b67.Name = "Mesh"
  4002. b67.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  4003. p68 = Instance.new("WedgePart", m6)
  4004. p68.BrickColor = BrickColor.new("Hot pink")
  4005. p68.Name = "Wedge"
  4006. p68.CFrame = CFrame.new(-1.17450571, 1.89121199, 4.03967237, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  4007. p68.CanCollide = false
  4008. p68.Locked = true
  4009. p68.FormFactor = Enum.FormFactor.Custom
  4010. p68.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  4011. p68.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4012. p68.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4013. p68.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4014. p68.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4015. p68.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4016. p68.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4017. b68 = Instance.new("SpecialMesh", p68)
  4018. b68.MeshType = Enum.MeshType.Wedge
  4019. b68.Name = "Mesh"
  4020. b68.Scale = Vector3.new(0.602178395, 0.602178395, 0.301089197)
  4021. p69 = Instance.new("WedgePart", m6)
  4022. p69.BrickColor = BrickColor.new("Hot pink")
  4023. p69.Name = "Wedge"
  4024. p69.CFrame = CFrame.new(-1.10454547, 1.89121199, 4.03967237, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  4025. p69.CanCollide = false
  4026. p69.Locked = true
  4027. p69.FormFactor = Enum.FormFactor.Custom
  4028. p69.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  4029. p69.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4030. p69.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4031. p69.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4032. p69.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4033. p69.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4034. p69.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4035. b69 = Instance.new("SpecialMesh", p69)
  4036. b69.MeshType = Enum.MeshType.Wedge
  4037. b69.Name = "Mesh"
  4038. b69.Scale = Vector3.new(0.602178395, 0.602178395, 0.301089197)
  4039. p70 = Instance.new("WedgePart", m6)
  4040. p70.BrickColor = BrickColor.new("Sunrise")
  4041. p70.Material = Enum.Material.SmoothPlastic
  4042. p70.Name = "Wedge"
  4043. p70.CFrame = CFrame.new(0.889316559, 3.99002528, 4.03967237, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  4044. p70.CanCollide = false
  4045. p70.Locked = true
  4046. p70.FormFactor = Enum.FormFactor.Custom
  4047. p70.Size = Vector3.new(0.232357651, 0.232357651, 0.279841363)
  4048. p70.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4049. p70.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4050. p70.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4051. p70.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4052. p70.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4053. p70.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4054. b70 = Instance.new("SpecialMesh", p70)
  4055. b70.MeshType = Enum.MeshType.Wedge
  4056. b70.Name = "Mesh"
  4057. b70.Scale = Vector3.new(0.602178097, 0.602178097, 1)
  4058. p71 = Instance.new("WedgePart", m6)
  4059. p71.BrickColor = BrickColor.new("Hot pink")
  4060. p71.Name = "Wedge"
  4061. p71.CFrame = CFrame.new(-0.334977895, 1.47144794, 4.03967237, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  4062. p71.CanCollide = false
  4063. p71.Locked = true
  4064. p71.FormFactor = Enum.FormFactor.Custom
  4065. p71.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  4066. p71.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4067. p71.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4068. p71.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4069. p71.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4070. p71.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4071. p71.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4072. b71 = Instance.new("SpecialMesh", p71)
  4073. b71.MeshType = Enum.MeshType.Wedge
  4074. b71.Name = "Mesh"
  4075. b71.Scale = Vector3.new(0.602178395, 0.602178395, 0.301089197)
  4076. p72 = Instance.new("WedgePart", m6)
  4077. p72.BrickColor = BrickColor.new("Sunrise")
  4078. p72.Material = Enum.Material.SmoothPlastic
  4079. p72.Name = "Wedge"
  4080. p72.CFrame = CFrame.new(-0.579845786, 2.03112626, 4.03967237, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  4081. p72.CanCollide = false
  4082. p72.Locked = true
  4083. p72.FormFactor = Enum.FormFactor.Custom
  4084. p72.Size = Vector3.new(0.232357651, 0.419762105, 0.232357636)
  4085. p72.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4086. p72.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4087. p72.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4088. p72.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4089. p72.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4090. p72.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4091. b72 = Instance.new("SpecialMesh", p72)
  4092. b72.MeshType = Enum.MeshType.Wedge
  4093. b72.Name = "Mesh"
  4094. b72.Scale = Vector3.new(0.602178097, 1, 0.602178097)
  4095. p73 = Instance.new("WedgePart", m6)
  4096. p73.BrickColor = BrickColor.new("Sunrise")
  4097. p73.Material = Enum.Material.SmoothPlastic
  4098. p73.Name = "Wedge"
  4099. p73.CFrame = CFrame.new(-1.41937125, 2.31096983, 4.03967237, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  4100. p73.CanCollide = false
  4101. p73.Locked = true
  4102. p73.FormFactor = Enum.FormFactor.Custom
  4103. p73.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  4104. p73.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4105. p73.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4106. p73.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4107. p73.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4108. p73.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4109. p73.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4110. b73 = Instance.new("SpecialMesh", p73)
  4111. b73.MeshType = Enum.MeshType.Wedge
  4112. b73.Name = "Mesh"
  4113. b73.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  4114. p74 = Instance.new("WedgePart", m6)
  4115. p74.BrickColor = BrickColor.new("Sunrise")
  4116. p74.Material = Enum.Material.SmoothPlastic
  4117. p74.Name = "Wedge"
  4118. p74.CFrame = CFrame.new(1.16916382, 2.59081125, 4.03967333, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  4119. p74.CanCollide = false
  4120. p74.Locked = true
  4121. p74.FormFactor = Enum.FormFactor.Custom
  4122. p74.Size = Vector3.new(0.232357651, 0.232357651, 0.279841363)
  4123. p74.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4124. p74.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4125. p74.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4126. p74.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4127. p74.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4128. p74.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4129. b74 = Instance.new("SpecialMesh", p74)
  4130. b74.MeshType = Enum.MeshType.Wedge
  4131. b74.Name = "Mesh"
  4132. b74.Scale = Vector3.new(0.602178097, 0.602178097, 1)
  4133. p75 = Instance.new("WedgePart", m6)
  4134. p75.BrickColor = BrickColor.new("Sunrise")
  4135. p75.Material = Enum.Material.SmoothPlastic
  4136. p75.Name = "Wedge"
  4137. p75.CFrame = CFrame.new(-0.160081401, 1.68132377, 4.03967237, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  4138. p75.CanCollide = false
  4139. p75.Locked = true
  4140. p75.FormFactor = Enum.FormFactor.Custom
  4141. p75.Size = Vector3.new(0.232357651, 0.279841363, 0.232357636)
  4142. p75.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4143. p75.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4144. p75.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4145. p75.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4146. p75.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4147. p75.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4148. b75 = Instance.new("SpecialMesh", p75)
  4149. b75.MeshType = Enum.MeshType.Wedge
  4150. b75.Name = "Mesh"
  4151. b75.Scale = Vector3.new(0.602178097, 1, 0.602178097)
  4152. p76 = Instance.new("WedgePart", m6)
  4153. p76.BrickColor = BrickColor.new("Sunrise")
  4154. p76.Material = Enum.Material.SmoothPlastic
  4155. p76.Name = "Wedge"
  4156. p76.CFrame = CFrame.new(0.819362521, 2.31096983, 4.03967237, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  4157. p76.CanCollide = false
  4158. p76.Locked = true
  4159. p76.FormFactor = Enum.FormFactor.Custom
  4160. p76.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  4161. p76.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4162. p76.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4163. p76.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4164. p76.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4165. p76.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4166. p76.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4167. b76 = Instance.new("SpecialMesh", p76)
  4168. b76.MeshType = Enum.MeshType.Wedge
  4169. b76.Name = "Mesh"
  4170. b76.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  4171. p77 = Instance.new("WedgePart", m6)
  4172. p77.BrickColor = BrickColor.new("Hot pink")
  4173. p77.Material = Enum.Material.SmoothPlastic
  4174. p77.Name = "Wedge"
  4175. p77.CFrame = CFrame.new(-1.55929291, 4.40979004, 4.03967237, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  4176. p77.CanCollide = false
  4177. p77.Locked = true
  4178. p77.FormFactor = Enum.FormFactor.Custom
  4179. p77.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  4180. p77.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4181. p77.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4182. p77.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4183. p77.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4184. p77.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4185. p77.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4186. b77 = Instance.new("SpecialMesh", p77)
  4187. b77.MeshType = Enum.MeshType.Wedge
  4188. b77.Name = "Mesh"
  4189. b77.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  4190. p78 = Instance.new("WedgePart", m6)
  4191. p78.BrickColor = BrickColor.new("Sunrise")
  4192. p78.Material = Enum.Material.SmoothPlastic
  4193. p78.Name = "Wedge"
  4194. p78.CFrame = CFrame.new(-1.34941173, 4.54971123, 4.03967237, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  4195. p78.CanCollide = false
  4196. p78.Locked = true
  4197. p78.FormFactor = Enum.FormFactor.Custom
  4198. p78.Size = Vector3.new(0.232357651, 0.232357651, 0.279841363)
  4199. p78.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4200. p78.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4201. p78.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4202. p78.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4203. p78.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4204. p78.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4205. b78 = Instance.new("SpecialMesh", p78)
  4206. b78.MeshType = Enum.MeshType.Wedge
  4207. b78.Name = "Mesh"
  4208. b78.Scale = Vector3.new(0.602178097, 0.602178097, 1)
  4209. p79 = Instance.new("WedgePart", m6)
  4210. p79.BrickColor = BrickColor.new("Hot pink")
  4211. p79.Material = Enum.Material.SmoothPlastic
  4212. p79.Name = "Wedge"
  4213. p79.CFrame = CFrame.new(-1.6992141, 3.85010386, 4.03967237, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  4214. p79.CanCollide = false
  4215. p79.Locked = true
  4216. p79.FormFactor = Enum.FormFactor.Custom
  4217. p79.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  4218. p79.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4219. p79.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4220. p79.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4221. p79.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4222. p79.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4223. p79.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4224. b79 = Instance.new("SpecialMesh", p79)
  4225. b79.MeshType = Enum.MeshType.Wedge
  4226. b79.Name = "Mesh"
  4227. b79.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  4228. p80 = Instance.new("WedgePart", m6)
  4229. p80.BrickColor = BrickColor.new("Sunrise")
  4230. p80.Material = Enum.Material.SmoothPlastic
  4231. p80.Name = "Wedge"
  4232. p80.CFrame = CFrame.new(-1.6992135, 3.1504972, 4.03967237, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  4233. p80.CanCollide = false
  4234. p80.Locked = true
  4235. p80.FormFactor = Enum.FormFactor.Custom
  4236. p80.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  4237. p80.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4238. p80.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4239. p80.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4240. p80.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4241. p80.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4242. p80.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4243. b80 = Instance.new("SpecialMesh", p80)
  4244. b80.MeshType = Enum.MeshType.Wedge
  4245. b80.Name = "Mesh"
  4246. b80.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  4247. w1 = Instance.new("Weld", p1)
  4248. w1.Name = "Joint"
  4249. w1.Part0 = p1
  4250. w1.C0 = CFrame.new(0, 0, 0.139921591, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  4251. w1.Part1 = p47
  4252. w1.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4253. w2 = Instance.new("Weld", p2)
  4254. w2.Name = "Joint"
  4255. w2.Part0 = p2
  4256. w2.C0 = CFrame.new(0, -2.7097974e-006, 0.139918938, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  4257. w2.Part1 = p11
  4258. w2.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4259. w3 = Instance.new("Weld", p3)
  4260. w3.Name = "Joint"
  4261. w3.Part0 = p3
  4262. w3.C0 = CFrame.new(0, 0.559684455, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4263. w3.Part1 = p50
  4264. w3.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4265. w4 = Instance.new("Weld", p4)
  4266. w4.Name = "Joint"
  4267. w4.Part0 = p4
  4268. w4.C0 = CFrame.new(-0.139921427, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4269. w4.Part1 = p5
  4270. w4.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4271. w5 = Instance.new("Weld", p5)
  4272. w5.Name = "Joint"
  4273. w5.Part0 = p5
  4274. w5.C0 = CFrame.new(-0.139920607, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4275. w5.Part1 = p27
  4276. w5.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4277. w6 = Instance.new("Weld", p6)
  4278. w6.Name = "Joint"
  4279. w6.Part0 = p6
  4280. w6.C0 = CFrame.new(6.98293934e-006, 0.13992101, 1.35489881e-006, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4281. w6.Part1 = p14
  4282. w6.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4283. w7 = Instance.new("Weld", p7)
  4284. w7.Name = "Joint"
  4285. w7.Part0 = p7
  4286. w7.C0 = CFrame.new(-0.139921531, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4287. w7.Part1 = p10
  4288. w7.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4289. w8 = Instance.new("Weld", p8)
  4290. w8.Name = "Joint"
  4291. w8.Part0 = p8
  4292. w8.C0 = CFrame.new(0, 0.209881723, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4293. w8.Part1 = p32
  4294. w8.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4295. w9 = Instance.new("Weld", p9)
  4296. w9.Name = "Joint"
  4297. w9.Part0 = p9
  4298. w9.C0 = CFrame.new(0, 0.279842764, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4299. w9.Part1 = p16
  4300. w9.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4301. w10 = Instance.new("Weld", p10)
  4302. w10.Name = "Joint"
  4303. w10.Part0 = p10
  4304. w10.C0 = CFrame.new(-0.139921531, 1.04222977e-006, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4305. w10.Part1 = p61
  4306. w10.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4307. w11 = Instance.new("Weld", p11)
  4308. w11.Name = "Joint"
  4309. w11.Part0 = p11
  4310. w11.C0 = CFrame.new(0, 0.209881723, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4311. w11.Part1 = p13
  4312. w11.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4313. w12 = Instance.new("Weld", p12)
  4314. w12.Name = "Joint"
  4315. w12.Part0 = p12
  4316. w12.C0 = CFrame.new(-0.139921427, -0.139921635, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4317. w12.Part1 = p29
  4318. w12.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4319. w13 = Instance.new("Weld", p13)
  4320. w13.Name = "Joint"
  4321. w13.Part0 = p13
  4322. w13.C0 = CFrame.new(0.839523137, 0.349802732, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4323. w13.Part1 = p48
  4324. w13.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4325. w14 = Instance.new("Weld", p14)
  4326. w14.Name = "Joint"
  4327. w14.Part0 = p14
  4328. w14.C0 = CFrame.new(-6.98293934e-006, 1.25067584e-006, -0.139921844, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4329. w14.Part1 = p60
  4330. w14.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4331. w15 = Instance.new("Weld", p15)
  4332. w15.Name = "Joint"
  4333. w15.Part0 = p15
  4334. w15.C0 = CFrame.new(-0.139920712, -0.139923528, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4335. w15.Part1 = p17
  4336. w15.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4337. w16 = Instance.new("Weld", p16)
  4338. w16.Name = "Joint"
  4339. w16.Part0 = p16
  4340. w16.C0 = CFrame.new(1.45912168e-006, 0.349802852, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4341. w16.Part1 = p48
  4342. w16.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4343. w17 = Instance.new("Weld", p17)
  4344. w17.Name = "Joint"
  4345. w17.Part0 = p17
  4346. w17.C0 = CFrame.new(-0.97944206, 0.0699603036, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4347. w17.Part1 = p50
  4348. w17.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4349. w18 = Instance.new("Weld", p18)
  4350. w18.Name = "Joint"
  4351. w18.Part0 = p18
  4352. w18.C0 = CFrame.new(-0.979444683, 0.0699603036, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4353. w18.Part1 = p50
  4354. w18.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4355. w19 = Instance.new("Weld", p19)
  4356. w19.Name = "Joint"
  4357. w19.Part0 = p19
  4358. w19.C0 = CFrame.new(0, -0.2098784, 0.0349924229, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  4359. w19.Part1 = p54
  4360. w19.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4361. w20 = Instance.new("Weld", p20)
  4362. w20.Name = "Joint"
  4363. w20.Part0 = p20
  4364. w20.C0 = CFrame.new(-0.139921427, -0.13992101, 1.35489881e-006, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4365. w20.Part1 = p21
  4366. w20.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4367. w21 = Instance.new("Weld", p21)
  4368. w21.Name = "Joint"
  4369. w21.Part0 = p21
  4370. w21.C0 = CFrame.new(-1.25928402, 0.0699627995, -1.35489881e-006, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4371. w21.Part1 = p37
  4372. w21.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4373. w22 = Instance.new("Weld", p22)
  4374. w22.Name = "Joint"
  4375. w22.Part0 = p22
  4376. w22.C0 = CFrame.new(0, -0.209878504, 0.0349705629, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  4377. w22.Part1 = p8
  4378. w22.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4379. w23 = Instance.new("Weld", p23)
  4380. w23.Name = "Joint"
  4381. w23.Part0 = p23
  4382. w23.C0 = CFrame.new(0, 0, 0.139921427, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  4383. w23.Part1 = p35
  4384. w23.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4385. w24 = Instance.new("Weld", p24)
  4386. w24.Name = "Joint"
  4387. w24.Part0 = p24
  4388. w24.C0 = CFrame.new(8.33783815e-007, -0.209883824, 1.25928962, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  4389. w24.Part1 = p48
  4390. w24.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4391. w25 = Instance.new("Weld", p25)
  4392. w25.Name = "Joint"
  4393. w25.Part0 = p25
  4394. w25.C0 = CFrame.new(0, -0.209878504, 0.0349897929, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  4395. w25.Part1 = p8
  4396. w25.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4397. w26 = Instance.new("Weld", p26)
  4398. w26.Name = "Joint"
  4399. w26.Part0 = p26
  4400. w26.C0 = CFrame.new(0, -3.33513526e-006, 0.769568086, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  4401. w26.Part1 = p6
  4402. w26.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4403. w27 = Instance.new("Weld", p27)
  4404. w27.Name = "Joint"
  4405. w27.Part0 = p27
  4406. w27.C0 = CFrame.new(-1.25928354, -0.0699575916, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4407. w27.Part1 = p48
  4408. w27.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4409. w28 = Instance.new("Weld", p28)
  4410. w28.Name = "Joint"
  4411. w28.Part0 = p28
  4412. w28.C0 = CFrame.new(0, -0.13992101, 0, 0, 0, -1, 0, -1, -0, -1, 0, -0)
  4413. w28.Part1 = p35
  4414. w28.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4415. w29 = Instance.new("Weld", p29)
  4416. w29.Name = "Joint"
  4417. w29.Part0 = p29
  4418. w29.C0 = CFrame.new(-1.25928354, 0.0699634254, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4419. w29.Part1 = p37
  4420. w29.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4421. w30 = Instance.new("Weld", p30)
  4422. w30.Name = "Joint"
  4423. w30.Part0 = p30
  4424. w30.C0 = CFrame.new(0, -0.139920816, 0, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  4425. w30.Part1 = p20
  4426. w30.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4427. w31 = Instance.new("Weld", p31)
  4428. w31.Name = "Joint"
  4429. w31.Part0 = p31
  4430. w31.C0 = CFrame.new(0, -3.02246644e-006, 0.419769108, 0, 0, -1, 0, -1, -0, -1, 0, -0)
  4431. w31.Part1 = p16
  4432. w31.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4433. w32 = Instance.new("Weld", p32)
  4434. w32.Name = "Joint"
  4435. w32.Part0 = p32
  4436. w32.C0 = CFrame.new(-0.839526176, 0.349802852, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4437. w32.Part1 = p48
  4438. w32.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4439. w33 = Instance.new("Weld", p33)
  4440. w33.Name = "Joint"
  4441. w33.Part0 = p33
  4442. w33.C0 = CFrame.new(1.3548987e-006, -0.279842436, 0.0699624866, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  4443. w33.Part1 = p21
  4444. w33.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4445. w34 = Instance.new("Weld", p34)
  4446. w34.Name = "Joint"
  4447. w34.Part0 = p34
  4448. w34.C0 = CFrame.new(0, -0.279842019, 0, 0, 0, -1, 0, -1, -0, -1, 0, -0)
  4449. w34.Part1 = p27
  4450. w34.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4451. w35 = Instance.new("Weld", p35)
  4452. w35.Name = "Joint"
  4453. w35.Part0 = p35
  4454. w35.C0 = CFrame.new(-0.139920607, -0.139922053, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4455. w35.Part1 = p58
  4456. w35.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4457. w36 = Instance.new("Weld", p36)
  4458. w36.Name = "Joint"
  4459. w36.Part0 = p36
  4460. w36.C0 = CFrame.new(0, -0.279843062, 0.0699611381, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  4461. w36.Part1 = p29
  4462. w36.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4463. w37 = Instance.new("Weld", p37)
  4464. w37.Name = "Joint"
  4465. w37.Part0 = p37
  4466. w37.C0 = CFrame.new(0, 0.559682429, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4467. w37.Part1 = p3
  4468. w37.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4469. w38 = Instance.new("Weld", p38)
  4470. w38.Name = "Joint"
  4471. w38.Part0 = p38
  4472. w38.C0 = CFrame.new(0, 0, 0.13992101, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  4473. w38.Part1 = p4
  4474. w38.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4475. w39 = Instance.new("Weld", p39)
  4476. w39.Name = "Joint"
  4477. w39.Part0 = p39
  4478. w39.C0 = CFrame.new(0, 0, 0.139921427, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  4479. w39.Part1 = p12
  4480. w39.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4481. w40 = Instance.new("Weld", p40)
  4482. w40.Name = "Joint"
  4483. w40.Part0 = p40
  4484. w40.C0 = CFrame.new(0, -0.279843479, 0.0699611381, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  4485. w40.Part1 = p52
  4486. w40.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4487. w41 = Instance.new("Weld", p41)
  4488. w41.Name = "Joint"
  4489. w41.Part0 = p41
  4490. w41.C0 = CFrame.new(0, -0.139921427, 0.0699607134, 0, 0, -1, 0, -1, -0, -1, 0, -0)
  4491. w41.Part1 = p5
  4492. w41.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4493. w42 = Instance.new("Weld", p42)
  4494. w42.Name = "Joint"
  4495. w42.Part0 = p42
  4496. w42.C0 = CFrame.new(0, -2.7097974e-006, 0.139925033, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  4497. w42.Part1 = p8
  4498. w42.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4499. w43 = Instance.new("Weld", p43)
  4500. w43.Name = "Joint"
  4501. w43.Part0 = p43
  4502. w43.C0 = CFrame.new(0, -0.139921218, 0.0699607134, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  4503. w43.Part1 = p5
  4504. w43.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4505. w44 = Instance.new("Weld", p44)
  4506. w44.Name = "Joint"
  4507. w44.Part0 = p44
  4508. w44.C0 = CFrame.new(0, -0.139921844, 0, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  4509. w44.Part1 = p15
  4510. w44.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4511. w45 = Instance.new("Weld", p45)
  4512. w45.Name = "Joint"
  4513. w45.Part0 = p45
  4514. w45.C0 = CFrame.new(0, -2.7097974e-006, 0.139921531, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  4515. w45.Part1 = p11
  4516. w45.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4517. w46 = Instance.new("Weld", p46)
  4518. w46.Name = "Joint"
  4519. w46.Part0 = p46
  4520. w46.C0 = CFrame.new(0, -3.33513526e-006, 0.769562066, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  4521. w46.Part1 = p6
  4522. w46.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4523. w47 = Instance.new("Weld", p47)
  4524. w47.Name = "Joint"
  4525. w47.Part0 = p47
  4526. w47.C0 = CFrame.new(-0.139920652, -0.139923528, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4527. w47.Part1 = p18
  4528. w47.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4529. w48 = Instance.new("Weld", p48)
  4530. w48.Name = "Joint"
  4531. w48.Part0 = p48
  4532. w48.C0 = CFrame.new(0, 0.559684873, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4533. w48.Part1 = p37
  4534. w48.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4535. w49 = Instance.new("Weld", p49)
  4536. w49.Name = "Joint"
  4537. w49.Part0 = p49
  4538. w49.C0 = CFrame.new(0, -0.139921844, 0, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  4539. w49.Part1 = p47
  4540. w49.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4541. w50 = Instance.new("Weld", p50)
  4542. w50.Name = "Joint"
  4543. w50.Part0 = p50
  4544. w50.C0 = CFrame.new(0, 0.349801898, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4545. w50.Part1 = p6
  4546. w50.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4547. w51 = Instance.new("Weld", p51)
  4548. w51.Name = "Joint"
  4549. w51.Part0 = p51
  4550. w51.C0 = CFrame.new(-0.139921427, -0.139922053, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4551. w51.Part1 = p52
  4552. w51.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4553. w52 = Instance.new("Weld", p52)
  4554. w52.Name = "Joint"
  4555. w52.Part0 = p52
  4556. w52.C0 = CFrame.new(-1.11936295, 0.0699607134, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4557. w52.Part1 = p3
  4558. w52.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4559. w53 = Instance.new("Weld", p53)
  4560. w53.Name = "Joint"
  4561. w53.Part0 = p53
  4562. w53.C0 = CFrame.new(0, 3.9604729e-006, 0.279851943, 0, 0, -1, 0, -1, -0, -1, 0, -0)
  4563. w53.Part1 = p9
  4564. w53.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4565. w54 = Instance.new("Weld", p54)
  4566. w54.Name = "Joint"
  4567. w54.Part0 = p54
  4568. w54.C0 = CFrame.new(0, 0.349802941, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4569. w54.Part1 = p9
  4570. w54.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4571. w55 = Instance.new("Weld", p55)
  4572. w55.Name = "Joint"
  4573. w55.Part0 = p55
  4574. w55.C0 = CFrame.new(0, -2.7097974e-006, 0.139916331, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  4575. w55.Part1 = p8
  4576. w55.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4577. w56 = Instance.new("Weld", p56)
  4578. w56.Name = "Joint"
  4579. w56.Part0 = p56
  4580. w56.C0 = CFrame.new(0, 0, 0.139921322, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  4581. w56.Part1 = p20
  4582. w56.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4583. w57 = Instance.new("Weld", p57)
  4584. w57.Name = "Joint"
  4585. w57.Part0 = p57
  4586. w57.C0 = CFrame.new(0, -0.139921427, -0.0699620694, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  4587. w57.Part1 = p47
  4588. w57.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4589. w58 = Instance.new("Weld", p58)
  4590. w58.Name = "Joint"
  4591. w58.Part0 = p58
  4592. w58.C0 = CFrame.new(-1.11936343, 0.0699607134, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4593. w58.Part1 = p3
  4594. w58.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4595. w59 = Instance.new("Weld", p59)
  4596. w59.Name = "Joint"
  4597. w59.Part0 = p59
  4598. w59.C0 = CFrame.new(0, -2.50135167e-006, 0.279839605, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  4599. w59.Part1 = p32
  4600. w59.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4601. w60 = Instance.new("Weld", p61)
  4602. w60.Name = "Joint"
  4603. w60.Part0 = p61
  4604. w60.C0 = CFrame.new(-1.25928962, -0.0699586272, -8.33783815e-007, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4605. w60.Part1 = p48
  4606. w60.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4607. w61 = Instance.new("Weld", p62)
  4608. w61.Name = "Joint"
  4609. w61.Part0 = p62
  4610. w61.C0 = CFrame.new(0, -0.139921635, 0.0699612424, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  4611. w61.Part1 = p10
  4612. w61.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4613. w62 = Instance.new("Weld", p63)
  4614. w62.Name = "Joint"
  4615. w62.Part0 = p63
  4616. w62.C0 = CFrame.new(0, 0, 0.139920712, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  4617. w62.Part1 = p7
  4618. w62.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4619. w63 = Instance.new("Weld", p64)
  4620. w63.Name = "Joint"
  4621. w63.Part0 = p64
  4622. w63.C0 = CFrame.new(0, -2.60557431e-006, 0.139913708, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  4623. w63.Part1 = p54
  4624. w63.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4625. w64 = Instance.new("Weld", p65)
  4626. w64.Name = "Joint"
  4627. w64.Part0 = p65
  4628. w64.C0 = CFrame.new(0, -2.50135167e-006, 0.279843956, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  4629. w64.Part1 = p13
  4630. w64.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4631. w65 = Instance.new("Weld", p66)
  4632. w65.Name = "Joint"
  4633. w65.Part0 = p66
  4634. w65.C0 = CFrame.new(0, 1.04222977e-006, 0.139921427, 0, 0, -1, 0, -1, -0, -1, 0, -0)
  4635. w65.Part1 = p52
  4636. w65.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4637. w66 = Instance.new("Weld", p67)
  4638. w66.Name = "Joint"
  4639. w66.Part0 = p67
  4640. w66.C0 = CFrame.new(0, -3.02246644e-006, 0.419757843, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  4641. w66.Part1 = p16
  4642. w66.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4643. w67 = Instance.new("Weld", p68)
  4644. w67.Name = "Joint"
  4645. w67.Part0 = p68
  4646. w67.C0 = CFrame.new(0, -0.209878504, 0.0349741057, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  4647. w67.Part1 = p11
  4648. w67.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4649. w68 = Instance.new("Weld", p69)
  4650. w68.Name = "Joint"
  4651. w68.Part0 = p69
  4652. w68.C0 = CFrame.new(0, -0.209878504, 0.0349861942, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  4653. w68.Part1 = p11
  4654. w68.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4655. w69 = Instance.new("Weld", p70)
  4656. w69.Name = "Joint"
  4657. w69.Part0 = p70
  4658. w69.C0 = CFrame.new(0, -0.279843479, 0.0699616596, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  4659. w69.Part1 = p58
  4660. w69.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4661. w70 = Instance.new("Weld", p71)
  4662. w70.Name = "Joint"
  4663. w70.Part0 = p71
  4664. w70.C0 = CFrame.new(0, -0.2098784, 0.0349679329, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  4665. w70.Part1 = p54
  4666. w70.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4667. w71 = Instance.new("Weld", p72)
  4668. w71.Name = "Joint"
  4669. w71.Part0 = p72
  4670. w71.C0 = CFrame.new(0, -3.02246644e-006, 0.27983579, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  4671. w71.Part1 = p9
  4672. w71.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4673. w72 = Instance.new("Weld", p73)
  4674. w72.Name = "Joint"
  4675. w72.Part0 = p73
  4676. w72.C0 = CFrame.new(0, -2.50135167e-006, 0.279839605, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  4677. w72.Part1 = p13
  4678. w72.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4679. w73 = Instance.new("Weld", p74)
  4680. w73.Name = "Joint"
  4681. w73.Part0 = p74
  4682. w73.C0 = CFrame.new(0, -0.139921427, 0.0699612424, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  4683. w73.Part1 = p10
  4684. w73.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4685. w74 = Instance.new("Weld", p75)
  4686. w74.Name = "Joint"
  4687. w74.Part0 = p75
  4688. w74.C0 = CFrame.new(0, -2.60557431e-006, 0.139928564, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  4689. w74.Part1 = p54
  4690. w74.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4691. w75 = Instance.new("Weld", p76)
  4692. w75.Name = "Joint"
  4693. w75.Part0 = p76
  4694. w75.C0 = CFrame.new(0, -2.50135167e-006, 0.27984485, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  4695. w75.Part1 = p32
  4696. w75.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4697. w76 = Instance.new("Weld", p77)
  4698. w76.Name = "Joint"
  4699. w76.Part0 = p77
  4700. w76.C0 = CFrame.new(0, 0, 0.139921635, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  4701. w76.Part1 = p15
  4702. w76.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4703. w77 = Instance.new("Weld", p78)
  4704. w77.Name = "Joint"
  4705. w77.Part0 = p78
  4706. w77.C0 = CFrame.new(0, -0.139921427, -0.0699594691, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  4707. w77.Part1 = p15
  4708. w77.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4709. w78 = Instance.new("Weld", p79)
  4710. w78.Name = "Joint"
  4711. w78.Part0 = p79
  4712. w78.C0 = CFrame.new(0, 0, 0.139921218, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  4713. w78.Part1 = p51
  4714. w78.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4715. w79 = Instance.new("Weld", p80)
  4716. w79.Name = "Joint"
  4717. w79.Part0 = p80
  4718. w79.C0 = CFrame.new(0, -0.13992101, 0, 0, 0, -1, 0, -1, -0, -1, 0, -0)
  4719. w79.Part1 = p12
  4720. w79.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4721. m6.Parent = torso
  4722. m6:MakeJoints()
  4723.  
  4724. model = m6;
  4725. for i,v in pairs(model:GetChildren()) do
  4726. if v:IsA('Part') then
  4727. v.Transparency = 1;
  4728. end
  4729. end
  4730.  
  4731. model = m6;
  4732. for i,v in pairs(model:GetChildren()) do
  4733. if v:IsA('WedgePart') then
  4734. v.Transparency = 1;
  4735. end
  4736. end
  4737.  
  4738. model = m6;
  4739. for i,v in pairs(model:GetChildren()) do
  4740. if v:IsA('SpecialMesh') then
  4741. v.Transparency = 1;
  4742. end
  4743. end
  4744. ----------------------------------------------------
  4745. --EDIT SECTION HERE--
  4746.  
  4747. --flying--
  4748.  
  4749. local char = game.Players.LocalPlayer.Character
  4750. local torso = game.Workspace[game.Players.LocalPlayer.Name].Torso
  4751. local player = game.Players.LocalPlayer
  4752. local pchar = player.Character
  4753. local mouse = player:GetMouse()
  4754. local cam = workspace.CurrentCamera
  4755. local hum = char.Humanoid
  4756. local root = char.HumanoidRootPart
  4757.  
  4758.  
  4759. local rad = math.rad
  4760.  
  4761. local keysDown = {}
  4762. local flySpeed = 0
  4763. local MAX_FLY_SPEED = 100
  4764.  
  4765. local canFly = false
  4766. local flyToggled = false
  4767.  
  4768. local forward, side = 0, 0
  4769. local lastForward, lastSide = 0, 0
  4770.  
  4771. local floatBP = Instance.new("BodyPosition")
  4772. floatBP.maxForce = Vector3.new(0, math.huge, 0)
  4773. local flyBV = Instance.new("BodyVelocity")
  4774. flyBV.maxForce = Vector3.new(9e9, 9e9, 9e9)
  4775. local turnBG = Instance.new("BodyGyro")
  4776. turnBG.maxTorque = Vector3.new(math.huge, math.huge, math.huge)
  4777.  
  4778. mouse.KeyDown:connect(function(key)
  4779. keysDown[key] = true
  4780.  
  4781. if key == "g" then
  4782. flyToggled = not flyToggled
  4783.  
  4784. if not flyToggled then
  4785. animpose = "Idle1"
  4786. stanceToggle = "Idle1"
  4787. floatBP.Parent = nil
  4788. flyBV.Parent = nil
  4789. turnBG.Parent = nil
  4790. root.Velocity = Vector3.new()
  4791. pchar.Humanoid.PlatformStand = false
  4792. end
  4793. end
  4794.  
  4795. end)
  4796. mouse.KeyUp:connect(function(key)
  4797. keysDown[key] = nil
  4798. end)
  4799.  
  4800. local function updateFly()
  4801.  
  4802. if not flyToggled then return end
  4803.  
  4804. lastForward = forward
  4805. lastSide = side
  4806.  
  4807. forward = 0
  4808. side = 0
  4809.  
  4810. if keysDown.w then
  4811. forward = forward + 1
  4812. animpose = "Idle1"
  4813. end
  4814. if keysDown.s then
  4815. forward = forward - 1
  4816. animpose = "Idle1"
  4817. end
  4818. if keysDown.a then
  4819. side = side - 1
  4820. animpose = "Idle1"
  4821. end
  4822. if keysDown.d then
  4823. side = side + 1
  4824. animpose = "Idle1"
  4825. end
  4826.  
  4827.  
  4828. canFly = (forward ~= 0 or side ~= 0)
  4829.  
  4830. if canFly then
  4831. stanceToggle = "Grab"
  4832. turnBG.Parent = root
  4833. floatBP.Parent = nil
  4834. flyBV.Parent = root
  4835.  
  4836.  
  4837. flySpeed = flySpeed + 1 + (flySpeed / MAX_FLY_SPEED)
  4838. if flySpeed > MAX_FLY_SPEED then flySpeed = MAX_FLY_SPEED end
  4839. else
  4840. floatBP.position = root.Position
  4841. floatBP.Parent = root
  4842.  
  4843. flySpeed = flySpeed - 1
  4844. if flySpeed < 0 then flySpeed = 0 end
  4845. end
  4846.  
  4847. local camCF = cam.CoordinateFrame
  4848. local in_forward = canFly and forward or lastForward
  4849. local in_side = canFly and side or lastSide
  4850.  
  4851. flyBV.velocity = ((camCF.lookVector * in_forward) + (camCF * CFrame.new(in_side,
  4852. in_forward * 0.2, 0).p) - camCF.p) * flySpeed
  4853.  
  4854. turnBG.cframe = camCF * CFrame.Angles(-rad(forward * (flySpeed / MAX_FLY_SPEED)), 0,
  4855. 0)
  4856. end
  4857.  
  4858. game:service'RunService'.RenderStepped:connect(function()
  4859. if flyToggled then
  4860. pchar.Humanoid.PlatformStand = true
  4861. end
  4862. updateFly()
  4863. end)
  4864. ----------------------------------------------
  4865. --arm effects--
  4866.  
  4867. Player=game:GetService("Players").LocalPlayer
  4868. Character=Player.Character
  4869. PlayerGui=Player.PlayerGui
  4870. Backpack=Player.Backpack
  4871. Torso=Character.Torso
  4872. Head=Character.Head
  4873. Humanoid=Character.Humanoid
  4874. m=Instance.new('Model',Character)
  4875. LeftArm=Character["Left Arm"]
  4876. LeftLeg=Character["Left Leg"]
  4877. RightArm=Character["Right Arm"]
  4878. RightLeg=Character["Right Leg"]
  4879. local mouse=Player:GetMouse()
  4880. local PE = Instance.new("ParticleEmitter", LeftArm)
  4881. PE.Name = "Flame"
  4882. local c1 = Color3.fromRGB (0,0,0)
  4883. local c2 = Color3.fromRGB (0,0,150)
  4884. PE.Color = ColorSequence.new(c1)
  4885. PE.EmissionDirection = "Bottom"
  4886. PE.Texture = "rbxassetid://242201991"
  4887. PE.LightEmission = 0.850
  4888. PE.Speed = NumberRange.new(0)
  4889. PE.RotSpeed = NumberRange.new(250)
  4890. PE.Size = NumberSequence.new(.5)
  4891. PE.Lifetime = NumberRange.new(0.2)
  4892. PE.Rate = 200
  4893. PE.VelocitySpread = 50
  4894.  
  4895.  
  4896. local PE = Instance.new("ParticleEmitter", RightArm)
  4897. PE.Name = "Flame"
  4898. local c1 = Color3.fromRGB (0,0,0)
  4899. local c2 = Color3.fromRGB (0,0,150)
  4900. PE.Color = ColorSequence.new(c1)
  4901. PE.EmissionDirection = "Bottom"
  4902. PE.Texture = "rbxassetid://242201991"
  4903. PE.LightEmission = 0.850
  4904. PE.Speed = NumberRange.new(0)
  4905. PE.RotSpeed = NumberRange.new(250)
  4906. PE.Size = NumberSequence.new(.5)
  4907. PE.Lifetime = NumberRange.new(0.2)
  4908. PE.Rate = 200
  4909. PE.VelocitySpread = 50
  4910. ------------------------------------------Magic----
  4911. Magik = function()
  4912. Spawn(function()
  4913. local function lerp(a,b,c)
  4914. return a+(b-a)*c
  4915. end
  4916. local function rndRange(rng)
  4917. return math.random(-rng*1000,rng*1000)/1000
  4918. end
  4919. local magik = Instance.new("Part", LeftArm)
  4920. local Colors = {"Hot pink", "Carnation pink"}
  4921. local Material = {"Neon","Neon"}
  4922. magik.Anchored = true
  4923. magik.Material = "Neon"
  4924. magik.Locked = true
  4925. magik.FormFactor = "Custom"
  4926. magik.Size = Vector3.new(1.2, 1.2, 1.2)
  4927. magik.TopSurface = "Smooth"
  4928. magik.BottomSurface = "Smooth"
  4929. magik.Transparency = 0
  4930. magik.CanCollide = false
  4931. magik.BrickColor = BrickColor.new(Colors[math.random(1,#Colors)])
  4932. magik.Material = (Material[math.random(1,#Material)])
  4933. local mr = math.rad
  4934. local rnx,rny,rnz = mr(rndRange(180)),mr(rndRange(180)),mr(rndRange(180))
  4935. local cf = LeftArm.CFrame * CFrame.new(0, -.8, 0) * CFrame.Angles(rnx,rny,rnz)
  4936. magik.CFrame = cf
  4937. for i = 0, 1, .05 do
  4938. local newTrans = lerp(0.5, 1, i)
  4939. local ns = lerp(1,1.2,i)
  4940. magik.Transparency = newTrans
  4941. magik.Size = Vector3.new(ns,ns,ns)
  4942. magik.CFrame = cf
  4943. wait()
  4944. end
  4945. magik:Destroy()
  4946. wait()
  4947. end)
  4948. end
  4949.  
  4950.  
  4951. Spawn(function()
  4952. while wait (.1) do
  4953. Magik()
  4954. end
  4955. end)
  4956.  
  4957. local p = game.Players.LocalPlayer
  4958. local char = p.Character
  4959. local mouse = p:GetMouse()
  4960. local larm = char["Left Arm"]
  4961. local rarm = char["Right Arm"]
  4962. local lleg = char["Left Leg"]
  4963. local rleg = char["Right Leg"]
  4964. local hed = char.Head
  4965. local torso = char.Torso
  4966. local hum = char.Humanoid
  4967. local cam = game.Workspace.CurrentCamera
  4968. local root = char.HumanoidRootPart
  4969. local deb = false
  4970. local CanAttack = true
  4971. local shot = 0
  4972. local l = game:GetService("Lighting")
  4973. local rs = game:GetService("RunService").RenderStepped
  4974. math.randomseed(os.time())
  4975. hum.MaxHealth = 9001
  4976. wait(1)
  4977. hum.Health = 9001
  4978.  
  4979. for i,v in pairs (hed:GetChildren()) do
  4980. if v:IsA("Sound") then
  4981. v:Destroy()
  4982. end
  4983. end
  4984. --game:service'InsertService':LoadAsset(16469427):children()[1].Parent = char
  4985. --char.Reaper.Handle.Mesh.TextureId = "http://www.roblox.com/asset/?id=176349813"
  4986.  
  4987.  
  4988. ----------------------------------------------------
  4989. --[[Additional Functions]]
  4990.  
  4991. cf=CFrame.new
  4992. vt=Vector3.new
  4993.  
  4994. function swait(num)
  4995. if num==0 or num==nil then
  4996. game:service'RunService'.Stepped:wait(0)
  4997. else
  4998. for i=0,num do
  4999. game:service'RunService'.Stepped:wait(0)
  5000. end
  5001. end
  5002. end
  5003.  
  5004. so = function(id,par,vol,pit)
  5005. coroutine.resume(coroutine.create(function()
  5006. local sou = Instance.new("Sound",par or workspace)
  5007. sou.Volume=vol
  5008. sou.Pitch=pit or 1
  5009. sou.SoundId=id
  5010. swait()
  5011. sou:play()
  5012. game:GetService("Debris"):AddItem(sou,6)
  5013. end))
  5014. end
  5015.  
  5016.  
  5017.  
  5018.  
  5019.  
  5020. ----------------------------------------------------
  5021. Debounces = {
  5022. CanAttack = true;
  5023. CanJoke = true;
  5024. NoIdl = false;
  5025. Slashing = false;
  5026. Slashed = false;
  5027. Slapping = false;
  5028. Slapped = false;
  5029. ks = false;
  5030. }
  5031.  
  5032. local Touche = {char.Name, }
  5033. ----------------------------------------------------
  5034. function HasntTouched(plrname)
  5035. local ret = true
  5036. for _, v in pairs(Touche) do
  5037. if v == plrname then
  5038. ret = false
  5039. end
  5040. end
  5041. return ret
  5042. end
  5043. ----------------------------------------------------
  5044. function weld5(part0, part1, c0, c1)
  5045. weeld=Instance.new("Weld", part0)
  5046. weeld.Part0=part0
  5047. weeld.Part1=part1
  5048. weeld.C0=c0
  5049. weeld.C1=c1
  5050. return weeld
  5051. end
  5052. ----------------------------------------------------
  5053. mod=Instance.new('Model',char)
  5054.  
  5055. function Burst()
  5056. part=Instance.new('Part',mod)
  5057. part.Anchored=true
  5058. part.CanCollide=false
  5059. part.FormFactor='Custom'
  5060. part.Size=Vector3.new(.2,.2,.2)
  5061. part.CFrame=root.CFrame*CFrame.new(0,1,0)*CFrame.Angles(math.rad(90),0,0)
  5062. part.Transparency=.7
  5063.  
  5064. if holy ~= true then
  5065. part.BrickColor=BrickColor.new('Carnation pink')
  5066. else
  5067. part.BrickColor=BrickColor.new('Hot pink')
  5068. end
  5069.  
  5070. mesh=Instance.new('SpecialMesh',part)
  5071. mesh.MeshId='http://www.roblox.com/asset/?id=20329976'
  5072. mesh.Scale=Vector3.new(10,5,10)
  5073. part2=part:clone()
  5074. part2.Parent=mod
  5075.  
  5076. if holy ~= true then
  5077. part2.BrickColor=BrickColor.new('Hot pink')
  5078. else
  5079. part2.BrickColor=BrickColor.new('Hot pink')
  5080. end
  5081.  
  5082. mesh2=mesh:clone()
  5083. mesh2.Parent=part2
  5084. mesh2.Scale=Vector3.new(5,2.5,5)
  5085. coroutine.resume(coroutine.create(function()
  5086. for i=0,1,0.1 do
  5087. wait()
  5088. part.CFrame=part.CFrame
  5089. part.Transparency=i
  5090. mesh.Scale=mesh.Scale+Vector3.new(1,1,1)
  5091. part2.CFrame=part2.CFrame
  5092. part2.Transparency=i
  5093. mesh2.Scale=mesh2.Scale+Vector3.new(1,1,1)
  5094. end
  5095. part.Parent=nil
  5096. part2.Parent=nil
  5097. end))
  5098. end
  5099. ----------------------------------------------------
  5100. mod4 = Instance.new("Model",char)
  5101.  
  5102. ptez = {0.7, 0.8, 0.9, 1}
  5103.  
  5104. function FindNearestTorso(Position,Distance,SinglePlayer)
  5105. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  5106. local List = {}
  5107. for i,v in pairs(workspace:GetChildren())do
  5108. if v:IsA("Model")then
  5109. if v:findFirstChild("Torso")then
  5110. if v ~= char then
  5111. if(v.Torso.Position -Position).magnitude <= Distance then
  5112. table.insert(List,v)
  5113. end
  5114. end
  5115. end
  5116. end
  5117. end
  5118. return List
  5119. end
  5120.  
  5121. function Slam()
  5122. part=Instance.new('Part',mod4)
  5123. part.Anchored=true
  5124. part.CanCollide=false
  5125. part.FormFactor='Custom'
  5126. part.Size=Vector3.new(.2,.2,.2)
  5127. part.CFrame=root.CFrame*CFrame.new(0,-2.8,-1.4)*CFrame.Angles(math.rad(90),0,0)
  5128. part.Transparency=.7
  5129.  
  5130. if holy ~= true then
  5131. part.BrickColor=BrickColor.new('Carnation pink')
  5132. else
  5133. part.BrickColor=BrickColor.new('Hot pink')
  5134. end
  5135.  
  5136. mesh=Instance.new('SpecialMesh',part)
  5137. mesh.MeshId='http://www.roblox.com/asset/?id=3270017'
  5138. mesh.Scale=Vector3.new(3,3,3)
  5139. part2=Instance.new('Part',mod4)
  5140. part2.Anchored=true
  5141. part2.CanCollide=false
  5142. part2.FormFactor='Custom'
  5143. part2.Size=Vector3.new(.2,.2,.2)
  5144. part2.CFrame=root.CFrame*CFrame.new(0,-2.4,-1.6)
  5145. part2.Transparency=.7
  5146.  
  5147. if holy ~= true then
  5148. part2.BrickColor=BrickColor.new('Hot pink')
  5149. else
  5150. part2.BrickColor=BrickColor.new('Hot pink')
  5151. end
  5152.  
  5153. mesh2=Instance.new('SpecialMesh',part2)
  5154. mesh2.MeshId='http://www.roblox.com/asset/?id=20329976'
  5155. mesh2.Scale=Vector3.new(3,1.5,3)
  5156. x = Instance.new("Sound",char)
  5157. x.SoundId = "http://www.roblox.com/asset/?id=142070127"
  5158. x.Pitch = ptez[math.random(1,#ptez)]
  5159. x.Volume = 1
  5160. wait(.1)
  5161. x1 = Instance.new("Sound",char)
  5162. x1.SoundId = "http://www.roblox.com/asset/?id=206082327"
  5163. x1.Pitch = ptez[math.random(1,#ptez)]
  5164. x1.Volume = 1
  5165. wait(.1)
  5166. x:Play()
  5167. x1:Play()
  5168. for i,v in pairs(FindNearestTorso(torso.CFrame.p,4))do
  5169. if v:FindFirstChild('Humanoid') then
  5170. v.Humanoid:TakeDamage(math.random(99999999,99999999))
  5171. end
  5172. end
  5173. coroutine.resume(coroutine.create(function()
  5174. for i=0,0.62,0.13 do
  5175. wait()
  5176. part.CFrame=part.CFrame
  5177. part.Transparency=i
  5178. mesh.Scale=mesh.Scale+Vector3.new(0.4,0.4,0.4)
  5179. part2.CFrame=part2.CFrame
  5180. part2.Transparency=i
  5181. mesh2.Scale=mesh2.Scale+Vector3.new(0.4,0.2,0.4)
  5182. end
  5183. part.Parent=nil
  5184. part2.Parent=nil
  5185. x:Destroy()
  5186. end))
  5187. end
  5188. ----------------------------------------------------PUNCH FUNC
  5189. GroundWave = function()
  5190. local HandCF = CFrame.new(root.Position - Vector3.new(0,3,0)) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  5191. local Colors = {"Hot pink", "Carnation pink"}
  5192. local wave = Instance.new("Part", torso)
  5193.  
  5194. if holy == false then
  5195. wave.BrickColor = BrickColor.new(Colors[math.random(1,#Colors)])
  5196. else
  5197. wave.BrickColor = BrickColor.new("Hot pink")
  5198. end
  5199.  
  5200. wave.Anchored = true
  5201. wave.CanCollide = false
  5202. wave.Material = "Neon"
  5203. wave.Locked = true
  5204. wave.Size = Vector3.new(1, 1, 1)
  5205. wave.TopSurface = "Smooth"
  5206. wave.BottomSurface = "Smooth"
  5207. wave.Transparency = 0.35
  5208. wave.CFrame = HandCF
  5209. wm = Instance.new("SpecialMesh", wave)
  5210. wm.MeshId = "rbxassetid://3270017"
  5211. coroutine.wrap(function()
  5212. for i = 1, 14, 1 do
  5213. wm.Scale = Vector3.new(1 + i*1.1, 1 + i*1.1, 1)
  5214. wave.Size = wm.Scale
  5215. wave.CFrame = HandCF
  5216. wave.Transparency = i/14
  5217. wait()
  5218. end
  5219. wait()
  5220. wave:Destroy()
  5221. end)()
  5222. end
  5223. ----------------------------------------------------
  5224. function lerp(a, b, t) -- Linear interpolation
  5225. return a + (b - a)*t
  5226. end
  5227.  
  5228. function slerp(a, b, t) --Spherical interpolation
  5229. dot = a:Dot(b)
  5230. if dot > 0.99999 or dot < -0.99999 then
  5231. return t <= 0.5 and a or b
  5232. else
  5233. r = math.acos(dot)
  5234. return (a*math.sin((1 - t)*r) + b*math.sin(t*r)) / math.sin(r)
  5235. end
  5236. end
  5237.  
  5238. function matrixInterpolate(a, b, t)
  5239. local ax, ay, az, a00, a01, a02, a10, a11, a12, a20, a21, a22 = a:components()
  5240. local bx, by, bz, b00, b01, b02, b10, b11, b12, b20, b21, b22 = b:components()
  5241. local v0 = lerp(Vector3.new(ax, ay, az), Vector3.new(bx , by , bz), t) -- Position
  5242. local v1 = slerp(Vector3.new(a00, a01, a02), Vector3.new(b00, b01, b02), t) -- Vector right
  5243. local v2 = slerp(Vector3.new(a10, a11, a12), Vector3.new(b10, b11, b12), t) -- Vector up
  5244. local v3 = slerp(Vector3.new(a20, a21, a22), Vector3.new(b20, b21, b22), t) -- Vector back
  5245. local t = v1:Dot(v2)
  5246. if not (t < 0 or t == 0 or t > 0) then -- Failsafe
  5247. return CFrame.new()
  5248. end
  5249. return CFrame.new(
  5250. v0.x, v0.y, v0.z,
  5251. v1.x, v1.y, v1.z,
  5252. v2.x, v2.y, v2.z,
  5253. v3.x, v3.y, v3.z)
  5254. end
  5255. ----------------------------------------------------
  5256. function genWeld(a,b)
  5257. local w = Instance.new("Weld",a)
  5258. w.Part0 = a
  5259. w.Part1 = b
  5260. return w
  5261. end
  5262. function weld(a, b)
  5263. local weld = Instance.new("Weld")
  5264. weld.Name = "W"
  5265. weld.Part0 = a
  5266. weld.Part1 = b
  5267. weld.C0 = a.CFrame:inverse() * b.CFrame
  5268. weld.Parent = a
  5269. return weld;
  5270. end
  5271. ----------------------------------------------------
  5272. function Lerp(c1,c2,al)
  5273. local com1 = {c1.X,c1.Y,c1.Z,c1:toEulerAnglesXYZ()}
  5274. local com2 = {c2.X,c2.Y,c2.Z,c2:toEulerAnglesXYZ()}
  5275. for i,v in pairs(com1) do
  5276. com1[i] = v+(com2[i]-v)*al
  5277. end
  5278. return CFrame.new(com1[1],com1[2],com1[3]) * CFrame.Angles(select(4,unpack(com1)))
  5279. end
  5280. ----------------------------------------------------[[Dissolve function]]
  5281. function Dissolve(ret)
  5282.  
  5283. ret.BrickColor = BrickColor.new("Carnation pink")
  5284. for i = 1, 10 do wait()
  5285. for i,v in pairs(ret:GetChildren()) do
  5286. if v:IsA("Part") or v:IsA("WedgePart") then
  5287. v.Transparency = v.Transparency + 0.1
  5288.  
  5289. end
  5290. end
  5291. end
  5292. ret:Destroy()
  5293. end
  5294.  
  5295. ----------------------------------------------------
  5296. newWeld = function(wp0, wp1, wc0x, wc0y, wc0z)
  5297. local wld = Instance.new("Weld", wp1)
  5298. wld.Part0 = wp0
  5299. wld.Part1 = wp1
  5300. wld.C0 = CFrame.new(wc0x, wc0y, wc0z)
  5301. end
  5302. ----------------------------------------------------newblast
  5303. mouse.KeyDown:connect(function(key)
  5304. if key == "e" then
  5305. if Debounces.CanAttack == true then
  5306. Debounces.CanAttack = false
  5307. Debounces.on = true
  5308. Debounces.NoIdl = true
  5309. animpose = "Idle1"
  5310. for i = 1, 15 do
  5311. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,.6,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(30)), 0.2)
  5312. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,.6,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-90)), 0.6)
  5313. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(-14),math.rad(90),0), 0.2)
  5314. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-90), 0), 0.4)
  5315. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.2)
  5316. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.2)
  5317. if Debounces.on == false then break end
  5318. rs:wait(2.7)
  5319. end
  5320. so("http://roblox.com/asset/?id=231917788",hed,1,0.7)
  5321. x = Instance.new("Sound",char.Head)
  5322. x.SoundId = "rbxassetid://183763515"
  5323. x.Pitch = 0.7
  5324. x.Volume = .8
  5325. x3 = Instance.new("Sound",char.Head)
  5326. x3.SoundId = "rbxassetid://183763487"
  5327. x3.Pitch = 1
  5328. x3.Volume = .8
  5329. wait(.1)
  5330. x:Play()
  5331. x3:Play()
  5332.  
  5333. if holy == true then
  5334. so("http://roblox.com/asset/?id=233091161",hed,1,0.6)
  5335. so("http://roblox.com/asset/?id=2233091183",hed,1,1)
  5336. else
  5337. end
  5338.  
  5339. Debounces.on = false
  5340. Debounces.Here = false
  5341. shot = shot + 1
  5342. local rng = Instance.new("Part", larm)
  5343. rng.Anchored = true
  5344.  
  5345. if holy ~= true then
  5346. rng.BrickColor = BrickColor.new("Carnation pink")
  5347. else
  5348. rng.BrickColor = BrickColor.new("Hot pink")
  5349. end
  5350.  
  5351. rng.Material = "Neon"
  5352. rng.CanCollide = false
  5353. rng.FormFactor = 3
  5354. rng.Name = "Ring"
  5355. rng.Size = Vector3.new(1, 1, 1)
  5356. rng.Transparency = 0.35
  5357. rng.TopSurface = 0
  5358. rng.BottomSurface = 0
  5359. rng2 = rng:clone()
  5360. rng3 = rng2:clone()
  5361. rng4 = rng2:clone()
  5362. local rngm = Instance.new("SpecialMesh", rng)
  5363. rngm.MeshId = "http://www.roblox.com/asset/?id=3270017"
  5364. rngm.Scale = Vector3.new(10, 10, 1)
  5365. rngm2 = rngm:clone()
  5366. rngm2.Scale = Vector3.new(5, 5, 3)
  5367. rngm3=rngm2:clone()
  5368. rngm3.Parent = rng3
  5369. rngm3.Scale = Vector3.new(8, 8, 1)
  5370. rngm4 = rngm2:clone()
  5371. rngm4.Parent = rng4
  5372. rngm4.Scale = Vector3.new(6, 6, 1)
  5373. local bem = Instance.new("Part", larm)
  5374. bem.Anchored = true
  5375.  
  5376. if holy == false then
  5377. bem.BrickColor = BrickColor.new("Carnation pink")
  5378. else
  5379. bem.BrickColor = BrickColor.new("Hot pink")
  5380. end
  5381.  
  5382.  
  5383. bem.CanCollide = false
  5384. bem.Material = "Neon"
  5385. bem.FormFactor = 3
  5386. bem.Name = "Beam" .. shot
  5387. bem.Size = Vector3.new(1, 1, 1)
  5388. bem.Transparency = 0.35
  5389. bem.TopSurface = 0
  5390. bem.BottomSurface = 0
  5391. local bemm = Instance.new("SpecialMesh", bem)
  5392. bemm.MeshType = 4
  5393. bemm.Scale = Vector3.new(1, 4, 4)
  5394. local out = Instance.new("Part", larm)
  5395. out.Anchored = true
  5396. out.Material = "Neon"
  5397.  
  5398. if holy == false then
  5399. out.BrickColor = BrickColor.new("Carnation pink")
  5400. else
  5401. out.BrickColor = BrickColor.new("Hot pink")
  5402. end
  5403.  
  5404. out.CanCollide = false
  5405. out.FormFactor = 3
  5406. out.Name = "Out"
  5407. out.Size = Vector3.new(4, 4, 4)
  5408. out.Transparency = 0.35
  5409. out.TopSurface = 0
  5410. out.BottomSurface = 0
  5411. local outm = Instance.new("SpecialMesh", out)
  5412. outm.MeshId = "http://www.roblox.com/asset/?id=1033714"
  5413. outm.Scale = Vector3.new(6, 4, 6)
  5414. local bnd = Instance.new("Part", larm)
  5415. bnd.Anchored = true
  5416. bnd.BrickColor = BrickColor.new("Really red")
  5417. bnd.CanCollide = false
  5418. bnd.FormFactor = 3
  5419. bnd.Name = "Bend"
  5420. bnd.Size = Vector3.new(1, 1, 1)
  5421. bnd.Transparency = 1
  5422. bnd.TopSurface = 0
  5423. bnd.BottomSurface = 0
  5424. local bndm = Instance.new("SpecialMesh", bnd)
  5425. bndm.MeshType = 3
  5426. bndm.Scale = Vector3.new(8, 8, 8)
  5427. out.CFrame = larm.CFrame * CFrame.new(0, -2.7, 0)
  5428. bem.CFrame = out.CFrame * CFrame.new(0, -2.5, 0) * CFrame.Angles(0, 0, math.rad(90))
  5429. bnd.CFrame = bem.CFrame * CFrame.new(0, 0, 0)
  5430. rng.CFrame = out.CFrame * CFrame.Angles(math.rad(90), 0, 0)
  5431. rng3.CFrame = rng.CFrame * CFrame.new(0, -.5, 0)
  5432. rng4.CFrame = rng.CFrame * CFrame.new(0, -1, 0)
  5433. Debounces.Shewt = true
  5434. coroutine.wrap(function()
  5435. for i = 1, 20, 0.2 do
  5436. rngm.Scale = Vector3.new(10 + i*2, 10 + i*2, 1)
  5437. rngm3.Scale = Vector3.new(8 + i*3, 8 + i*3, 1)
  5438. rngm4.Scale = Vector3.new(6 + i*4, 6 + i*4, 1)
  5439. rng.Transparency = i/20
  5440. rng3.Transparency = 1/24
  5441. rng4.Transparency = i/26
  5442. wait()
  5443. end
  5444. wait()
  5445. rng:Destroy()
  5446. end)()
  5447. if Debounces.Shewt == true then
  5448. larm:WaitForChild("Beam" .. shot).Touched:connect(function(ht)
  5449. hit = ht.Parent
  5450. if hit:IsA("Model") and hit:findFirstChild("Humanoid") then
  5451. if HasntTouched(hit.Name) == true and deb == false then
  5452. deb = true
  5453. coroutine.wrap(function()
  5454. hit:FindFirstChild("Humanoid").PlatformStand = true
  5455. hit:FindFirstChild("Torso").Velocity = char.Head.CFrame.lookVector * 180
  5456. hit:FindFirstChild("Humanoid"):TakeDamage(math.random(998,999))
  5457. end)()
  5458. table.insert(Touche, hit.Name)
  5459. deb = false
  5460. end
  5461. elseif hit:IsA("Hat") and hit.Parent:findFirstChild("Humanoid") then
  5462. if HasntTouched(hit.Parent.Name) == true and deb == false then
  5463. deb = true
  5464. coroutine.wrap(function()
  5465. hit.Parent:FindFirstChild("Humanoid").PlatformStand = false
  5466. hit.Parent:FindFirstChild("Torso").Velocity = char.Head.CFrame.lookVector * 180
  5467. wait(1)
  5468. hit.Parent:FindFirstChild("Humanoid").PlatformStand = false
  5469. end)()
  5470. table.insert(Touche, hit.Parent.Name)
  5471. deb = false
  5472. for i, v in pairs(Touche) do
  5473. print(v)
  5474. end
  5475. end
  5476. end
  5477. end)
  5478. end
  5479. for i = 0, 260, 8 do
  5480. bem.Size = Vector3.new(i, 3, 3)
  5481. out.CFrame = larm.CFrame * CFrame.new(0, -2.7, 0)
  5482. bem.CFrame = larm.CFrame * CFrame.new(0, -4.2 -(i/2), 0) * CFrame.Angles(0, 0, math.rad(90))
  5483. bnd.CFrame = bem.CFrame * CFrame.new(-i/2, 0, 1.2)
  5484. bnd.Size = Vector3.new(1,1,1)
  5485. bndm.Scale = Vector3.new(8,8,8)
  5486. if i % 10 == 0 then
  5487. local newRng = rng2:Clone()
  5488. newRng.Parent = larm
  5489. newRng.CFrame = larm.CFrame * CFrame.new(0, -4.2-i, 0) * CFrame.Angles(math.rad(90), 0, 0)
  5490. local newRngm = rngm2:clone()
  5491. newRngm.Parent=newRng
  5492. coroutine.wrap(function()
  5493. for i = 1, 10, 0.2 do
  5494. newRngm.Scale = Vector3.new(8 + i*2, 8 + i*2, 3)
  5495. newRng.Transparency = i/10
  5496. wait()
  5497. end
  5498. wait()
  5499. newRng:Destroy()
  5500. end)()
  5501. end
  5502. wait()
  5503. end
  5504. wait()
  5505. Debounces.Shewt = false
  5506. bem:Destroy()
  5507. out:Destroy()
  5508. bnd:Destroy()
  5509. Debounces.Ready = false
  5510. for i, v in pairs(Touche) do
  5511. table.remove(Touche, i)
  5512. end
  5513. wait()
  5514. table.insert(Touche, char.Name)
  5515. Debounces.NoIdl = false
  5516. if Debounces.CanAttack == false then
  5517. Debounces.CanAttack = true
  5518. animpose = "Idle1"
  5519. end
  5520. end
  5521. end
  5522. end)
  5523.  
  5524. ---------------------------------------------
  5525.  
  5526.  
  5527. --newcape
  5528.  
  5529. local verlet = {}
  5530. verlet.step_time = 1 / 50
  5531. verlet.gravity = Vector3.new(0, -150, 0) --//
  5532.  
  5533. local char = game.Players.LocalPlayer.Character
  5534. local torso = game.Workspace[game.Players.LocalPlayer.Name].Torso
  5535. local parts = {}
  5536. local render = game:GetService("RunService").RenderStepped
  5537.  
  5538. wait()
  5539.  
  5540. local point = {}
  5541. local link = {}
  5542. local rope = {}
  5543.  
  5544. local function ccw(A,B,C)
  5545. return (C.y-A.y) * (B.x-A.x) > (B.y-A.y) * (C.x-A.x)
  5546. end
  5547.  
  5548. local function intersect(A,B,C,D)
  5549. return ccw(A,C,D) ~= ccw(B,C,D) and ccw(A,B,C) ~= ccw(A,B,D)
  5550. end
  5551.  
  5552. local function vec2(v)
  5553. return Vector2.new(v.x, v.z)
  5554. end
  5555.  
  5556. function point:step()
  5557. if not self.fixed then
  5558. local derivative = (self.position - self.last_position) * 0.95
  5559. self.last_position = self.position
  5560. self.position = self.position + derivative + ((verlet.gravity + (torso.CFrame.lookVector * -90)) * verlet.step_time ^ 2) --//
  5561. --[[local torsoP = torso.CFrame * CFrame.new(-1, 0, 0.5)
  5562. local torsoE = torso.CFrame * CFrame.new(1, 0, 0.5)
  5563. local pointE = self.position + torso.CFrame.lookVector * 100
  5564. local doIntersect = intersect(vec2(torsoP.p), vec2(torsoE.p), vec2(self.position), vec2(pointE))
  5565. if not doIntersect then
  5566. self.postition = self.position - torso.CFrame.lookVector * 10
  5567. end]]
  5568. end
  5569. end
  5570.  
  5571. function link:step()
  5572. for i = 1, 1 do
  5573. local distance = self.point1.position - self.point2.position
  5574. local magnitude = distance.magnitude
  5575. local differance = (self.length - magnitude) / magnitude
  5576. local translation = ((self.point1.fixed or self.point2.fixed) and 1 or 0.6) * distance * differance
  5577. if not self.point1.fixed then
  5578. self.point1.position = self.point1.position + translation
  5579. end
  5580. if not self.point2.fixed then
  5581. self.point2.position = self.point2.position - translation
  5582. end
  5583. end
  5584. end
  5585.  
  5586. function verlet.new(class, a, b, c)
  5587. if class == "Point" then
  5588. local new = {}
  5589. setmetatable(new, {__index = point})
  5590. new.class = class
  5591. new.position = a or Vector3.new()
  5592. new.last_position = new.position
  5593. new.velocity = verlet.gravity
  5594. new.fixed = false
  5595. return new
  5596. elseif class == "Link" then
  5597. local new = {}
  5598. setmetatable(new, {__index = link})
  5599. new.class = class
  5600. new.point1 = a
  5601. new.point2 = b
  5602. new.length = c or (a.position - b.position).magnitude
  5603. return new
  5604. elseif class == "Rope" then
  5605. local new = {}
  5606. setmetatable(new, {__index = link})
  5607. new.class = class
  5608. new.start_point = a
  5609. new.finish_point = b
  5610. new.points = {}
  5611. new.links = {}
  5612. local inc = (b - a) / 10
  5613. for i = 0, 10 do
  5614. table.insert(new.points, verlet.new("Point", a + (i * inc)))
  5615. end
  5616. for i = 2, #new.points do
  5617. table.insert(new.links, verlet.new("Link", new.points[i - 1], new.points[i]))
  5618. end
  5619. return new
  5620. end
  5621. end
  5622.  
  5623. local tris = {}
  5624. local triParts = {}
  5625.  
  5626. local function GetDiscoColor(hue)
  5627. local section = hue % 1 * 3
  5628. local secondary = 0.5 * math.pi * (section % 1)
  5629. if section < 1 then
  5630. return Color3.new(1, 1 - math.cos(secondary), 1 - math.sin(secondary))
  5631. elseif section < 2 then
  5632. return Color3.new(1 - math.sin(secondary), 1, 1 - math.cos(secondary))
  5633. else
  5634. return Color3.new(1 - math.cos(secondary), 1 - math.sin(secondary), 1)
  5635. end
  5636. end
  5637.  
  5638. local function setupPart(part)
  5639. part.Anchored = true
  5640. part.FormFactor = 3
  5641. part.CanCollide = false
  5642. part.TopSurface = 10
  5643. part.BottomSurface = 10
  5644. part.LeftSurface = 10
  5645. part.RightSurface = 10
  5646. part.FrontSurface = 10
  5647. part.BackSurface = 10
  5648. part.Material = "Neon"
  5649. local m = Instance.new("SpecialMesh", part)
  5650. m.MeshType = "Wedge"
  5651. m.Scale = Vector3.new(0.2, 1, 1)
  5652. return part
  5653. end
  5654.  
  5655. local function CFrameFromTopBack(at, top, back)
  5656. local right = top:Cross(back)
  5657. 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)
  5658. end
  5659.  
  5660. local function drawTri(parent, a, b, c)
  5661. local this = {}
  5662. local mPart1 = table.remove(triParts, 1) or setupPart(Instance.new("Part"))
  5663. local mPart2 = table.remove(triParts, 1) or setupPart(Instance.new("Part"))
  5664. function this:Set(a, b, c)
  5665. local ab, bc, ca = b-a, c-b, a-c
  5666. local abm, bcm, cam = ab.magnitude, bc.magnitude, ca.magnitude
  5667. local edg1 = math.abs(0.5 + ca:Dot(ab)/(abm*abm))
  5668. local edg2 = math.abs(0.5 + ab:Dot(bc)/(bcm*bcm))
  5669. local edg3 = math.abs(0.5 + bc:Dot(ca)/(cam*cam))
  5670. if edg1 < edg2 then
  5671. if edg1 >= edg3 then
  5672. a, b, c = c, a, b
  5673. ab, bc, ca = ca, ab, bc
  5674. abm = cam
  5675. end
  5676. else
  5677. if edg2 < edg3 then
  5678. a, b, c = b, c, a
  5679. ab, bc, ca = bc, ca, ab
  5680. abm = bcm
  5681. else
  5682. a, b, c = c, a, b
  5683. ab, bc, ca = ca, ab, bc
  5684. abm = cam
  5685. end
  5686. end
  5687.  
  5688. local len1 = -ca:Dot(ab)/abm
  5689. local len2 = abm - len1
  5690. local width = (ca + ab.unit*len1).magnitude
  5691.  
  5692. local maincf = CFrameFromTopBack(a, ab:Cross(bc).unit, -ab.unit)
  5693.  
  5694. if len1 > 0.2 then
  5695. mPart1.Parent = parent
  5696. mPart1.Size = Vector3.new(0.2, width, len1)
  5697. mPart1.CFrame = maincf*CFrame.Angles(math.pi,0,math.pi/2)*CFrame.new(0,width/2,len1/2)
  5698. else
  5699. mPart1.Parent = nil
  5700. end
  5701.  
  5702. if len2 > 0.2 then
  5703. mPart2.Parent = parent
  5704. mPart2.Size = Vector3.new(0.2, width, len2)
  5705. mPart2.CFrame = maincf*CFrame.Angles(math.pi,math.pi,-math.pi/2)*CFrame.new(0,width/2,-len1 - len2/2)
  5706. else
  5707. mPart2.Parent = nil
  5708. end
  5709. end
  5710. function this:SetProperty(prop, value)
  5711. mPart1[prop] = value
  5712. mPart2[prop] = value
  5713. end
  5714. this:Set(a, b, c)
  5715. function this:Destroy()
  5716. mPart1:Destroy()
  5717. mPart2:Destroy()
  5718. end
  5719. this.p1 = mPart1
  5720. this.p2 = mPart2
  5721. this.p1.BrickColor = BrickColor.new "Hot pink"
  5722. this.p2.BrickColor = BrickColor.new "Hot pink"
  5723. return this
  5724. end
  5725.  
  5726. function verlet.draw(object, id)
  5727. if object.class == "Point" then
  5728. local part = parts[id]
  5729. part.BrickColor = BrickColor.new(1, 1, 1)
  5730. part.Transparency = 0
  5731. part.formFactor = 3
  5732. part.Anchored = true
  5733. part.CanCollide = false
  5734. part.TopSurface = 0
  5735. part.BottomSurface = 0
  5736. part.Size = Vector3.new(0.35, 0.35, 0.35)
  5737. part.Material = "Neon"
  5738. part.CFrame = CFrame.new(object.position)
  5739. part.Parent = torso
  5740. return part
  5741. elseif object.class == "Link" then
  5742. local part = parts[id]
  5743. local dist = (object.point1.position - object.point2.position).magnitude
  5744. part.Size = Vector3.new(0.2, 0.2, dist)
  5745. part.CFrame = CFrame.new(object.point1.position, object.point2.position) * CFrame.new(0, 0, dist * -0.5)
  5746. part.Parent = torso
  5747. return part
  5748. end
  5749. end
  5750.  
  5751. function verlet.clear()
  5752. for _, v in pairs(workspace:GetChildren()) do
  5753. if v.Name == "Part" then
  5754. v:Destroy()
  5755. end
  5756. end
  5757. end
  5758.  
  5759. local points = {}
  5760. local links = {}
  5761.  
  5762. for x = 0, 2 do
  5763. points[x] = {}
  5764. for y = 0, 3 do
  5765. points[x][y] = verlet.new("Point", torso.Position + Vector3.new(x * 0.8 - 2, 2 - y * 0.8, 5 + y * 0.4))
  5766. points[x][y].fixed = y == 0
  5767. end
  5768. end
  5769.  
  5770. for x = 1, 2 do
  5771. for y = 0, 3 do
  5772. links[#links + 1] = verlet.new("Link", points[x][y], points[x - 1][y], 1 + y * 0.08)
  5773. end
  5774. end
  5775.  
  5776. for x = 0, 2 do
  5777. for y = 1, 3 do
  5778. links[#links + 1] = verlet.new("Link", points[x][y], points[x][y - 1], 1.2 + y * 0.03)
  5779. end
  5780. end
  5781.  
  5782. render:connect(function()
  5783. for x = 0, 2 do
  5784. for y = 0, 3 do
  5785. if y == 0 then
  5786. points[x][y].position = (torso.CFrame * CFrame.new(x * 1 - 1, 1, 0.5)).p
  5787. else
  5788. points[x][y]:step()
  5789. end
  5790. end
  5791. end
  5792. for i = 1, #links do
  5793. links[i]:step()
  5794. end
  5795. for i = 1, #tris do
  5796. triParts[#triParts + 1] = tris[i].p1
  5797. triParts[#triParts + 1] = tris[i].p2
  5798. end
  5799. tris = {}
  5800. for x = 1, 2 do
  5801. for y = 1, 3 do
  5802. tris[#tris + 1] = drawTri(torso, points[x - 1][y - 1].position, points[x - 1][y].position, points[x][y - 1].position)
  5803. tris[#tris + 1] = drawTri(torso, points[x][y].position, points[x - 1][y].position, points[x][y - 1].position)
  5804. end
  5805. end
  5806. end)
  5807.  
  5808.  
  5809. local cor6 = Instance.new("Part", torso.Cloak)
  5810. cor6.Name = "Thingy"
  5811. cor6.Locked = true
  5812. cor6.BottomSurface = 0
  5813. cor6.CanCollide = false
  5814. cor6.Size = Vector3.new(1,1,1)
  5815. cor6.Transparency = 1
  5816. cor6.TopSurface = 0
  5817. corw6 = Instance.new("Weld", cor6)
  5818. corw6.Part0 = torso
  5819. corw6.Part1 = cor6
  5820. corw6.C0 = CFrame.new(0, 1, 0.5) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  5821. corw6.C1 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  5822. weld6 = Instance.new("Weld", torso.Cloak.NeckPart)
  5823. weld6.Part0 = cor6
  5824. weld6.Part1 = torso.Cloak.NeckPart
  5825. weld6.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  5826. --Amulet
  5827. m7 = Instance.new("Model")
  5828. m7.Name = "Amulet"
  5829. p1 = Instance.new("Part", m7)
  5830. p1.BrickColor = BrickColor.new("Hot pink")
  5831. p1.Material = Enum.Material.Neon
  5832. p1.Name = "Center"
  5833. p1.CFrame = CFrame.new(-1.0658141e-014, 14.4125643, 0, -4.37113883e-008, -1, 0, 1, -4.37113883e-008, 0, 0, 0, 1)
  5834. p1.CanCollide = false
  5835. p1.Locked = true
  5836. p1.FormFactor = Enum.FormFactor.Custom
  5837. p1.Shape = Enum.PartType.Cylinder
  5838. p1.Size = Vector3.new(0.5, 0.5, 0.5)
  5839. p1.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5840. p1.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5841. p1.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5842. p1.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5843. p1.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5844. p1.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5845. p2 = Instance.new("Part", m7)
  5846. p2.BrickColor = BrickColor.new("Carnation pink")
  5847. p2.Material = Enum.Material.Metal
  5848. p2.Name = "Bottom"
  5849. p2.CFrame = CFrame.new(1.19209318e-007, 14.1625719, 0, -4.37113883e-008, -1, 0, 1, -4.37113883e-008, 0, 0, 0, 1)
  5850. p2.CanCollide = false
  5851. p2.Locked = true
  5852. p2.FormFactor = Enum.FormFactor.Custom
  5853. p2.Size = Vector3.new(0.200000003, 0.649999976, 0.649999976)
  5854. p2.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5855. p2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5856. p2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5857. p2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5858. p2.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5859. p2.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5860. b1 = Instance.new("SpecialMesh", p2)
  5861. b1.MeshType = Enum.MeshType.Cylinder
  5862. b1.Name = "Mesh"
  5863. p3 = Instance.new("Part", m7)
  5864. p3.BrickColor = BrickColor.new("Carnation pink")
  5865. p3.Material = Enum.Material.Metal
  5866. p3.CFrame = CFrame.new(1.23580463e-007, 14.4625673, -0.280000001, -4.37113883e-008, -1, 0, 1, -4.37113883e-008, 0, 0, 0, 1)
  5867. p3.CanCollide = false
  5868. p3.Locked = true
  5869. p3.FormFactor = Enum.FormFactor.Custom
  5870. p3.Size = Vector3.new(0.400000006, 0.200000003, 0.200000003)
  5871. p3.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5872. p3.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5873. p3.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5874. p3.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5875. p3.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5876. p3.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5877. b2 = Instance.new("SpecialMesh", p3)
  5878. b2.MeshType = Enum.MeshType.Brick
  5879. b2.Name = "Mesh"
  5880. b2.Scale = Vector3.new(1, 0.300000012, 0.200000003)
  5881. p4 = Instance.new("Part", m7)
  5882. p4.BrickColor = BrickColor.new("Carnation pink")
  5883. p4.Material = Enum.Material.Metal
  5884. p4.CFrame = CFrame.new(1.19209318e-007, 14.4625673, 0.280000001, -4.37113883e-008, -1, 0, 1, -4.37113883e-008, 0, 0, 0, 1)
  5885. p4.CanCollide = false
  5886. p4.Locked = true
  5887. p4.FormFactor = Enum.FormFactor.Custom
  5888. p4.Size = Vector3.new(0.400000006, 0.200000003, 0.200000003)
  5889. p4.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5890. p4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5891. p4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5892. p4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5893. p4.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5894. p4.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5895. b3 = Instance.new("SpecialMesh", p4)
  5896. b3.MeshType = Enum.MeshType.Brick
  5897. b3.Name = "Mesh"
  5898. b3.Scale = Vector3.new(1, 0.300000012, 0.200000003)
  5899. p5 = Instance.new("Part", m7)
  5900. p5.BrickColor = BrickColor.new("Carnation pink")
  5901. p5.Material = Enum.Material.Metal
  5902. p5.CFrame = CFrame.new(0.14000012, 14.4625673, -0.242487118, -3.78551732e-008, -0.866025388, -0.5, 1, -4.37113883e-008, 0, -2.18556941e-008, -0.5, 0.866025388)
  5903. p5.CanCollide = false
  5904. p5.Locked = true
  5905. p5.FormFactor = Enum.FormFactor.Custom
  5906. p5.Size = Vector3.new(0.400000006, 0.200000003, 0.200000003)
  5907. p5.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5908. p5.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5909. p5.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5910. p5.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5911. p5.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5912. p5.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5913. b4 = Instance.new("SpecialMesh", p5)
  5914. b4.MeshType = Enum.MeshType.Brick
  5915. b4.Name = "Mesh"
  5916. b4.Scale = Vector3.new(1, 0.300000012, 0.200000003)
  5917. p6 = Instance.new("Part", m7)
  5918. p6.BrickColor = BrickColor.new("Carnation pink")
  5919. p6.Material = Enum.Material.Metal
  5920. p6.CFrame = CFrame.new(-0.139999881, 14.4625673, 0.242487103, -3.78551732e-008, -0.866025388, -0.5, 1, -4.37113883e-008, 0, -2.18556941e-008, -0.5, 0.866025388)
  5921. p6.CanCollide = false
  5922. p6.Locked = true
  5923. p6.FormFactor = Enum.FormFactor.Custom
  5924. p6.Size = Vector3.new(0.400000006, 0.200000003, 0.200000003)
  5925. p6.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5926. p6.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5927. p6.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5928. p6.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5929. p6.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5930. p6.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5931. b5 = Instance.new("SpecialMesh", p6)
  5932. b5.MeshType = Enum.MeshType.Brick
  5933. b5.Name = "Mesh"
  5934. b5.Scale = Vector3.new(1, 0.300000012, 0.200000003)
  5935. p7 = Instance.new("Part", m7)
  5936. p7.BrickColor = BrickColor.new("Carnation pink")
  5937. p7.Material = Enum.Material.Metal
  5938. p7.CFrame = CFrame.new(-0.242486984, 14.4625673, 0.139999986, -2.18556924e-008, -0.5, -0.866025388, 1, -4.37113847e-008, 0, -3.78551732e-008, -0.866025388, 0.5)
  5939. p7.CanCollide = false
  5940. p7.Locked = true
  5941. p7.FormFactor = Enum.FormFactor.Custom
  5942. p7.Size = Vector3.new(0.400000006, 0.200000003, 0.200000003)
  5943. p7.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5944. p7.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5945. p7.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5946. p7.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5947. p7.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5948. p7.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5949. b6 = Instance.new("SpecialMesh", p7)
  5950. b6.MeshType = Enum.MeshType.Brick
  5951. b6.Name = "Mesh"
  5952. b6.Scale = Vector3.new(1, 0.300000012, 0.200000003)
  5953. p8 = Instance.new("Part", m7)
  5954. p8.BrickColor = BrickColor.new("Carnation pink")
  5955. p8.Material = Enum.Material.Metal
  5956. p8.CFrame = CFrame.new(0.242487192, 14.4625673, -0.139999971, -2.18556924e-008, -0.5, -0.866025388, 1, -4.37113847e-008, 0, -3.78551732e-008, -0.866025388, 0.5)
  5957. p8.CanCollide = false
  5958. p8.Locked = true
  5959. p8.FormFactor = Enum.FormFactor.Custom
  5960. p8.Size = Vector3.new(0.400000006, 0.200000003, 0.200000003)
  5961. p8.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5962. p8.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5963. p8.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5964. p8.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5965. p8.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5966. p8.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5967. b7 = Instance.new("SpecialMesh", p8)
  5968. b7.MeshType = Enum.MeshType.Brick
  5969. b7.Name = "Mesh"
  5970. b7.Scale = Vector3.new(1, 0.300000012, 0.200000003)
  5971. p9 = Instance.new("Part", m7)
  5972. p9.BrickColor = BrickColor.new("Carnation pink")
  5973. p9.Material = Enum.Material.Metal
  5974. p9.CFrame = CFrame.new(0.280000091, 14.4625673, -1.64313008e-014, 0, 0, -1, 1, -4.37113847e-008, 0, -4.37113847e-008, -1, 0)
  5975. p9.CanCollide = false
  5976. p9.Locked = true
  5977. p9.FormFactor = Enum.FormFactor.Custom
  5978. p9.Size = Vector3.new(0.400000006, 0.200000003, 0.200000003)
  5979. p9.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5980. p9.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5981. p9.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5982. p9.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5983. p9.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5984. p9.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5985. b8 = Instance.new("SpecialMesh", p9)
  5986. b8.MeshType = Enum.MeshType.Brick
  5987. b8.Name = "Mesh"
  5988. b8.Scale = Vector3.new(1, 0.300000012, 0.200000003)
  5989. p10 = Instance.new("Part", m7)
  5990. p10.BrickColor = BrickColor.new("Carnation pink")
  5991. p10.Material = Enum.Material.Metal
  5992. p10.CFrame = CFrame.new(-0.279999852, 14.4625673, -1.49011772e-008, 0, 0, -1, 1, -4.37113847e-008, 0, -4.37113847e-008, -1, 0)
  5993. p10.CanCollide = false
  5994. p10.Locked = true
  5995. p10.FormFactor = Enum.FormFactor.Custom
  5996. p10.Size = Vector3.new(0.400000006, 0.200000003, 0.200000003)
  5997. p10.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5998. p10.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5999. p10.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6000. p10.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6001. p10.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6002. p10.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6003. b9 = Instance.new("SpecialMesh", p10)
  6004. b9.MeshType = Enum.MeshType.Brick
  6005. b9.Name = "Mesh"
  6006. b9.Scale = Vector3.new(1, 0.300000012, 0.200000003)
  6007. p11 = Instance.new("Part", m7)
  6008. p11.BrickColor = BrickColor.new("Carnation pink")
  6009. p11.Material = Enum.Material.Metal
  6010. p11.CFrame = CFrame.new(-0.242486984, 14.4625673, -0.139999986, 2.18556906e-008, 0.5, -0.866025388, 1, -4.37113847e-008, 0, -3.78551697e-008, -0.866025388, -0.5)
  6011. p11.CanCollide = false
  6012. p11.Locked = true
  6013. p11.FormFactor = Enum.FormFactor.Custom
  6014. p11.Size = Vector3.new(0.400000006, 0.200000003, 0.200000003)
  6015. p11.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6016. p11.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6017. p11.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6018. p11.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6019. p11.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6020. p11.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6021. b10 = Instance.new("SpecialMesh", p11)
  6022. b10.MeshType = Enum.MeshType.Brick
  6023. b10.Name = "Mesh"
  6024. b10.Scale = Vector3.new(1, 0.300000012, 0.200000003)
  6025. p12 = Instance.new("Part", m7)
  6026. p12.BrickColor = BrickColor.new("Carnation pink")
  6027. p12.Material = Enum.Material.Metal
  6028. p12.CFrame = CFrame.new(0.242487192, 14.4625673, 0.139999971, 2.18556906e-008, 0.5, -0.866025388, 1, -4.37113847e-008, 0, -3.78551697e-008, -0.866025388, -0.5)
  6029. p12.CanCollide = false
  6030. p12.Locked = true
  6031. p12.FormFactor = Enum.FormFactor.Custom
  6032. p12.Size = Vector3.new(0.400000006, 0.200000003, 0.200000003)
  6033. p12.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6034. p12.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6035. p12.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6036. p12.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6037. p12.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6038. p12.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6039. b11 = Instance.new("SpecialMesh", p12)
  6040. b11.MeshType = Enum.MeshType.Brick
  6041. b11.Name = "Mesh"
  6042. b11.Scale = Vector3.new(1, 0.300000012, 0.200000003)
  6043. p13 = Instance.new("Part", m7)
  6044. p13.BrickColor = BrickColor.new("Carnation pink")
  6045. p13.Material = Enum.Material.Metal
  6046. p13.CFrame = CFrame.new(-0.139999866, 14.4625673, -0.242487073, 3.78551732e-008, 0.866025388, -0.5, 1, -4.37113812e-008, 1.77635684e-015, -2.18556924e-008, -0.5, -0.866025388)
  6047. p13.CanCollide = false
  6048. p13.Locked = true
  6049. p13.FormFactor = Enum.FormFactor.Custom
  6050. p13.Size = Vector3.new(0.400000006, 0.200000003, 0.200000003)
  6051. p13.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6052. p13.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6053. p13.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6054. p13.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6055. p13.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6056. p13.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6057. b12 = Instance.new("SpecialMesh", p13)
  6058. b12.MeshType = Enum.MeshType.Brick
  6059. b12.Name = "Mesh"
  6060. b12.Scale = Vector3.new(1, 0.300000012, 0.200000003)
  6061. p14 = Instance.new("Part", m7)
  6062. p14.BrickColor = BrickColor.new("Carnation pink")
  6063. p14.Material = Enum.Material.Metal
  6064. p14.CFrame = CFrame.new(0.14000012, 14.4625673, 0.242487073, 3.78551732e-008, 0.866025388, -0.5, 1, -4.37113812e-008, 1.77635684e-015, -2.18556924e-008, -0.5, -0.866025388)
  6065. p14.CanCollide = false
  6066. p14.Locked = true
  6067. p14.FormFactor = Enum.FormFactor.Custom
  6068. p14.Size = Vector3.new(0.400000006, 0.200000003, 0.200000003)
  6069. p14.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6070. p14.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6071. p14.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6072. p14.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6073. p14.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6074. p14.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6075. b13 = Instance.new("SpecialMesh", p14)
  6076. b13.MeshType = Enum.MeshType.Brick
  6077. b13.Name = "Mesh"
  6078. b13.Scale = Vector3.new(1, 0.300000012, 0.200000003)
  6079. p15 = Instance.new("Part", m7)
  6080. p15.BrickColor = BrickColor.new("Carnation pink")
  6081. p15.Material = Enum.Material.Metal
  6082. p15.Name = "Top"
  6083. p15.CFrame = CFrame.new(0, 14.7125645, 0, -4.37113883e-008, -1, 0, 1, -4.37113883e-008, 0, 0, 0, 1)
  6084. p15.CanCollide = false
  6085. p15.Locked = true
  6086. p15.FormFactor = Enum.FormFactor.Custom
  6087. p15.Size = Vector3.new(0.200000003, 0.649999976, 0.649999976)
  6088. p15.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6089. p15.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6090. p15.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6091. p15.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6092. p15.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6093. p15.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6094. b14 = Instance.new("SpecialMesh", p15)
  6095. b14.MeshType = Enum.MeshType.Cylinder
  6096. b14.Name = "Mesh"
  6097. w1 = Instance.new("Weld", p1)
  6098. w1.Name = "Joint"
  6099. w1.Part0 = p1
  6100. w1.C0 = CFrame.new(0.300000191, -1.31134357e-008, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  6101. w1.Part1 = p15
  6102. w1.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  6103. w2 = Instance.new("Weld", p2)
  6104. w2.Name = "Joint"
  6105. w2.Part0 = p2
  6106. w2.C0 = CFrame.new(0.249992371, 1.08281824e-007, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  6107. w2.Part1 = p1
  6108. w2.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  6109. w3 = Instance.new("Weld", p3)
  6110. w3.Name = "Joint"
  6111. w3.Part0 = p3
  6112. w3.C0 = CFrame.new(-0.0500030518, 1.25766178e-007, 0.280000001, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  6113. w3.Part1 = p1
  6114. w3.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  6115. w4 = Instance.new("Weld", p4)
  6116. w4.Name = "Joint"
  6117. w4.Part0 = p4
  6118. w4.C0 = CFrame.new(-0.0500030518, 1.21395033e-007, -0.280000001, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  6119. w4.Part1 = p1
  6120. w4.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  6121. w5 = Instance.new("Weld", p5)
  6122. w5.Name = "Joint"
  6123. w5.Part0 = p5
  6124. w5.C0 = CFrame.new(-0.0500030518, 1.00163732e-007, 0.280000061, 1, -5.85621507e-009, -2.18556941e-008, -5.85621507e-009, 0.866025388, -0.5, 2.18556941e-008, 0.5, 0.866025388)
  6125. w5.Part1 = p1
  6126. w5.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  6127. w6 = Instance.new("Weld", p6)
  6128. w6.Name = "Joint"
  6129. w6.Part0 = p6
  6130. w6.C0 = CFrame.new(-0.0500030518, 1.00163732e-007, -0.279999942, 1, -5.85621507e-009, -2.18556941e-008, -5.85621507e-009, 0.866025388, -0.5, 2.18556941e-008, 0.5, 0.866025388)
  6131. w6.Part1 = p1
  6132. w6.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  6133. w7 = Instance.new("Weld", p7)
  6134. w7.Name = "Joint"
  6135. w7.Part0 = p7
  6136. w7.C0 = CFrame.new(-0.0500030518, 5.54602479e-008, -0.279999882, 1, -2.18556959e-008, -3.78551732e-008, -2.18556906e-008, 0.5, -0.866025388, 3.78551732e-008, 0.866025388, 0.5)
  6137. w7.Part1 = p1
  6138. w7.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  6139. w8 = Instance.new("Weld", p8)
  6140. w8.Name = "Joint"
  6141. w8.Part0 = p8
  6142. w8.C0 = CFrame.new(-0.0500030518, 7.03614091e-008, 0.280000061, 1, -2.18556959e-008, -3.78551732e-008, -2.18556906e-008, 0.5, -0.866025388, 3.78551732e-008, 0.866025388, 0.5)
  6143. w8.Part1 = p1
  6144. w8.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  6145. w9 = Instance.new("Weld", p9)
  6146. w9.Name = "Joint"
  6147. w9.Part0 = p9
  6148. w9.C0 = CFrame.new(-0.0500030518, 2.1856863e-009, 0.280000091, 1, -4.37113883e-008, -4.37113847e-008, -4.37113847e-008, 1.91068525e-015, -1, 4.37113883e-008, 1, 0)
  6149. w9.Part1 = p1
  6150. w9.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  6151. w10 = Instance.new("Weld", p10)
  6152. w10.Name = "Joint"
  6153. w10.Part0 = p10
  6154. w10.C0 = CFrame.new(-0.0500030518, -1.27154749e-008, -0.279999852, 1, -4.37113883e-008, -4.37113847e-008, -4.37113847e-008, 1.91068525e-015, -1, 4.37113883e-008, 1, 0)
  6155. w10.Part1 = p1
  6156. w10.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  6157. w11 = Instance.new("Weld", p11)
  6158. w11.Name = "Joint"
  6159. w11.Part0 = p11
  6160. w11.C0 = CFrame.new(-0.0500030518, -5.6298461e-008, -0.279999882, 1, -6.55670789e-008, -3.78551697e-008, -6.55670789e-008, -0.5, -0.866025388, 3.78551732e-008, 0.866025388, -0.5)
  6161. w11.Part1 = p1
  6162. w11.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  6163. w12 = Instance.new("Weld", p12)
  6164. w12.Name = "Joint"
  6165. w12.Part0 = p12
  6166. w12.C0 = CFrame.new(-0.0500030518, -6.37490416e-008, 0.280000061, 1, -6.55670789e-008, -3.78551697e-008, -6.55670789e-008, -0.5, -0.866025388, 3.78551732e-008, 0.866025388, -0.5)
  6167. w12.Part1 = p1
  6168. w12.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  6169. w13 = Instance.new("Weld", p13)
  6170. w13.Name = "Joint"
  6171. w13.Part0 = p13
  6172. w13.C0 = CFrame.new(-0.0500030518, -1.01001945e-007, -0.279999912, 1, -8.15665615e-008, -2.18556924e-008, -8.15665544e-008, -0.866025388, -0.5, 2.18556959e-008, 0.5, -0.866025388)
  6173. w13.Part1 = p1
  6174. w13.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  6175. w14 = Instance.new("Weld", p14)
  6176. w14.Name = "Joint"
  6177. w14.Part0 = p14
  6178. w14.C0 = CFrame.new(-0.0500030518, -1.08452525e-007, 0.280000031, 1, -8.15665615e-008, -2.18556924e-008, -8.15665544e-008, -0.866025388, -0.5, 2.18556959e-008, 0.5, -0.866025388)
  6179. w14.Part1 = p1
  6180. w14.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  6181. m7.Parent = torso
  6182. m7:MakeJoints()
  6183. ----------------------------------------------------
  6184. local cor7 = Instance.new("Part", torso.Amulet)
  6185. cor7.Name = "Thingy"
  6186. cor7.Locked = true
  6187. cor7.BottomSurface = 0
  6188. cor7.CanCollide = false
  6189. cor7.Size = Vector3.new(1, 1, 1)
  6190. cor7.Transparency = 1
  6191. cor7.TopSurface = 0
  6192. corw7 = Instance.new("Weld", cor7)
  6193. corw7.Part0 = torso.Torso.Connection
  6194. corw7.Part1 = cor7
  6195. corw7.C0 = CFrame.new(0, 0.26, 0.1) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(0))
  6196. corw7.C1 = CFrame.new(0, -0.2, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(140))
  6197. weld7 = Instance.new("Weld", torso.Amulet)
  6198. weld7.Part0 = cor7
  6199. weld7.Part1 = torso.Amulet.Top
  6200. weld7.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  6201. --SWORD
  6202. Player=game:GetService("Players").LocalPlayer
  6203. Character=Player.Character
  6204. PlayerGui=Player.PlayerGui
  6205. Backpack=Player.Backpack
  6206. Torso=Character.Torso
  6207. Head=Character.Head
  6208. Humanoid=Character.Humanoid
  6209. m8=Instance.new('Model',Character)
  6210. LeftArm=Character["Left Arm"]
  6211. LeftLeg=Character["Left Leg"]
  6212. RightArm=Character["Right Arm"]
  6213. RightLeg=Character["Right Leg"]
  6214. it=Instance.new
  6215.  
  6216. Player=game:GetService('Players').LocalPlayer
  6217. Character=Player.Character
  6218. Mouse=Player:GetMouse()
  6219. m8=Instance.new('Model',Character)
  6220. it=Instance.new
  6221. function nooutline(part)
  6222. part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
  6223. end
  6224. function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
  6225. local fp=it("Part")
  6226. fp.formFactor=formfactor
  6227. fp.Parent=parent
  6228. fp.Reflectance=reflectance
  6229. fp.Transparency=transparency
  6230. fp.CanCollide=false
  6231. fp.Locked=true
  6232. fp.BrickColor=BrickColor.new(tostring(brickcolor))
  6233. fp.Name=name
  6234. fp.Size=size
  6235. fp.Position=Character.Torso.Position
  6236. nooutline(fp)
  6237. fp.Material=material
  6238. fp:BreakJoints()
  6239. return fp
  6240. end
  6241. function mesh(Mesh,part,meshtype,meshid,offset,scale)
  6242. local mesh=it(Mesh)
  6243. mesh.Parent=part
  6244. if Mesh=="SpecialMesh" then
  6245. mesh.MeshType=meshtype
  6246. mesh.MeshId=meshid
  6247. end
  6248. mesh.Offset=offset
  6249. mesh.Scale=scale
  6250. return mesh
  6251. end
  6252. function weld(parent,part0,part1,c0,c1)
  6253. local weld=it("Weld")
  6254. weld.Parent=parent
  6255. weld.Part0=part0
  6256. weld.Part1=part1
  6257. weld.C0=c0
  6258. weld.C1=c1
  6259. return weld
  6260. end
  6261.  
  6262.  
  6263. m8 = Instance.new("Model")
  6264. m8.Name = "Zyrodoxa"
  6265. Handle=part(Enum.FormFactor.Custom,m8,Enum.Material.Neon,0,0,"Hot pink","Handle",Vector3.new(0.275000006, 1.73512506, 0.280375004))
  6266. HandleWeld=weld(m8,Character["Right Arm"],Handle,CFrame.new(0, 0, 0, 1, -1.10559327e-007, 0, 1.10559313e-007, 0.999999881, -6.82671057e-008, 7.54756585e-015, 6.82671129e-008, 1),CFrame.new(-0.069039166, -0.113463402, 1.04289675, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007))
  6267. mesh("SpecialMesh",Handle,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.349999994, 1.04999995, 0.5))
  6268. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Metal,0,0,"Sunrise","Part",Vector3.new(0.275000006, 0.228, 0.213375002))
  6269. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(1.96695328e-006, 1.76659834, -0.297748327, 1, -1.86023797e-007, 5.96046519e-008, -5.96047443e-008, -4.97983308e-007, 1, -1.86023769e-007, -1, -4.97983308e-007))
  6270. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.569999993, 0.125, 0.375))
  6271. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Metal,0,0,"Sunrise","Part",Vector3.new(0.275000006, 0.214124978, 0.205375016))
  6272. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.90734863e-006, 1.86247182, 0.341249466, -1, 2.73445636e-007, -5.96046519e-008, -5.96047869e-008, -4.97983308e-007, 1, 2.73445607e-007, 1, 4.97983308e-007))
  6273. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.569999993, 0.75, 0.75))
  6274. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Metal,0,0,"Sunrise","Part",Vector3.new(0.275000006, 0.228, 0.213375002))
  6275. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.90734863e-006, 1.76659834, 0.369124293, -1, 2.73445636e-007, -5.96046519e-008, -5.96047869e-008, -4.97983308e-007, 1, 2.73445607e-007, 1, 4.97983308e-007))
  6276. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.569999993, 0.125, 0.375))
  6277. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Metal,0,0,"Sunrise","Part",Vector3.new(0.275000006, 0.252000004, 0.213375002))
  6278. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(1.78813934e-006, -1.95409656, 0.369124651, 1, -3.5029597e-008, -5.96046519e-008, -5.96046306e-008, 6.17193905e-007, -1, 3.50296325e-008, 1, 6.17193905e-007))
  6279. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.569999993, 0.125, 0.375))
  6280. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Metal,0,0,"Sunrise","Part",Vector3.new(0.275000006, 0.252000004, 0.213375002))
  6281. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-8.94069672e-007, -1.95409656, -0.297748804, -1, -5.23922949e-008, 5.96046519e-008, -5.96046803e-008, 6.17193905e-007, -1, 5.23922594e-008, -1, -6.17193905e-007))
  6282. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.569999993, 0.125, 0.375))
  6283. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Neon,0,0,"Hot pink","Part",Vector3.new(0.496000022, 0.200000003, 0.280375004))
  6284. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.13575315, -0.0312535167, 1.63871276, -5.96046448e-008, -0.707106888, -0.707106709, 1, 1.651742e-007, -2.49467973e-007, 2.93196308e-007, -0.707106709, 0.707106888))
  6285. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.300000012, 0.5))
  6286. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Metal,0,0,"Sunrise","Part",Vector3.new(0.275000006, 0.413124949, 0.622375011))
  6287. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(2.98023224e-007, -1.16725111, -1.41408849, 1, 1.56260029e-007, -2.68220901e-007, -7.91682311e-008, -0.707106948, -0.70710665, -3.00153374e-007, 0.70710665, -0.707106888))
  6288. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 1.04999995, 0.5))
  6289. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Metal,0,0,"Sunrise","Part",Vector3.new(0.275000006, 0.204125047, 0.287375003))
  6290. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(2.02655792e-006, -1.16711032, -0.0589969158, 1, 1.08027862e-007, 0, -5.37960721e-014, 4.97983308e-007, -1, -1.08027862e-007, 1, 4.97983308e-007))
  6291. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 0.5, 0.5))
  6292. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Metal,0,0,"Sunrise","Part",Vector3.new(0.275000006, 0.221124932, 0.448374987))
  6293. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(5.36441803e-007, -2.35079217, 0.103010416, 1, 2.03386463e-007, -1.49011612e-007, -1.4901174e-007, 6.17194019e-007, -1, -2.03386378e-007, 1, 6.17194075e-007))
  6294. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.550000012, 1.04999995, 0.800000012))
  6295. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Neon,0,0,"Hot pink","Part",Vector3.new(0.275000006, 0.200000003, 0.213375002))
  6296. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.90734863e-006, 1.71972668, 0.400372267, -1, 2.73445636e-007, -5.96046519e-008, -5.96047869e-008, -4.97983308e-007, 1, 2.73445607e-007, 1, 4.97983308e-007))
  6297. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.550000012, 0.25, 0.5))
  6298. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.SmoothPlastic,0,0,"Sunrise","Part",Vector3.new(0.275000006, 0.207000002, 0.303375006))
  6299. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-8.94069672e-007, -2.02871776, -0.278748035, -1, -1.71600149e-007, 5.96046519e-008, -5.96047229e-008, 4.38378009e-007, -1, 1.71600121e-007, -1, -4.38378009e-007))
  6300. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.524999976, 0.5, 0.5))
  6301. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.SmoothPlastic,0,0,"Sunrise","Part",Vector3.new(0.275000006, 0.207000002, 0.303375006))
  6302. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(8.94069672e-007, -2.02871752, 0.419371605, 1, 8.41783816e-008, -5.96046519e-008, -5.96046874e-008, 4.38378009e-007, -1, -8.41783532e-008, 1, 4.38378009e-007))
  6303. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.524999976, 0.5, 0.5))
  6304. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.SmoothPlastic,0,0,"Sunrise","Part",Vector3.new(0.275000006, 0.223999977, 0.375375003))
  6305. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(7.15255737e-007, -2.16047049, 0.508368373, 1, 8.41783816e-008, -5.96046519e-008, -5.96046874e-008, 4.38378009e-007, -1, -8.41783532e-008, 1, 4.38378009e-007))
  6306. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 0.699999988, 0.5))
  6307. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Neon,0,0,"Hot pink","Part",Vector3.new(0.405000031, 0.200000003, 0.280375004))
  6308. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.35976458, -0.0312541127, 1.86352515, 5.96046448e-008, 0.500000238, -0.866025329, -1, -3.57641632e-008, -8.94739998e-008, -7.57096927e-008, 0.866025269, 0.500000238))
  6309. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.300000012, 0.5))
  6310. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Metal,0,0,"Sunrise","Part",Vector3.new(0.275000006, 0.203125, 0.234375))
  6311. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(0, -1.08190203, 0.2501719, 1, -3.12822095e-007, 5.96046519e-008, -1.13020228e-007, -0.173648566, 0.98480773, -2.97719339e-007, -0.98480767, -0.173648566))
  6312. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 0.502499998, 0.400000006))
  6313. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Metal,0,0,"Sunrise","Part",Vector3.new(0.275000006, 0.409124941, 0.360375017))
  6314. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-4.05311584e-006, 1.95058596, 0.253540456, -1, 1.02354932e-007, -1.49011612e-007, -1.17442823e-007, 0.258818656, 0.965925932, 1.3743427e-007, 0.965925992, -0.258818686))
  6315. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.349999994, 1, 1))
  6316. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.SmoothPlastic,0,0,"Sunrise","Part",Vector3.new(0.275000006, 0.200000003, 0.303375006))
  6317. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-2.02655792e-006, 1.68847609, 0.419371486, -1, 2.73445636e-007, -5.96046519e-008, -5.96047869e-008, -4.97983308e-007, 1, 2.73445607e-007, 1, 4.97983308e-007))
  6318. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.524999976, 0.5, 0.5))
  6319. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Neon,0,0,"Hot pink","Part",Vector3.new(0.275000006, 0.207000002, 0.213375002))
  6320. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(7.74860382e-007, -1.99747372, 0.400373936, 1, 8.41783816e-008, -5.96046519e-008, -5.96046874e-008, 4.38378009e-007, -1, -8.41783532e-008, 1, 4.38378009e-007))
  6321. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.550000012, 0.25, 0.5))
  6322. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Metal,0,0,"Sunrise","Part",Vector3.new(0.275000006, 0.4375, 0.25))
  6323. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.78813934e-007, -1.18813586, 0.908314347, -1, -1.16559704e-008, -1.49011612e-007, -1.31319965e-007, 0.544638991, 0.838670731, 7.13820114e-008, 0.838670731, -0.544638932))
  6324. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 1, 0.25))
  6325. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Neon,0,0,"Hot pink","Part",Vector3.new(0.405000031, 0.200000003, 0.280375004))
  6326. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(1.35976434, -0.0312459469, 1.86352515, -1.49011612e-007, -0.500000238, 0.866025269, 1, -3.47141249e-009, 1.70059607e-007, -8.20235115e-008, 0.866025269, 0.500000238))
  6327. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.300000012, 0.5))
  6328. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Metal,0,0,"Sunrise","Part",Vector3.new(0.275000006, 0.409124911, 0.268375039))
  6329. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-3.03983688e-006, 1.82663035, 1.68847704, -1, 2.51590194e-007, -1.49011612e-007, -2.54842973e-007, -0.500000179, 0.866025329, 1.43377648e-007, 0.866025269, 0.500000179))
  6330. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.349999994, 1, 1))
  6331. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Metal,0,0,"Sunrise","Part",Vector3.new(0.275000006, 0.698124886, 0.372374952))
  6332. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-2.02655792e-006, 1.51446426, -0.0117214918, -1, 2.45074915e-007, -5.96046519e-008, -5.96047798e-008, -5.27786028e-007, 1, 2.45074887e-007, 1, 5.27786028e-007))
  6333. mesh("SpecialMesh",Part,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.455000013, 1, 1))
  6334. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.SmoothPlastic,0,0,"Sunrise","Part",Vector3.new(0.275000006, 0.200000003, 0.303375006))
  6335. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(2.08616257e-006, 1.6884762, -0.278747916, 1, -1.86023797e-007, 5.96046519e-008, -5.96047443e-008, -4.97983308e-007, 1, -1.86023769e-007, -1, -4.97983308e-007))
  6336. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.524999976, 0.5, 0.5))
  6337. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Neon,0,0,"Hot pink","Part",Vector3.new(0.275000006, 0.330124885, 0.214375019))
  6338. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(7.74860382e-007, 2.75683522, 1.15006804, 1, 2.61612684e-007, -5.96046519e-008, -4.6201059e-008, 0.386711121, 0.922201037, 2.64309278e-007, -0.922201037, 0.386711121))
  6339. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.449999988, 1, 0.100000001))
  6340. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Metal,0,0,"Sunrise","Part",Vector3.new(0.275000006, 0.200000003, 0.303375006))
  6341. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(1.90734863e-006, 1.20410335, -0.1381253, 1, -1.30388145e-007, 5.96046519e-008, -5.96047158e-008, -4.97983308e-007, 1, -1.30388116e-007, -1, -4.97983308e-007))
  6342. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 0.5, 0.5))
  6343. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Neon,0,0,"Hot pink","Part",Vector3.new(0.496000022, 0.200000003, 0.280375004))
  6344. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(1.13575315, -0.0312504768, 1.638713, 0, 0.707106888, 0.707106709, -1, -1.57551966e-007, 1.57552009e-007, 2.2281219e-007, -0.707106709, 0.707106888))
  6345. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.300000012, 0.5))
  6346. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Neon,0,0,"Hot pink","Part",Vector3.new(0.496000022, 0.200000003, 0.280375004))
  6347. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-0.999259949, -0.0312482715, -0.496301651, 8.94069814e-008, 0.707106769, -0.707106829, 1, -2.08849031e-007, -8.2408441e-008, -2.0595013e-007, -0.707106829, -0.707106709))
  6348. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.300000012, 0.5))
  6349. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Metal,0,0,"Sunrise","Part",Vector3.new(0.275000006, 0.200000003, 0.303375006))
  6350. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.96695328e-006, 1.20410311, 0.278748631, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007))
  6351. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 0.5, 0.5))
  6352. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Metal,0,0,"Sunrise","Part",Vector3.new(0.275000006, 0.745124936, 0.280375004))
  6353. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-5.96046448e-008, 0.302499771, 0.0937513113, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007))
  6354. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 1.04999995, 0.5))
  6355. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Metal,0,0,"Sunrise","Part",Vector3.new(0.275000006, 0.415125012, 0.234375))
  6356. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.1920929e-007, -0.659994602, 0.135124326, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007))
  6357. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 1.04999995, 0.400000006))
  6358. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Metal,0,0,"Sunrise","Part",Vector3.new(0.275000006, 0.630125046, 0.280375004))
  6359. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-2.14576721e-006, 1.25361502, 0.392871499, -1, 9.86020154e-008, -1.49011612e-007, -1.49011655e-007, -4.38377924e-007, 1, 9.86019515e-008, 1, 4.38377953e-007))
  6360. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.395000011, 0.75, 0.25))
  6361. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Metal,0,0,"Sunrise","Part",Vector3.new(0.275000006, 0.248124972, 0.311374992))
  6362. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-5.96046448e-008, 0.954994917, 0.140751123, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007))
  6363. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 1.04999995, 0.5))
  6364. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Metal,0,0,"Sunrise","Part",Vector3.new(0.25999999, 0.375, 0.21875))
  6365. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.78813934e-007, -1.50817347, 0.125254035, -1, 6.68158862e-008, -1.49011612e-007, -1.4901164e-007, -4.97983194e-007, 1, 6.68158151e-008, 1, 4.97983194e-007))
  6366. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.300000012, 1, 1))
  6367. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Metal,0,0,"Sunrise","Part",Vector3.new(0.275000006, 0.35512504, 0.283374995))
  6368. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-5.96046448e-008, 0.91299367, 0.281997681, -1, 9.86020154e-008, -1.49011612e-007, -1.49011655e-007, -4.38377924e-007, 1, 9.86019515e-008, 1, 4.38377953e-007))
  6369. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 0.560000002, 0.5))
  6370. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Metal,0,0,"Sunrise","Part",Vector3.new(0.275000006, 0.203125, 0.234375))
  6371. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.1920929e-007, -0.781131983, 0.0222299099, -1, 2.86555604e-007, -5.96046519e-008, -1.08459133e-007, -0.173648685, 0.98480773, 2.71851889e-007, 0.98480773, 0.173648685))
  6372. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 1.04999995, 0.400000006))
  6373. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Metal,0,0,"Sunrise","Part",Vector3.new(0.275000006, 0.35512504, 0.416375011))
  6374. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.1920929e-007, 0.522374153, 0.125002146, -1, 9.86020154e-008, -1.49011612e-007, -1.49011655e-007, -4.38377924e-007, 1, 9.86019515e-008, 1, 4.38377953e-007))
  6375. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 0.560000002, 0.5))
  6376. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Neon,0,0,"Hot pink","Part",Vector3.new(0.496000022, 0.200000003, 0.280375004))
  6377. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(0.99925971, -0.0312514305, -0.496301413, 0, -0.707106709, 0.707106829, -1, 1.69960003e-007, 1.69959961e-007, -2.40359725e-007, -0.707106888, -0.707106769))
  6378. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.300000012, 0.5))
  6379. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Neon,0,0,"Hot pink","Part",Vector3.new(0.643000007, 0.200000003, 0.280375004))
  6380. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(1.51446462, -0.0312519073, 0.511714339, 0, -4.38378066e-007, 1, -1, 2.45074915e-007, 1.0743547e-013, -2.45074915e-007, -1, -4.38378066e-007))
  6381. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.300000012, 0.5))
  6382. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Metal,0,0,"Sunrise","Part",Vector3.new(0.275000006, 0.54112494, 0.367374986))
  6383. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(3.57627869e-007, -1.79205251, -0.0442371368, 1, 1.5625281e-007, -2.68220901e-007, -2.68220987e-007, 6.17193848e-007, -1, -1.56252639e-007, 1, 6.17193905e-007))
  6384. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 1.04999995, 0.600000024))
  6385. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Metal,0,0,"Sunrise","Part",Vector3.new(0.275000006, 0.630125046, 0.280375004))
  6386. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.1920929e-007, -0.552494049, 0.0937507153, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007))
  6387. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 1.04999995, 0.5))
  6388. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Neon,0,0,"Hot pink","Part",Vector3.new(0.275000006, 0.216124982, 0.280375004))
  6389. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(1.78813934e-007, 0.63488543, 0.590048075, -1, 2.21816833e-007, 5.96046519e-008, -1.14701351e-007, -0.707106829, 0.707106769, 1.98995039e-007, 0.707106769, 0.707106829))
  6390. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.349999994, 1.04999995, 0.5))
  6391. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Metal,0,0,"Sunrise","Part",Vector3.new(0.275000006, 0.309124947, 0.343375027))
  6392. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-3.9935112e-006, 1.40163493, 1.65097666, -1, 2.51590194e-007, -1.49011612e-007, -2.54842973e-007, -0.500000179, 0.866025329, 1.43377648e-007, 0.866025269, 0.500000179))
  6393. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.349999994, 1, 1))
  6394. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Metal,0,0,"Sunrise","Part",Vector3.new(0.275000006, 0.998124957, 0.280375004))
  6395. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.78813934e-007, 0.428994179, 0.0937510729, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007))
  6396. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 1.04999995, 0.5))
  6397. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Metal,0,0,"Sunrise","Part",Vector3.new(0.275000006, 0.405125052, 0.211375013))
  6398. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.1920929e-007, 0.446621895, 0.0734990835, -1, 9.86020154e-008, -1.49011612e-007, -1.49011655e-007, -4.38377924e-007, 1, 9.86019515e-008, 1, 4.38377953e-007))
  6399. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 0.560000002, 0.5))
  6400. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Metal,0,0,"Sunrise","Part",Vector3.new(0.275000006, 0.413124949, 0.622375011))
  6401. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.7285347e-006, 0.967765272, 0.720929861, -1, 2.21816833e-007, 5.96046519e-008, -1.14701351e-007, -0.707106829, 0.707106769, 1.98995039e-007, 0.707106769, 0.707106829))
  6402. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 1.04999995, 0.5))
  6403. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Neon,0,0,"Hot pink","Part",Vector3.new(0.275000006, 0.320124894, 0.316374987))
  6404. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-2.02655792e-006, 1.51446426, -0.0117214918, -1, 2.45074915e-007, -5.96046519e-008, -5.96047798e-008, -5.27786028e-007, 1, 2.45074887e-007, 1, 5.27786028e-007))
  6405. mesh("SpecialMesh",Part,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.457500011, 1, 1))
  6406. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Metal,0,0,"Sunrise","Part",Vector3.new(0.275000006, 0.322125077, 0.363375008))
  6407. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(1.84774399e-006, 0.960361481, 0.0573717356, 1, -6.68157512e-008, -5.96046519e-008, 5.96046164e-008, -4.97983308e-007, 1, -6.68157796e-008, -1, -4.97983308e-007))
  6408. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 1, 1))
  6409. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Metal,0,0,"Sunrise","Part",Vector3.new(0.275000006, 0.51412493, 0.622375011))
  6410. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.96695328e-006, 1.51446474, -0.287093759, -1, 2.45074915e-007, -5.96046519e-008, -5.96047798e-008, -5.27786028e-007, 1, 2.45074887e-007, 1, 5.27786028e-007))
  6411. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 1.04999995, 0.5))
  6412. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Metal,0,0,"Sunrise","Part",Vector3.new(0.275000006, 0.204125047, 0.210375011))
  6413. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.90734863e-006, -1.12023759, -0.0676275492, -1, -2.06059703e-008, 0, -7.19086588e-015, 3.48970019e-007, -1, 2.06059703e-008, -1, -3.48970019e-007))
  6414. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 0.5, 0.5))
  6415. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Neon,0,0,"Hot pink","Part",Vector3.new(0.275000006, 0.261124998, 0.245374992))
  6416. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(0, -0.201990128, 0.0982512236, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007))
  6417. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.375, 1.04999995, 0.5))
  6418. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Metal,0,0,"Sunrise","Part",Vector3.new(0.275000006, 0.206125051, 0.280375004))
  6419. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-2.38418579e-007, -0.137369633, 0.0937509537, -1, 9.86020154e-008, -1.49011612e-007, -1.49011655e-007, -4.38377924e-007, 1, 9.86019515e-008, 1, 4.38377953e-007))
  6420. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 0.560000002, 0.5))
  6421. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Metal,0,0,"Sunrise","Part",Vector3.new(0.275000006, 0.578125, 0.234375))
  6422. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(3.63588333e-006, -1.29723644, 0.0231808424, 1, -1.86023783e-007, -5.96046519e-008, 5.96045879e-008, -3.48969991e-007, 1, -1.86023797e-007, -1, -3.48969991e-007))
  6423. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 1.04999995, 0.400000006))
  6424. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Metal,0,0,"Sunrise","Part",Vector3.new(0.25999999, 0.225500003, 0.210125014))
  6425. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-0.00167286396, 0.746741295, -0.00556850433, -1, 6.68158222e-008, -5.96046519e-008, 5.96046803e-008, 4.38378009e-007, -1, -6.68157938e-008, -1, -4.38378009e-007))
  6426. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 1, 1))
  6427. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Metal,0,0,"Sunrise","Part",Vector3.new(0.275000006, 0.214125022, 0.234375))
  6428. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-3.81469727e-006, 0.381998301, -0.135124564, -1, -5.23922843e-008, 1.49011612e-007, -1.4901164e-007, 4.97983251e-007, -1, 5.23922097e-008, -1, -4.97983251e-007))
  6429. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 0.560000002, 0.400000006))
  6430. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Metal,0,0,"Sunrise","Part",Vector3.new(0.270000011, 0.21875, 0.234375))
  6431. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(4.35113907e-006, -1.64879727, 0.0388069153, 1, -1.86023783e-007, -5.96046519e-008, 5.96045879e-008, -3.48969991e-007, 1, -1.86023797e-007, -1, -3.48969991e-007))
  6432. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 0.5, 0.5))
  6433. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Neon,0,0,"Hot pink","Part",Vector3.new(0.200000003, 0.449500024, 0.236624971))
  6434. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(0, -1.14855242, -0.0782039165, -1, 1.1814204e-007, -5.96046519e-008, -8.81511255e-008, -0.258819431, 0.965925753, 9.8689604e-008, 0.965925813, 0.258819431))
  6435. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 1, 0.25))
  6436. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Neon,0,0,"Hot pink","Part",Vector3.new(0.200000003, 0.46875, 0.220999971))
  6437. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.78813934e-007, -1.17250943, 0.949309707, -1, -1.16559704e-008, -1.49011612e-007, -1.31319965e-007, 0.544638991, 0.838670731, 7.13820114e-008, 0.838670731, -0.544638932))
  6438. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 1, 0.25))
  6439. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Neon,0,0,"Hot pink","Part",Vector3.new(0.275000006, 0.35212487, 0.214375019))
  6440. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(1.96695328e-006, 1.7106328, -4.67702293, 1, -5.28256834e-008, 3.27825546e-007, -1.54116776e-007, -0.948323309, 0.317305803, 2.94122714e-007, -0.317305803, -0.948323369))
  6441. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.449999988, 0.5, 0.100000001))
  6442. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Neon,0,0,"Hot pink","Part",Vector3.new(0.288000047, 0.200000003, 0.27837503))
  6443. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(3.00251865, -0.0312470198, -0.784425139, -5.96046448e-008, 0.362437576, 0.932008028, 1, 8.8373362e-008, 2.95864595e-008, -7.16414377e-008, 0.932008028, -0.362437606))
  6444. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.300000012, 0.5))
  6445. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Neon,0,0,"Hot pink","Part",Vector3.new(0.200000003, 0.217000008, 0.200375021))
  6446. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.1920929e-007, -3.18676305, -1.53718555, 1, 8.19928516e-008, -2.68220901e-007, -2.15646111e-007, -0.386710614, -0.922201157, -1.79337775e-007, 0.922201157, -0.386710614))
  6447. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.560000002, 0.200000003, 0.600000024))
  6448. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Neon,0,0,"Hot pink","Part",Vector3.new(0.49000001, 0.200000003, 0.290374994))
  6449. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(2.73874784, -0.0312489271, 0.358844757, -8.94069814e-008, -0.0130901812, 0.999914408, 1, 5.69744678e-008, 9.01605191e-008, -5.81498085e-008, 0.999914408, 0.0130901812))
  6450. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.300000012, 0.5))
  6451. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Neon,0,0,"Hot pink","Part",Vector3.new(0.275000006, 0.24712491, 0.214375019))
  6452. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(1.37090683e-006, 3.7712388, 4.10999966, 1, 2.20300279e-007, -3.27825546e-007, 7.26464435e-008, 0.713250935, 0.70090878, 3.88232309e-007, -0.70090884, 0.713250995))
  6453. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.449999988, 0.600000024, 0.100000001))
  6454. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Neon,0,0,"Hot pink","Part",Vector3.new(0.275000006, 0.621124864, 0.214375019))
  6455. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(5.96046448e-007, 3.43644333, -0.254856586, 1, 2.8833017e-007, 5.96046519e-008, -4.31625189e-008, -0.0566928945, 0.998391747, 2.91245613e-007, -0.998391688, -0.0566928908))
  6456. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.449999988, 1, 0.100000001))
  6457. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Neon,0,0,"Hot pink","Part",Vector3.new(0.940000057, 0.200000003, 0.285374999))
  6458. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-5.0734067, -0.0312533975, 4.65720272, 1.49011626e-007, 0.694658399, -0.719339788, -1, 3.30585053e-008, -1.75226305e-007, -9.79421202e-008, 0.719339788, 0.694658399))
  6459. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.300000012, 0.5))
  6460. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Metal,0,0,"Sunrise","Part",Vector3.new(0.275000006, 0.84512496, 0.422374964))
  6461. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(4.76837158e-007, 3.25642681, 0.00496280193, 1, 2.88228279e-007, 5.96046519e-008, -5.96046021e-008, -1.70154109e-007, 1, 2.88228279e-007, -1, -1.70154095e-007))
  6462. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 1, 0.5))
  6463. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Neon,0,0,"Hot pink","Part",Vector3.new(0.275000006, 1.04612494, 0.214375019))
  6464. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(3.03983688e-006, 6.0806818, -0.48661232, 1, 2.83280116e-007, 0, 3.20681721e-008, -0.113203041, 0.993571877, 2.81459165e-007, -0.993571937, -0.113203049))
  6465. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.449999988, 0.899999976, 0.100000001))
  6466. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Neon,0,0,"Hot pink","Part",Vector3.new(0.49000001, 0.200000003, 0.290374994))
  6467. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-2.73874784, -0.0312509537, 0.358844757, 0, 0.0130901793, -0.999914348, -1, -5.85088848e-008, -7.65957409e-010, -5.85139013e-008, 0.999914408, 0.0130901802))
  6468. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.300000012, 0.5))
  6469. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Metal,0,0,"Sunrise","Part",Vector3.new(0.275000006, 1.46012485, 0.422374964))
  6470. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(4.05311584e-006, 5.85410023, -0.495341063, 1, 2.75573711e-007, 1.49011612e-007, -1.16857876e-007, -0.113203339, 0.993571877, 2.90670897e-007, -0.993571937, -0.113203347))
  6471. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 1, 0.5))
  6472. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Neon,0,0,"Hot pink","Part",Vector3.new(0.210000038, 0.200000003, 0.285374999))
  6473. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-0.630329967, -0.0312533975, 7.20098686, 1.11758709e-008, 0.99984777, -0.017452918, -1, 8.5759515e-009, -1.49042407e-007, -1.48870043e-007, 0.0174529161, 0.99984777))
  6474. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 0.300000012, 0.5))
  6475. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Neon,0,0,"Hot pink","Part",Vector3.new(1.78499997, 0.200000003, 0.301375002))
  6476. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(5.64131165, -0.0312466621, 0.814543009, -1.78813963e-007, -0.104528897, 0.994521916, 1, 6.1102142e-008, 1.86221044e-007, -8.02329012e-008, 0.994521916, 0.104528897))
  6477. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.300000012, 0.5))
  6478. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Neon,0,0,"Hot pink","Part",Vector3.new(0.275000006, 0.678124905, 0.214375019))
  6479. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(5.96046448e-007, 5.27017689, -0.0733480453, 1, 2.8833017e-007, 5.96046519e-008, -4.31626219e-008, -0.0566925369, 0.998391747, 2.91245584e-007, -0.998391688, -0.0566925332))
  6480. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.449999988, 0.800000012, 0.100000001))
  6481. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Neon,0,0,"Hot pink","Part",Vector3.new(0.210000038, 0.200000003, 0.285374999))
  6482. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(0.630329847, -0.0312465429, 7.20098686, -9.87201929e-008, -0.99984777, 0.017452918, 1, -9.613413e-008, 1.49012436e-007, -1.47311923e-007, 0.0174529161, 0.99984777))
  6483. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 0.300000012, 0.5))
  6484. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Neon,0,0,"Hot pink","Part",Vector3.new(0.275000006, 0.47012496, 0.214375019))
  6485. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(4.11272049e-006, 4.9387393, -4.49442863, 1, 2.42971879e-007, 2.68220901e-007, -1.46989407e-008, -0.713250041, 0.700909734, 3.61609949e-007, -0.700909734, -0.713250101))
  6486. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.449999988, 0.699999988, 0.100000001))
  6487. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Neon,0,0,"Hot pink","Part",Vector3.new(0.288000047, 0.200000003, 0.27837503))
  6488. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-3.00251842, -0.0312527418, -0.784425259, -2.98023224e-008, -0.362437576, -0.932008028, -1, -3.9197058e-008, 4.7219352e-008, -5.36460405e-008, 0.932008028, -0.362437606))
  6489. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.300000012, 0.5))
  6490. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Neon,0,0,"Hot pink","Part",Vector3.new(0.275000006, 0.533124864, 0.214375019))
  6491. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(1.01327896e-006, 4.10316849, -0.103866458, 1, 2.8833017e-007, 5.96046519e-008, -4.31625473e-008, -0.0566928051, 0.998391747, 2.91245584e-007, -0.998391688, -0.0566928014))
  6492. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.449999988, 0.899999976, 0.100000001))
  6493. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Neon,0,0,"Hot pink","Part",Vector3.new(0.200000003, 0.217000008, 0.200375021))
  6494. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.78813934e-007, -3.33085537, -1.5976094, 1, 8.19928516e-008, -2.68220901e-007, -2.15646111e-007, -0.386710614, -0.922201157, -1.79337775e-007, 0.922201157, -0.386710614))
  6495. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.560000002, 0.200000003, 0.600000024))
  6496. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Metal,0,0,"Sunrise","Part",Vector3.new(0.275000006, 0.235124931, 1.6693753))
  6497. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-4.64916229e-006, -0.673488855, 5.65330791, -1, 2.57733284e-008, -4.1723257e-007, 2.16240803e-008, -0.993572056, -0.11320243, -4.17468186e-007, -0.113202423, 0.993571997))
  6498. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 1.04999995, 1))
  6499. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Neon,0,0,"Hot pink","Part",Vector3.new(0.275000006, 0.480124891, 0.214375019))
  6500. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(1.01327896e-006, 2.6059866, 0.051631093, 1, 2.90808202e-007, 5.96046519e-008, -5.96046306e-008, -8.07461475e-008, 1, 2.90808202e-007, -1, -8.07461333e-008))
  6501. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.449999988, 1, 0.100000001))
  6502. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Metal,0,0,"Sunrise","Part",Vector3.new(0.275000006, 0.235124931, 1.6693753))
  6503. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-4.29153442e-006, -0.399590373, 4.02885008, -1, 2.75204592e-009, -4.1723257e-007, 2.09061284e-008, -0.998391747, -0.0566919968, -4.16717569e-007, -0.0566919968, 0.998391747))
  6504. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 1.04999995, 1))
  6505. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Neon,0,0,"Hot pink","Part",Vector3.new(0.275000006, 0.237124875, 0.214375019))
  6506. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(2.08616257e-006, 2.20885611, -3.10965157, 1, 1.22782865e-007, 3.27825546e-007, -8.59755218e-008, -0.82164669, 0.569997251, 3.39342648e-007, -0.569997191, -0.821646631))
  6507. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.449999988, 0.800000012, 0.100000001))
  6508. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Metal,0,0,"Sunrise","Part",Vector3.new(0.275000006, 1.65712488, 0.359375))
  6509. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(1.1920929e-006, 4.40055227, -0.0314526558, 1, 2.82533193e-007, 5.96046519e-008, -4.34911662e-008, -0.0566928945, 0.998391747, 2.85457958e-007, -0.998391688, -0.0566928908))
  6510. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 1, 0.5))
  6511. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Metal,0,0,"Sunrise","Part",Vector3.new(0.275000006, 0.488124937, 0.359375))
  6512. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(9.53674316e-007, 2.57349205, 0.495863676, 1, 2.95756422e-007, 5.96046519e-008, -9.27020594e-008, 0.113203131, 0.993571877, 2.87107866e-007, -0.993571937, 0.113203138))
  6513. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 1, 0.5))
  6514. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Metal,0,0,"Sunrise","Part",Vector3.new(0.275000006, 0.221124932, 0.655375004))
  6515. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.84774399e-006, 1.02953684, 2.8258214, -1, -1.09740803e-007, -3.27825546e-007, -2.40661642e-008, -0.923879445, 0.382683516, -3.44867317e-007, 0.382683575, 0.923879564))
  6516. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 1.04999995, 0.899999976))
  6517. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Neon,0,0,"Hot pink","Part",Vector3.new(0.200000003, 0.217000008, 0.200375021))
  6518. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.78813934e-007, -3.40289879, -1.62781823, 1, 8.19928516e-008, -2.68220901e-007, -2.15646111e-007, -0.386710614, -0.922201157, -1.79337775e-007, 0.922201157, -0.386710614))
  6519. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.560000002, 0.200000003, 0.600000024))
  6520. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Metal,0,0,"Sunrise","Part",Vector3.new(0.275000006, 0.488124937, 0.418375015))
  6521. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(1.07288361e-006, 2.60998273, -0.0503669977, 1, 2.90808202e-007, 5.96046519e-008, -5.96046306e-008, -8.07461475e-008, 1, 2.90808202e-007, -1, -8.07461333e-008))
  6522. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 1, 0.899999976))
  6523. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Neon,0,0,"Hot pink","Part",Vector3.new(0.200000003, 0.217000008, 0.200375021))
  6524. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.78813934e-007, -3.25880861, -1.56739795, 1, 8.19928516e-008, -2.68220901e-007, -2.15646111e-007, -0.386710614, -0.922201157, -1.79337775e-007, 0.922201157, -0.386710614))
  6525. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.560000002, 0.200000003, 0.600000024))
  6526. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Neon,0,0,"Hot pink","Part",Vector3.new(0.275000006, 0.265124857, 0.214375019))
  6527. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(1.1920929e-007, 3.70434904, 2.44769764, 1, 3.05401159e-007, -1.49011612e-007, -3.84168999e-008, 0.537299871, 0.843391299, 3.37636607e-007, -0.843391299, 0.537299871))
  6528. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.449999988, 0.899999976, 0.100000001))
  6529. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Metal,0,0,"Sunrise","Part",Vector3.new(0.275000006, 0.618124902, 0.209375009))
  6530. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(1.07288361e-006, 2.67497754, -0.154865503, 1, 2.90808202e-007, 5.96046519e-008, -5.96046306e-008, -8.07461475e-008, 1, 2.90808202e-007, -1, -8.07461333e-008))
  6531. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 1, 0.899999976))
  6532. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Metal,0,0,"Sunrise","Part",Vector3.new(0.275000006, 0.484124899, 0.227375031))
  6533. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.13248825e-006, 2.07749343, -1.55897069, -1, 2.0314171e-007, -1.49011612e-007, 3.82758287e-008, 0.707107008, 0.70710659, 2.49009986e-007, 0.70710659, -0.707106948))
  6534. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.349999994, 0.300000012, 1))
  6535. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Neon,0,0,"Hot pink","Part",Vector3.new(0.275000006, 0.454124868, 0.214375019))
  6536. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(3.09944153e-006, 4.72574425, -0.500342607, 1, 2.72365185e-007, 1.49011612e-007, -1.17221134e-007, -0.113203213, 0.993571877, 2.87482976e-007, -0.993571877, -0.113203213))
  6537. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.449999988, 0.899999976, 0.100000001))
  6538. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Metal,0,0,"Sunrise","Part",Vector3.new(0.275000006, 1.65712488, 0.422374964))
  6539. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(1.25169754e-006, 4.40054798, -0.205949783, 1, 2.82533193e-007, 5.96046519e-008, -4.34911662e-008, -0.0566928945, 0.998391747, 2.85457958e-007, -0.998391688, -0.0566928908))
  6540. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 1, 0.5))
  6541. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Metal,0,0,"Sunrise","Part",Vector3.new(0.275000006, 0.446125001, 0.496375084))
  6542. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.7285347e-006, 0.313133836, 6.93109894, -1, 3.38840884e-008, 5.96046519e-008, -3.38840529e-008, -1, 5.74912178e-007, 5.96046661e-008, 5.74912178e-007, 1))
  6543. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 1, 0.899999976))
  6544. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Neon,0,0,"Hot pink","Part",Vector3.new(0.421999991, 0.200000003, 0.280375004))
  6545. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.558792, -0.0312539935, -0.45239532, 2.98023224e-008, -0.707106769, -0.707106829, -1, -7.48441451e-008, 3.26972902e-008, -7.60432783e-008, 0.707106829, -0.707106709))
  6546. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.300000012, 0.5))
  6547. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.SmoothPlastic,0,0,"Sunrise","Part",Vector3.new(0.275000006, 0.277124941, 0.702375054))
  6548. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(4.76837158e-007, -2.44779181, 0.103008986, 1, 2.03386463e-007, -1.49011612e-007, -1.4901174e-007, 6.17194019e-007, -1, -2.03386378e-007, 1, 6.17194075e-007))
  6549. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.550000012, 0.5, 0.800000012))
  6550. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Metal,0,0,"Sunrise","Part",Vector3.new(0.275000006, 0.422124922, 0.412375003))
  6551. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(1.31130219e-006, -1.70811987, 0.370481491, 1, 1.56259688e-007, -2.68220901e-007, -2.99524515e-007, 0.258819312, -0.965925872, -8.15145142e-008, 0.965925872, 0.258819312))
  6552. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 1.04999995, 0.5))
  6553. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Metal,0,0,"Sunrise","Part",Vector3.new(0.275000006, 0.207000002, 0.303375006))
  6554. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(1.7285347e-006, -1.7005955, 0.278747916, 1, 8.41783816e-008, -5.96046519e-008, -5.96046874e-008, 4.38378009e-007, -1, -8.41783532e-008, 1, 4.38378009e-007))
  6555. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 0.5, 0.5))
  6556. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Neon,0,0,"Hot pink","Part",Vector3.new(0.421999991, 0.200000003, 0.280375004))
  6557. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(1.55879188, -0.0312462449, -0.452395201, 5.96046448e-008, 0.707106769, 0.707106829, 1, -4.38479519e-009, -7.99089008e-008, -5.34036033e-008, 0.707106829, -0.707106709))
  6558. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.300000012, 0.5))
  6559. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Neon,0,0,"Hot pink","Part",Vector3.new(0.275000006, 0.204124942, 0.464375019))
  6560. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(5.36441803e-007, -2.27592182, 0.103008866, 1, 2.03386463e-007, -1.49011612e-007, -1.4901174e-007, 6.17194019e-007, -1, -2.03386378e-007, 1, 6.17194075e-007))
  6561. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.524999976, 1.04999995, 0.800000012))
  6562. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.SmoothPlastic,0,0,"Sunrise","Part",Vector3.new(0.275000006, 0.23299998, 0.295375019))
  6563. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-2.08616257e-006, -0.537618876, 2.27821803, -1, 3.50292382e-008, 2.68220901e-007, -3.50290357e-008, -1, 7.53727932e-007, 2.6822093e-007, 7.53727932e-007, 1))
  6564. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 1, 0.25))
  6565. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Metal,0,0,"Sunrise","Part",Vector3.new(0.275000006, 0.221124932, 0.418375015))
  6566. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.54972076e-006, 1.79147363, 1.84832418, -1, -2.19832074e-007, -2.68220901e-007, -3.42159723e-008, -0.707107008, 0.70710659, -3.45105576e-007, 0.70710659, 0.707106948))
  6567. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.550000012, 1.04999995, 0.899999976))
  6568. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Neon,0,0,"Hot pink","Part",Vector3.new(0.275000006, 0.200124964, 0.287375033))
  6569. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-6.55651093e-007, -0.200989008, 2.46776938, -1, 3.38840884e-008, 5.96046519e-008, -3.38840529e-008, -1, 5.74912178e-007, 5.96046661e-008, 5.74912178e-007, 1))
  6570. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.560000002, 1, 0.899999976))
  6571. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.SmoothPlastic,0,0,"Sunrise","Part",Vector3.new(0.275000006, 0.216999978, 0.295375019))
  6572. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.78813934e-007, -0.42824471, 2.46571684, -1, 3.50217348e-008, 2.68220901e-007, -3.50215323e-008, -1, 7.53727875e-007, 2.6822093e-007, 7.53727875e-007, 1))
  6573. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 0.75, 0.25))
  6574. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Metal,0,0,"Sunrise","Part",Vector3.new(0.275000006, 0.221124932, 0.418375015))
  6575. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(1.1920929e-007, 1.93505025, 1.70474756, 1, 1.8804613e-007, -2.68220901e-007, 5.6691988e-008, 0.707107067, 0.707106471, 3.22629546e-007, -0.707106531, 0.707107067))
  6576. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.550000012, 1.04999995, 0.899999976))
  6577. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Metal,0,0,"Sunrise","Part",Vector3.new(0.275000006, 0.207000002, 0.303375006))
  6578. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.7285347e-006, -1.70059586, -0.138124347, -1, -1.71600149e-007, 5.96046519e-008, -5.96047229e-008, 4.38378009e-007, -1, 1.71600121e-007, -1, -4.38378009e-007))
  6579. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 0.5, 0.5))
  6580. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Metal,0,0,"Sunrise","Part",Vector3.new(0.275000006, 0.331124961, 0.412375003))
  6581. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(2.98023224e-007, -1.41137242, -1.47533894, 1, 1.56260029e-007, -2.68220901e-007, -7.91682311e-008, -0.707106948, -0.70710665, -3.00153374e-007, 0.70710665, -0.707106888))
  6582. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 1.04999995, 0.5))
  6583. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Metal,0,0,"Sunrise","Part",Vector3.new(0.275000006, 0.709124923, 0.47437498))
  6584. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(1.25169754e-006, -1.87605298, 0.196760774, 1, 1.5625281e-007, -2.68220901e-007, -2.68220987e-007, 6.17193848e-007, -1, -1.56252639e-007, 1, 6.17193905e-007))
  6585. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 1.04999995, 0.800000012))
  6586. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Metal,0,0,"Sunrise","Part",Vector3.new(0.275000006, 0.277124912, 0.227375031))
  6587. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-3.15904617e-006, 2.51099396, -0.945535302, -1, 2.51590308e-007, -1.49011612e-007, -3.25266569e-009, 0.50000006, 0.866025388, 2.92389416e-007, 0.866025448, -0.50000006))
  6588. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.349999994, 0.300000012, 1))
  6589. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Neon,0,0,"Hot pink","Part",Vector3.new(0.275000006, 0.200124964, 0.287375033))
  6590. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(1.01327896e-006, 0.00686681271, 2.46776795, 1, 4.04674836e-008, 5.96046519e-008, -4.04674481e-008, 1, -5.74912178e-007, -5.96046803e-008, 5.74912178e-007, 1))
  6591. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.560000002, 1, 0.899999976))
  6592. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Metal,0,0,"Sunrise","Part",Vector3.new(0.275000006, 0.84512496, 0.359375))
  6593. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(4.17232513e-007, 3.25642681, 0.179460406, 1, 2.88228279e-007, 5.96046519e-008, -5.96046021e-008, -1.70154109e-007, 1, 2.88228279e-007, -1, -1.70154095e-007))
  6594. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.349999994, 1, 0.5))
  6595. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Neon,0,0,"Hot pink","Part",Vector3.new(0.453000009, 0.200000003, 0.280375004))
  6596. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(1.95527112, -0.0312464833, 0.483453929, 1.19209275e-007, 0.258818507, 0.965925932, 1, -8.24298763e-009, -1.21205815e-007, -2.34081945e-008, 0.965925932, -0.258818507))
  6597. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.300000012, 0.5))
  6598. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Neon,0,0,"Hot pink","Part",Vector3.new(0.453000009, 0.200000003, 0.280375004))
  6599. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.95527112, -0.0312538147, 0.483453929, -2.98023224e-008, -0.258818537, -0.965925992, -1, -2.11072013e-008, 3.65092774e-008, -2.98372704e-008, 0.965925932, -0.258818537))
  6600. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.300000012, 0.5))
  6601. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Metal,0,0,"Sunrise","Part",Vector3.new(0.25999999, 0.3125, 0.320125014))
  6602. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-0.00167268515, -1.01674032, 0.0665671825, -1, -2.06061035e-008, 5.96046519e-008, 5.96046661e-008, -4.97983308e-007, 1, -2.06060733e-008, 1, 4.97983308e-007))
  6603. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 1, 1))
  6604. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Metal,0,0,"Sunrise","Part",Vector3.new(0.275000006, 0.698124886, 0.732374966))
  6605. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-2.02655792e-006, 1.51446426, -0.0117214918, -1, 2.45074915e-007, -5.96046519e-008, -5.96047798e-008, -5.27786028e-007, 1, 2.45074887e-007, 1, 5.27786028e-007))
  6606. mesh("SpecialMesh",Part,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.425000012, 1, 1))
  6607. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Neon,0,0,"Hot pink","Part",Vector3.new(0.275000006, 0.698124886, 0.534374952))
  6608. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-2.02655792e-006, 1.51446426, -0.0117214918, -1, 2.45074915e-007, -5.96046519e-008, -5.96047798e-008, -5.27786028e-007, 1, 2.45074887e-007, 1, 5.27786028e-007))
  6609. mesh("SpecialMesh",Part,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.452499986, 1, 1))
  6610. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.SmoothPlastic,0,0,"Sunrise","Part",Vector3.new(0.275000006, 0.368124902, 0.378374994))
  6611. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-2.20537186e-006, 1.49373317, 0.509495497, -1, 1.54237696e-007, -1.49011612e-007, -1.49011683e-007, -4.38377924e-007, 1, 1.54237625e-007, 1, 4.38377953e-007))
  6612. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 1, 1))
  6613. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Metal,0,0,"Sunrise","Part",Vector3.new(0.275000006, 0.567124963, 0.311374992))
  6614. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.96695328e-006, 0.994490385, 0.140751123, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007))
  6615. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 1.04999995, 0.5))
  6616. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Metal,0,0,"Sunrise","Part",Vector3.new(0.275000006, 0.418250024, 0.25))
  6617. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(5.96046448e-008, -1.13293266, -0.127015591, -1, 1.1814204e-007, -5.96046519e-008, -8.81511255e-008, -0.258819431, 0.965925753, 9.8689604e-008, 0.965925813, 0.258819431))
  6618. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 1, 0.25))
  6619. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Metal,0,0,"Sunrise","Part",Vector3.new(0.275000006, 0.403124899, 0.352375001))
  6620. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-2.14576721e-006, 1.55247092, -0.700873375, -1, 3.75780473e-009, -1.49011612e-007, -1.02709933e-007, 0.707106948, 0.707106709, 1.08024309e-007, 0.70710665, -0.707106888))
  6621. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.349999994, 1, 1))
  6622. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Neon,0,0,"Hot pink","Part",Vector3.new(1.625, 0.200000003, 0.296375006))
  6623. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(3.97657108, -0.0312469006, 0.569297791, -1.78813934e-007, -0.0523363948, 0.99862951, 1, 7.44965192e-008, 1.82963561e-007, -8.39700789e-008, 0.99862957, 0.0523363985))
  6624. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.300000012, 0.5))
  6625. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Neon,0,0,"Hot pink","Part",Vector3.new(0.940000057, 0.200000003, 0.285374999))
  6626. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(5.0734067, -0.0312458873, 4.6572032, -2.38418608e-007, -0.694658399, 0.719339788, 1, -7.77344482e-008, 2.56373596e-007, -1.22174583e-007, 0.719339788, 0.694658399))
  6627. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.300000012, 0.5))
  6628. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Neon,0,0,"Hot pink","Part",Vector3.new(1.625, 0.200000003, 0.296375006))
  6629. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-3.97657156, -0.0312528014, 0.569297791, 8.94069672e-008, 0.0523363948, -0.99862957, -1, -7.9065849e-008, -9.36733713e-008, -8.38600229e-008, 0.99862957, 0.0523363948))
  6630. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.300000012, 0.5))
  6631. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Metal,0,0,"Sunrise","Part",Vector3.new(0.275000006, 1.66212487, 0.359375))
  6632. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(1.84774399e-006, 5.95509291, -0.320841074, 1, 2.75573711e-007, 1.49011612e-007, -1.16857876e-007, -0.113203339, 0.993571877, 2.90670897e-007, -0.993571937, -0.113203347))
  6633. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 1, 0.5))
  6634. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Neon,0,0,"Hot pink","Part",Vector3.new(1.78499997, 0.200000003, 0.301375002))
  6635. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-5.64131165, -0.0312528014, 0.814543009, 8.94069672e-008, 0.104528897, -0.994521856, -1, -7.01918026e-008, -9.72769385e-008, -7.99755355e-008, 0.994521916, 0.104528904))
  6636. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.300000012, 0.5))
  6637. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Metal,0,0,"Sunrise","Part",Vector3.new(0.275000006, 0.204125047, 0.207375005))
  6638. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.78813934e-006, -1.16710985, 0.175246477, -1, -2.06059703e-008, 0, -7.19086588e-015, 3.48970019e-007, -1, 2.06059703e-008, -1, -3.48970019e-007))
  6639. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 0.5, 0.5))
  6640. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Metal,0,0,"Sunrise","Part",Vector3.new(0.275000006, 0.223124996, 0.234375))
  6641. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-5.96046448e-008, -0.964124441, -0.0247514248, 1, -3.01422034e-007, 5.96046519e-008, -3.31073302e-008, 0.0871552527, 0.99619478, -3.05469911e-007, -0.99619478, 0.0871552527))
  6642. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 1, 0.400000006))
  6643. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Metal,0,0,"Sunrise","Part",Vector3.new(0.275000006, 0.244125068, 0.416375011))
  6644. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(1.1920929e-007, -0.686996341, -0.125002146, -1, -5.23922274e-008, 1.49011612e-007, -1.49011626e-007, 3.48969991e-007, -1, 5.23921742e-008, -1, -3.48969991e-007))
  6645. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 0.560000002, 0.5))
  6646. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Metal,0,0,"Sunrise","Part",Vector3.new(0.275000006, 0.206125051, 0.280375004))
  6647. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(0, 0.168619156, -0.0937508345, -1, -5.23922559e-008, 1.49011612e-007, -1.4901164e-007, 4.97983251e-007, -1, 5.23921813e-008, -1, -4.97983251e-007))
  6648. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 0.560000002, 0.5))
  6649. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Metal,0,0,"Sunrise","Part",Vector3.new(0.275000006, 0.398124993, 0.303375006))
  6650. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.84774399e-006, 1.4540993, 0.200625658, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007))
  6651. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 1, 1))
  6652. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Neon,0,0,"Hot pink","Part",Vector3.new(0.275000006, 0.239124984, 0.205375016))
  6653. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.90734863e-006, 1.85597229, 0.341248155, -1, 2.73445636e-007, -5.96046519e-008, -5.96047869e-008, -4.97983308e-007, 1, 2.73445607e-007, 1, 4.97983308e-007))
  6654. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.550000012, 1, 1))
  6655. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Neon,0,0,"Hot pink","Part",Vector3.new(0.275000006, 0.698124886, 0.534374952))
  6656. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-2.02655792e-006, 1.51446426, -0.0117214918, -1, 2.45074915e-007, -5.96046519e-008, -5.96047798e-008, -5.27786028e-007, 1, 2.45074887e-007, 1, 5.27786028e-007))
  6657. mesh("SpecialMesh",Part,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.452499986, 1, 1))
  6658. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.SmoothPlastic,0,0,"Sunrise","Part",Vector3.new(0.275000006, 0.315999985, 0.310375005))
  6659. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(2.68220901e-006, 2.08321929, -0.579118371, 1, -3.05231737e-007, 5.96046519e-008, -5.96048082e-008, -4.97983308e-007, 1, -3.05231708e-007, -1, -4.97983308e-007))
  6660. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 1, 0.5))
  6661. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Neon,0,0,"Hot pink","Part",Vector3.new(0.496000022, 0.200000003, 0.280375004))
  6662. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(0.99925971, -0.0312514305, -0.496301413, 0, -0.707106709, 0.707106829, -1, 1.69960003e-007, 1.69959961e-007, -2.40359725e-007, -0.707106888, -0.707106769))
  6663. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.300000012, 0.5))
  6664. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Neon,0,0,"Hot pink","Part",Vector3.new(0.275000006, 0.207000002, 0.213375002))
  6665. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-7.74860382e-007, -1.99747372, -0.297748566, -1, -1.71600149e-007, 5.96046519e-008, -5.96047229e-008, 4.38378009e-007, -1, 1.71600121e-007, -1, -4.38378009e-007))
  6666. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.550000012, 0.25, 0.5))
  6667. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Metal,0,0,"Sunrise","Part",Vector3.new(0.275000006, 0.311124951, 0.267374992))
  6668. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(2.14576721e-006, -1.94385314, 0.47499609, 1, -6.68158364e-008, 5.96046519e-008, 5.96046803e-008, 4.38378009e-007, -1, 6.6815808e-008, 1, 4.38378009e-007))
  6669. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.495000005, 1, 1))
  6670. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Neon,0,0,"Hot pink","Part",Vector3.new(0.275000006, 0.200000003, 0.213375002))
  6671. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(1.96695328e-006, 1.71972692, -0.297746897, 1, -1.86023797e-007, 5.96046519e-008, -5.96047443e-008, -4.97983308e-007, 1, -1.86023769e-007, -1, -4.97983308e-007))
  6672. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.550000012, 0.25, 0.5))
  6673. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Neon,0,0,"Hot pink","Part",Vector3.new(0.643000007, 0.200000003, 0.280375004))
  6674. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(1.51446462, -0.0312519073, 0.511714339, 0, -4.38378066e-007, 1, -1, 2.45074915e-007, 1.0743547e-013, -2.45074915e-007, -1, -4.38378066e-007))
  6675. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.300000012, 0.5))
  6676. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Neon,0,0,"Hot pink","Part",Vector3.new(0.496000022, 0.200000003, 0.280375004))
  6677. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.13575315, -0.0312535167, 1.63871276, -5.96046448e-008, -0.707106888, -0.707106709, 1, 1.651742e-007, -2.49467973e-007, 2.93196308e-007, -0.707106709, 0.707106888))
  6678. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.300000012, 0.5))
  6679. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Neon,0,0,"Hot pink","Part",Vector3.new(0.643000007, 0.200000003, 0.280375004))
  6680. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.51446474, -0.0312479734, 0.511714339, 5.96046519e-008, 4.38378066e-007, -1, 1, -2.45074915e-007, 5.96045453e-008, -2.45074887e-007, -1, -4.38378095e-007))
  6681. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.300000012, 0.5))
  6682. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Metal,0,0,"Sunrise","Part",Vector3.new(0.275000006, 0.577124953, 0.303375006))
  6683. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.96695328e-006, 1.2623533, 0.27874887, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007))
  6684. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 0.870000005, 0.5))
  6685. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Metal,0,0,"Sunrise","Part",Vector3.new(0.275000006, 0.304124922, 0.267374992))
  6686. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-2.14576721e-006, 1.6403501, 0.474995613, -1, 1.54237696e-007, -1.49011612e-007, -1.49011683e-007, -4.38377924e-007, 1, 1.54237625e-007, 1, 4.38377953e-007))
  6687. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.495000005, 1, 1))
  6688. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.SmoothPlastic,0,0,"Sunrise","Part",Vector3.new(0.275000006, 0.330124915, 0.226374999))
  6689. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-2.2649765e-006, 1.84085846, 0.585492015, -1, 1.54237696e-007, -1.49011612e-007, -1.49011683e-007, -4.38377924e-007, 1, 1.54237625e-007, 1, 4.38377953e-007))
  6690. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 1, 1))
  6691. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Metal,0,0,"Sunrise","Part",Vector3.new(0.25999999, 0.578125, 0.21875))
  6692. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(0.00167268515, 1.04017782, 0.125254273, 1, 2.06060218e-008, 5.96046519e-008, 5.96046448e-008, 3.48969991e-007, -1, -2.06060431e-008, 1, 3.48969991e-007))
  6693. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.300000012, 1, 1))
  6694. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.SmoothPlastic,0,0,"Sunrise","Part",Vector3.new(0.275000006, 0.239124984, 0.303375006))
  6695. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.90734863e-006, 1.85597229, 0.341248155, -1, 2.73445636e-007, -5.96046519e-008, -5.96047869e-008, -4.97983308e-007, 1, 2.73445607e-007, 1, 4.97983308e-007))
  6696. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.524999976, 1, 1))
  6697. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Neon,0,0,"Hot pink","Part",Vector3.new(0.423000038, 0.200000003, 0.280375004))
  6698. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(1.828511, -0.0312466025, 1.86352599, -1.49011612e-007, -0.500000238, 0.866025269, 1, -3.47173224e-009, 1.70059423e-007, -8.20231492e-008, 0.866025269, 0.500000238))
  6699. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.300000012, 0.5))
  6700. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Neon,0,0,"Hot pink","Part",Vector3.new(0.275000006, 0.23712492, 0.375375003))
  6701. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(4.76837158e-007, -2.23306799, -0.714783967, 1, 1.28876025e-007, -1.49011612e-007, -8.8350177e-008, -0.38268286, -0.923879802, -1.76090154e-007, 0.923879862, -0.38268289))
  6702. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.524999976, 1.04999995, 0.800000012))
  6703. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.SmoothPlastic,0,0,"Sunrise","Part",Vector3.new(0.275000006, 0.410999984, 0.469375014))
  6704. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(7.15255737e-007, -2.25397205, 0.350374818, 1, 8.41783816e-008, -5.96046519e-008, -5.96046874e-008, 4.38378009e-007, -1, -8.41783532e-008, 1, 4.38378009e-007))
  6705. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 0.850000024, 0.699999988))
  6706. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Neon,0,0,"Hot pink","Part",Vector3.new(0.293000042, 0.200000003, 0.280375004))
  6707. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(0.930041909, -0.0312547088, 2.61983705, 2.68220924e-006, -0.866025388, 0.500000238, 1, 1.34954996e-006, -3.0269282e-006, 1.94662152e-006, 0.500000238, 0.866025388))
  6708. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.300000012, 0.5))
  6709. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.SmoothPlastic,0,0,"Sunrise","Part",Vector3.new(0.275000006, 0.315999985, 0.303375006))
  6710. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(3.75509262e-006, -2.0832181, 0.73186779, 1, 8.41783816e-008, -5.96046519e-008, -5.96046874e-008, 4.38378009e-007, -1, -8.41783532e-008, 1, 4.38378009e-007))
  6711. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 1, 0.5))
  6712. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.SmoothPlastic,0,0,"Sunrise","Part",Vector3.new(0.275000006, 0.698124886, 0.638374984))
  6713. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-2.02655792e-006, 1.51446426, -0.0117214918, -1, 2.45074915e-007, -5.96046519e-008, -5.96047798e-008, -5.27786028e-007, 1, 2.45074887e-007, 1, 5.27786028e-007))
  6714. mesh("SpecialMesh",Part,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.449999988, 1, 1))
  6715. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Neon,0,0,"Hot pink","Part",Vector3.new(0.293000042, 0.200000003, 0.280375004))
  6716. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-0.930041909, -0.03124547, 2.61983705, -2.75671505e-006, 0.866025388, -0.500000238, -1, -1.43972136e-006, 3.0197582e-006, 1.89532614e-006, 0.500000238, 0.866025329))
  6717. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.300000012, 0.5))
  6718. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Neon,0,0,"Hot pink","Part",Vector3.new(0.275000006, 0.238124937, 0.381375015))
  6719. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.1920929e-006, -2.16469121, -0.908047557, -1, -9.70897673e-008, -1.49011612e-007, 1.00514129e-007, 0.382683396, -0.923879564, 1.46723522e-007, -0.923879564, -0.382683367))
  6720. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.524999976, 1.04999995, 0.800000012))
  6721. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Metal,0,0,"Sunrise","Part",Vector3.new(0.275000006, 0.235124931, 0.586375237))
  6722. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-4.70876694e-006, -4.59392071, 4.83900547, -1, 3.01723389e-007, -3.27825546e-007, 2.23408545e-008, -0.700909495, -0.713250279, -4.44980344e-007, -0.713250279, 0.700909495))
  6723. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 1.04999995, 1))
  6724. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Metal,0,0,"Sunrise","Part",Vector3.new(0.275000006, 0.28125, 0.234375))
  6725. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-5.96046448e-008, -1.44312787, -0.230922222, 1, -1.99133694e-007, -5.96046519e-008, 9.3278274e-008, 0.173647881, 0.984807849, -1.85758211e-007, -0.984807849, 0.173647881))
  6726. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 1.04999995, 0.400000006))
  6727. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Neon,0,0,"Hot pink","Part",Vector3.new(0.423000038, 0.200000003, 0.280375004))
  6728. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.82851136, -0.0312532187, 1.86352599, 5.96046448e-008, 0.500000238, -0.866025329, -1, -3.57638221e-008, -8.94738008e-008, -7.57092948e-008, 0.866025269, 0.500000238))
  6729. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.300000012, 0.5))
  6730. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Metal,0,0,"Sunrise","Part",Vector3.new(0.275000006, 0.287124902, 0.227375031))
  6731. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-3.03983688e-006, 2.52654123, 0.448077202, -1, 2.51590194e-007, -1.49011612e-007, -1.49011683e-007, -2.59562086e-007, 1, 2.51590166e-007, 1, 2.59562114e-007))
  6732. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.349999994, 1, 1))
  6733. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Metal,0,0,"Sunrise","Part",Vector3.new(0.275000006, 0.22512494, 0.42337501))
  6734. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(5.36441803e-007, 2.19158387, 0.875249863, 1, 2.87006458e-007, -5.96046519e-008, -2.30892709e-008, 0.279828936, 0.960049868, 2.92219624e-007, -0.960049927, 0.279828966))
  6735. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 1, 0.5))
  6736. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Metal,0,0,"Sunrise","Part",Vector3.new(0.275000006, 0.221124932, 0.408374965))
  6737. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(4.76837158e-007, -2.34476542, -0.473634839, 1, 1.52993096e-007, -1.49011612e-007, -1.04336792e-007, -0.258818269, -0.965926051, -1.86346938e-007, 0.965926051, -0.258818269))
  6738. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.550000012, 1.04999995, 0.800000012))
  6739. Part=part(Enum.FormFactor.Custom,m8,Enum.Material.Metal,0,0,"Sunrise","Part",Vector3.new(0.275000006, 0.221124932, 0.408374965))
  6740. Partweld=weld(m8,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.1920929e-006, -2.29170871, -0.671645045, -1, -1.21206767e-007, -1.49011612e-007, 1.12563526e-007, 0.258819103, -0.965925813, 1.55643789e-007, -0.965925813, -0.258819103))
  6741. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.550000012, 1.04999995, 0.800000012))
  6742. Hitbox=part(Enum.FormFactor.Symmetric,m8,Enum.Material.Neon,0,1,"Hot pink","Hitbox",Vector3.new(6.5, 4.0, 2.0))
  6743. Hitboxweld=weld(m8,Handle,Hitbox,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-4.90843725, -0.0829741955, 0.0609716177, 0, -6.82671129e-008, -1, 1.1055932e-007, 1, -6.82671129e-008, 1, -1.1055932e-007, 7.547565e-015))
  6744. m8.Parent = rarm
  6745. m8:MakeJoints()
  6746.  
  6747. m8.Part.CanCollide = false
  6748. m8.Handle.CanCollide = false
  6749. ----------------------------------------------------
  6750. local cor8 = Instance.new("Part", rarm.Zyrodoxa)
  6751. cor8.Name = "Thingy"
  6752. cor8.Locked = true
  6753. cor8.BottomSurface = 0
  6754. cor8.CanCollide = false
  6755. cor8.Size = Vector3.new(1, 1, 1)
  6756. cor8.Transparency = 1
  6757. cor8.TopSurface = 0
  6758. corw8 = Instance.new("Weld", cor8)
  6759. corw8.Part0 = rarm
  6760. corw8.Part1 = cor8
  6761. corw8.C0 = CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(180))
  6762. corw8.C1 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  6763. weld8 = Instance.new("Weld", rarm.Zyrodoxa)
  6764. weld8.Part0 = cor8
  6765. weld8.Part1 = rarm.Zyrodoxa.Handle
  6766. weld8.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  6767. Amulite = Instance.new("PointLight",m7.Center)
  6768. Amulite.Brightness = 0
  6769. Amulite.Color = Color3.new(0,1,0)
  6770. ----------------------------------------------------
  6771. models = {m,m2,m3,m4,m5,m6,m7,m8}
  6772. parts = {}
  6773. Stepped:connect(function()
  6774. for i,v in pairs(models) do
  6775. for _, a in pairs(v:GetChildren()) do
  6776. if v:IsA("Part") and v.Name ~= "Thingy" then
  6777. table.insert(parts, a)
  6778. for i,v in pairs(parts) do
  6779. v.CanCollide = false
  6780. end
  6781. end
  6782. end
  6783. end
  6784. end)
  6785. ----------------------------------------------------
  6786. local animpose = "Idle1"
  6787. local lastanimpose = "Idle1"
  6788. local grab = false
  6789. local Smooth = 1
  6790. local sine = 0
  6791. local change = 1
  6792. local val = 0
  6793. local ffing = false
  6794. ----------------------------------------------------
  6795. --[[local hitbox = m8.Hitbox --Zyrodoxa is the name of the dagger k
  6796.  
  6797. function FindHumanoids()
  6798. local function c_region(Position, Size)
  6799. local SizeOffset = Size/2
  6800. local Point1 = Position - SizeOffset
  6801. local Point2 = Position + SizeOffset
  6802. local a = Instance.new("Part", workspace)
  6803. a.Anchored = true
  6804. a.Size = Size
  6805. a.Position = Position
  6806. print("Hey!, I'm making a part!")
  6807. return Region3.new(Point1, Point2)
  6808. end
  6809.  
  6810. local a = c_region((hitbox.CFrame * CFrame.new(0, -1.285, 0)), Vector3.new(0.22, 0.6425, 1.22))
  6811. local b = c_region((hitbox.CFrame * CFrame.new(0, -0.6425, 0)), Vector3.new(0.22, 0.6425, 1.22))
  6812. local c = c_region((hitbox.CFrame * CFrame.new(0, 0.6425, 0)), Vector3.new(0.22, 0.6425, 1.22))
  6813. local d = c_region((hitbox.CFrame * CFrame.new(0, 1.285, 0)), Vector3.new(0.22, 0.6425, 1.22))
  6814.  
  6815. local regions = {a, b, c, d}
  6816.  
  6817. local found_humanoids = {}
  6818. local already_found = {char.Name}
  6819.  
  6820. for _, region in pairs(regions) do
  6821. for _, part in pairs(game.Workspace:FindPartsInRegion3WithIgnoreList(region, rarm.Zyrodoxa:GetChildren(), 100)) do
  6822. print(part, part.Parent, part.Name) ---nope
  6823. if part.Parent:FindFirstChild("Humanoid") ~= nil and part.Parent.ClassName == "Model" and not part:isDescendantOf(char) then
  6824. local humanoid = part.Parent:FindFirstChild("Humanoid")
  6825. local name = humanoid.Parent.Name
  6826. local exists = false
  6827. for _, n in pairs(already_found) do
  6828. if n == name then
  6829. exists = true
  6830. end
  6831. end
  6832. if not exists then
  6833. table.insert(already_found, name)
  6834. table.insert(found_humanoids, humanoid)
  6835. end
  6836. elseif part.Parent.Parent:FindFirstChild("Humanoid") ~= nil and part.Parent.Parent.ClassName == "Model" and not part:isDescendantOf(char) then
  6837. local humanoid = part.Parent.Parent:FindFirstChild("Humanoid")
  6838. local name = humanoid.Parent.Parent.Name
  6839. local exists = false
  6840. for _, n in pairs(already_found) do
  6841. if n == name then
  6842. exists = true
  6843. end
  6844. end
  6845. if not exists then
  6846. table.insert(already_found, name)
  6847. table.insert(found_humanoids, humanoid)
  6848. end
  6849. end
  6850. end
  6851. end
  6852. return found_humanoids
  6853. end
  6854.  
  6855. local humanoids = FindHumanoids()
  6856. if #humanoids == 0 then
  6857. for i, v in pairs(humanoids) do
  6858. print(v.Parent.Name)
  6859. if Debounces.Slashing == true then
  6860. v:TakeDamage(math.random(50,70) * math.random(1,3)) --max 60 damage?
  6861. elseif Debounces.Slashing == false then
  6862. wait()
  6863. end
  6864. end
  6865. wait(0.3)
  6866. end]]--
  6867. ----------------------------------------------------
  6868. --[[mouse.KeyDown:connect(function(key)
  6869. if key == "f" then
  6870. if Debounces.CanAttack == true then
  6871. Debounces.CanAttack = false
  6872. Debounces.NoIdl = true
  6873. Debounces.on = true
  6874. for i = 1, 20 do
  6875. corw8.C0 = Lerp(corw8.C0, CFrame.new(0, -1.05, 0) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(180)), 0.3)
  6876. corw8.C1 = Lerp(corw8.C1, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  6877. CR.Joint.C1 = Lerp(CR.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(-4),0,0),0.1)
  6878. CR2.Joint.C1 = Lerp(CR2.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(0),0,0),0.1)
  6879. CR3.Joint.C1 = Lerp(CR3.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(0),0,0),0.1)
  6880. CR4.Joint.C1 = Lerp(CR4.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(0),0,0),0.1)
  6881. CR5.Joint.C1 = Lerp(CR5.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(0),0,0),0.1)
  6882. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.6,0.6,-0.2)*CFrame.Angles(math.rad(8),math.rad(22),math.rad(15)), 0.8)
  6883. rarm.Weld.C1 = Lerp(rarm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
  6884. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.6,0.6,0.2)*CFrame.Angles(math.rad(-8),math.rad(12),math.rad(-12)), 0.8)
  6885. larm.Weld.C1 = Lerp(larm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
  6886. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-0.1)*CFrame.Angles(math.rad(-15),math.rad(0),math.rad(0)), 0.5)
  6887. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(20),math.rad(0)), 0.5)
  6888. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-6), math.rad(0), 0), 0.1)
  6889. torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-20), 0), 0.1)
  6890. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, -0.14) * CFrame.Angles(math.rad(-3), math.rad(0), math.rad(0)), 0.1)
  6891. lleg.Weld.C1 = Lerp(lleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(-10), math.rad(5)), 0.1)
  6892. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, -0.06) * CFrame.Angles(math.rad(3), math.rad(0), math.rad(0)), 0.1)
  6893. rleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(10), math.rad(-5)), 0.1)
  6894. if Debounces.on == false then
  6895. break
  6896. end
  6897. fat.Event:wait()
  6898. end
  6899. end
  6900. end
  6901. end)]]--
  6902. ----------------------------------------------------
  6903. mod4 = Instance.new("Model",char)
  6904.  
  6905. ptez = {0.7, 0.8, 0.9, 1}
  6906.  
  6907. function FindNearestTorso(Position,Distance,SinglePlayer)
  6908. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  6909. local List = {}
  6910. for i,v in pairs(workspace:GetChildren())do
  6911. if v:IsA("Model")then
  6912. if v:findFirstChild("Torso")then
  6913. if v ~= char then
  6914. if(v.Torso.Position -Position).magnitude <= Distance then
  6915. table.insert(List,v)
  6916. end
  6917. end
  6918. end
  6919. end
  6920. end
  6921. return List
  6922. end
  6923.  
  6924. function Slam()
  6925. local part=Instance.new('Part',mod4)
  6926. part.Anchored=true
  6927. part.CanCollide=false
  6928. part.FormFactor='Custom'
  6929. part.Size=Vector3.new(.2,.2,.2)
  6930. part.CFrame=root.CFrame*CFrame.new(0,-2.8,-1.4)*CFrame.Angles(math.rad(90),0,0)
  6931. part.Transparency=.7
  6932. part.BrickColor=BrickColor.new('Carnation pink')
  6933. mesh=Instance.new('SpecialMesh',part)
  6934. mesh.MeshId='http://www.roblox.com/asset/?id=3270017'
  6935. mesh.Scale=Vector3.new(3,3,3)
  6936. local part2=Instance.new('Part',mod4)
  6937. part2.Anchored=true
  6938. part2.CanCollide=false
  6939. part2.FormFactor='Custom'
  6940. part2.Size=Vector3.new(.2,.2,.2)
  6941. part2.CFrame=root.CFrame*CFrame.new(0,-2.4,-1.6)
  6942. part2.Transparency=.7
  6943. part2.BrickColor=BrickColor.new('Hot pink')
  6944. mesh2=Instance.new('SpecialMesh',part2)
  6945. mesh2.MeshId='http://www.roblox.com/asset/?id=20329976'
  6946. mesh2.Scale=Vector3.new(3,1.5,3)
  6947. x = Instance.new("Sound",larm)
  6948. x.SoundId = "http://www.roblox.com/asset/?id=137977694"
  6949. x.Pitch = ptez[math.random(1,#ptez)]
  6950. x.Volume = 1
  6951. wait(.1)
  6952. x1 = Instance.new("Sound",larm)
  6953. x1.SoundId = "http://www.roblox.com/asset/?id=137977694"
  6954. x1.Pitch = ptez[math.random(1,#ptez)]
  6955. x1.Volume = 1
  6956. wait(.1)
  6957. x:Play()
  6958. x1:Play()
  6959. for i,v in pairs(FindNearestTorso(torso.CFrame.p,4))do
  6960. if v:FindFirstChild('Humanoid') then
  6961. v.Humanoid:TakeDamage(math.random(9999998,9999999))
  6962. end
  6963. end
  6964.  
  6965.  
  6966.  
  6967. coroutine.resume(coroutine.create(function()
  6968. for i=0,0.62,0.13 do
  6969. wait()
  6970. part.CFrame=part.CFrame
  6971. part.Transparency=i
  6972. mesh.Scale=mesh.Scale+Vector3.new(0.4,0.4,0.4)
  6973. part2.CFrame=part2.CFrame
  6974. part2.Transparency=i
  6975. mesh2.Scale=mesh2.Scale+Vector3.new(0.4,0.2,0.4)
  6976. end
  6977. part.Parent=nil
  6978. part2.Parent=nil
  6979. x:Destroy()
  6980. end))
  6981. end
  6982. ----------------------------------------------------
  6983. wPart = function(x,y,z,color,tr,cc,an,parent)
  6984. local wp = Instance.new('WedgePart',parent or Weapon)
  6985. wp.formFactor = 'Custom'
  6986. wp.Size = Vector3.new(x,y,z)
  6987. wp.BrickColor = BrickColor.new(color)
  6988. wp.CanCollide = cc
  6989. wp.Transparency = tr
  6990. wp.Anchored = an
  6991. wp.TopSurface,wp.BottomSurface = 0,0
  6992. return wp
  6993. end
  6994.  
  6995. Mesh = function(par,num,x,y,z)
  6996. local msh = _
  6997. if num == 1 then
  6998. msh = Instance.new("CylinderMesh",par)
  6999. elseif num == 2 then
  7000. msh = Instance.new("SpecialMesh",par)
  7001. msh.MeshType = 3
  7002. elseif num == 3 then
  7003. msh = Instance.new("BlockMesh",par)
  7004. elseif num == 4 then
  7005. msh = Instance.new("SpecialMesh",par)
  7006. msh.MeshType = "Torso"
  7007. elseif type(num) == 'string' then
  7008. msh = Instance.new("SpecialMesh",par)
  7009. msh.MeshId = num
  7010. end
  7011. msh.Scale = Vector3.new(x,y,z)
  7012. return msh
  7013. end
  7014.  
  7015. local function CFrameFromTopBack(at, top, back)
  7016. local right = top:Cross(back)
  7017. return CFrame.new(at.x, at.y, at.z,
  7018. right.x, top.x, back.x,
  7019. right.y, top.y, back.y,
  7020. right.z, top.z, back.z)
  7021. end
  7022.  
  7023. function Triangle(a, b, c)
  7024. local edg1 = (c-a):Dot((b-a).unit)
  7025. local edg2 = (a-b):Dot((c-b).unit)
  7026. local edg3 = (b-c):Dot((a-c).unit)
  7027. if edg1 <= (b-a).magnitude and edg1 >= 0 then
  7028. a, b, c = a, b, c
  7029. elseif edg2 <= (c-b).magnitude and edg2 >= 0 then
  7030. a, b, c = b, c, a
  7031. elseif edg3 <= (a-c).magnitude and edg3 >= 0 then
  7032. a, b, c = c, a, b
  7033. else
  7034. print("unreachable")
  7035. end
  7036. local len1 = (c-a):Dot((b-a).unit)
  7037. local len2 = (b-a).magnitude - len1
  7038. local width = (a + (b-a).unit*len1 - c).magnitude
  7039. local maincf = CFrameFromTopBack(a, (b-a):Cross(c-b).unit, -(b-a).unit)
  7040. local list = {}
  7041. if len1 > 0.01 then
  7042. local w1 = wPart(0,0,0,'Hot pink',0.5,false,true,char)
  7043. local sz = Vector3.new(0.2, width, len1)
  7044. w1.Size = sz
  7045. local sp = Mesh(w1,2,0,0,0)
  7046. sp.MeshType='Wedge'
  7047. sp.Scale=Vector3.new(0,1,1)*sz/w1.Size
  7048. w1:BreakJoints()
  7049. w1.Anchored = true
  7050. w1.Transparency = 0.7
  7051. Spawn(function()
  7052. for i=0,1,0.1 do
  7053. fat.Event:wait()
  7054. w1.Transparency=w1.Transparency+0.03
  7055. end
  7056. end)
  7057. w1.CFrame = maincf*CFrame.Angles(math.pi,0,math.pi/2)*CFrame.new(0,width/2,len1/2)
  7058. table.insert(list,w1)
  7059. end
  7060. if len2 > 0.01 then
  7061. local w2 = wPart(0,0,0,'Hot pink',0.5,false,true,char)
  7062. local sz = Vector3.new(0.2, width, len2)
  7063. w2.Size = sz
  7064. local sp = Mesh(w2,2,0,0,0)
  7065. sp.MeshType='Wedge'
  7066. sp.Scale=Vector3.new(0,1,1)*sz/w2.Size
  7067. w2:BreakJoints()
  7068. w2.Anchored = true
  7069. w2.Transparency = 0.7
  7070. Spawn(function()
  7071. for i=0,1,0.1 do
  7072. fat.Event:wait()
  7073. w2.Transparency=w2.Transparency+0.03
  7074. end
  7075. end)
  7076. w2.CFrame = maincf*CFrame.Angles(math.pi,math.pi,-math.pi/2)*CFrame.new(0,width/2,-len1 - len2/2)
  7077. table.insert(list,w2)
  7078. end
  7079. return unpack(list)
  7080. end
  7081.  
  7082.  
  7083. ----------------------------------------------------
  7084. function Dmg()
  7085. local partofdeath = m8.Hitbox
  7086. local function CreateRegion3FromLocAndSize(Position, Size)
  7087. local SizeOffset = Size/2
  7088. local Point1 = Position - SizeOffset
  7089. local Point2 = Position + SizeOffset
  7090. return Region3.new(Point1, Point2)
  7091. end
  7092. local reg = CreateRegion3FromLocAndSize(partofdeath.Position, partofdeath.Size)
  7093. for i, v in pairs(game.Workspace:FindPartsInRegion3WithIgnoreList(reg, char:GetChildren(), 100)) do
  7094. Spawn(function()
  7095. if Debounces.Slashing == true and Debounces.Slashed == false then
  7096. Debounces.Slashed = true
  7097. ypcall(function()
  7098. local humanoid = v.Parent:FindFirstChild("Humanoid") or v.Parent.Parent:FindFirstChild("Humanoid")
  7099. humanoid:TakeDamage(math.random(50,70))
  7100. end)
  7101. wait(.4)
  7102. Debounces.Slashed = false
  7103. end
  7104. end)
  7105. end
  7106. end
  7107. ----------------------------------------------------
  7108. pts = {0.8, 0.85, 0.9, 0.95, 1, 1.05, 1.1}
  7109. ptz = {0.7, 0.8, 0.9, 1}
  7110. idz = {"161006212", "161006195"}
  7111. function attackone()
  7112. for i = 1, 13 do
  7113. corw8.C0 = Lerp(corw8.C0, CFrame.new(-0.3, -1, -0.3) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(90)), 0.8)
  7114. corw8.C1 = Lerp(corw8.C1, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(20), math.rad(30), math.rad(0)), 0.8)
  7115. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.2, 0.5, -0.3)*CFrame.Angles(math.rad(70),math.rad(0),math.rad(-10)), 0.3)
  7116. rarm.Weld.C1 = Lerp(rarm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.3)
  7117. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5, 0.5, 0.4)*CFrame.Angles(math.rad(-30),math.rad(0),math.rad(-10)), 0.5)
  7118. larm.Weld.C1 = Lerp(larm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(-40),math.rad(0)), 0.5)
  7119. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, 0)*CFrame.Angles(math.rad(0),math.rad(-50),0), 0.5)
  7120. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0, 0, 0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.5)
  7121. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(50), 0), 0.7)
  7122. torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(1, -1, 0) * CFrame.Angles(math.rad(18), math.rad(0), math.rad(15)), 0.7)
  7123. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.4, -1.3, 0) * CFrame.Angles(math.rad(0), math.rad(40), math.rad(0)), 0.5)
  7124. lleg.Weld.C1 = Lerp(lleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(15)), 0.5)
  7125. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.7, -0.9, -0.4) * CFrame.Angles(math.rad(0), math.rad(-50), math.rad(0)), 0.5)
  7126. rleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-10)), 0.5)
  7127. if Debounces.on == false then
  7128. break
  7129. end
  7130. fat.Event:wait()
  7131. end
  7132. Debounces.Slashing = true
  7133. wait(0.2)
  7134. --[[z = Instance.new("Sound", hed)
  7135. z.SoundId = "rbxassetid://"..idz[math.random(1,#idz)]
  7136. z.Pitch = ptz[math.random(1,#ptz)]
  7137. z.Volume = 1
  7138. wait(.01)
  7139. z:Play()]]--
  7140.  
  7141. for i = 1, 14 do
  7142. Dmg()
  7143. corw8.C0 = Lerp(corw8.C0, CFrame.new(0, -1, 0.2) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(90)), 0.8)
  7144. corw8.C1 = Lerp(corw8.C1, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(-40), math.rad(30), math.rad(0)), 0.8)
  7145. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5, 0.5, 0.4)*CFrame.Angles(math.rad(30),math.rad(0),math.rad(100)), 0.4)
  7146. rarm.Weld.C1 = Lerp(rarm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(40),math.rad(0)), 0.4)
  7147. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5, 0.5, -0.3)*CFrame.Angles(math.rad(100),math.rad(0),math.rad(-20)), 0.4)
  7148. larm.Weld.C1 = Lerp(larm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(20),math.rad(0)), 0.4)
  7149. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, 0)*CFrame.Angles(math.rad(0),math.rad(40),0), 0.7)
  7150. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0, 0, 0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
  7151. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, -1) * CFrame.Angles(math.rad(-10), math.rad(-40), 0), 0.4)
  7152. torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(-1, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)
  7153. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.7, -0.9, -0.4) * CFrame.Angles(math.rad(0), math.rad(40), math.rad(0)), 0.5)
  7154. lleg.Weld.C1 = Lerp(lleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(-14), math.rad(0), math.rad(15)), 0.5)
  7155. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1.1, 0) * CFrame.Angles(math.rad(0), math.rad(-50), math.rad(0)), 0.5)
  7156. rleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(8), math.rad(0), math.rad(-10)), 0.5)
  7157. if Debounces.on == false then break end
  7158. rs:wait()
  7159. end
  7160. Debounces.Slashing = false
  7161. end
  7162. function attacktwo()
  7163. Debounces.Slashing = true
  7164. for i = 1, 14 do
  7165. Dmg()
  7166. corw8.C0 = Lerp(corw8.C0, CFrame.new(-0.37, -1, 0) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(-90)), 0.4)
  7167. corw8.C1 = Lerp(corw8.C1, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(-60), math.rad(0), math.rad(0)), 0.4)
  7168. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.65,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(80)), 0.7)
  7169. rarm.Weld.C1 = Lerp(rarm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.7)
  7170. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0) *CFrame.Angles(math.rad(0),math.rad(0),math.rad (-70)), 0.5)
  7171. larm.Weld.C1 = Lerp(larm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.4)
  7172. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(-90), math.rad(0)), 0.5)
  7173. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0, 0, 0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
  7174. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, -2) * CFrame.Angles(math.rad(0), math.rad(90), math.rad(0)), 0.5)
  7175. torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)
  7176. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles (math.rad(-10), 0, math.rad(-10)), 0.5)
  7177. lleg.Weld.C1 = Lerp(lleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.5)
  7178. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles (math.rad(10), 0, math.rad(10)), 0.5)
  7179. rleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.5)
  7180. if Debounces.on == false then
  7181. break
  7182. end
  7183. rs:wait()
  7184. end
  7185. end
  7186. ----------------------------------------------------
  7187. ComboNum = 0
  7188. mouse.Button1Down:connect(function()
  7189. if Debounces.CanAttack == true then
  7190. Debounces.CanAttack = false
  7191. Debounces.NoIdl = true
  7192. Debounces.on = true
  7193. if ComboNum == 0 then
  7194. attackone()
  7195. elseif ComboNum == 1 then
  7196. attacktwo()
  7197. --[[elseif ComboNum == 2 then
  7198. attackthree()]]--
  7199. end
  7200. ComboNum = ComboNum + 1
  7201. Debounces.CanAttack = true
  7202. Debounces.on = false
  7203. wait(.5)
  7204. if Debounces.CanAttack == true then
  7205. ComboNum = 0
  7206. Debounces.NoIdl = false
  7207. end
  7208. end
  7209. end)
  7210. ----------------------------------------------------
  7211. definition = 5
  7212. bc = {}
  7213. bezierparts = {}
  7214. function NoOutline(Part)
  7215. Part.TopSurface,Part.BottomSurface,Part.LeftSurface,Part.RightSurface,Part.FrontSurface,Part.BackSurface = 10,10,10,10,10,10
  7216. end
  7217. function draw(p,d)
  7218. for i=1,d do
  7219. local t = i/d
  7220. bc[i] = p[1]*(1-t)^2+2*p[2]*(1-t)*t+p[3]*t^2
  7221. end
  7222. for i=1,d do
  7223. local bcs = Instance.new("Part",char)
  7224. NoOutline(bcs)
  7225. bcs.Anchored = true
  7226. bcs.CanCollide = false
  7227. bcs.Material = "Neon"
  7228. bcs.BrickColor = BrickColor.new("Hot pink")
  7229. bcs.Size = Vector3.new(1,1,1)
  7230. bcs.Shape = Enum.PartType.Ball
  7231. bcs.CFrame = CFrame.new(bc[i])
  7232. local bcp = Instance.new("Part",char)
  7233. NoOutline(bcp)
  7234. bcp.Anchored = true
  7235. bcp.CanCollide = false
  7236. bcp.Material = "Neon"
  7237. bcp.BrickColor = BrickColor.new("Hot pink")
  7238. local cm = Instance.new("CylinderMesh")
  7239. cm.Parent = bcp
  7240. if i ~= 1 then
  7241. bcp.CFrame = CFrame.new(bc[i]:Lerp(bc[i-1],0.5),bc[i])*CFrame.Angles(math.pi/2,0,0)
  7242. bcp.Size = Vector3.new(1,(bc[i]-bc[i-1]).magnitude,1)
  7243. else
  7244. bcp.CFrame = CFrame.new(bc[i]:Lerp(p[1],0.5),bc[i])*CFrame.Angles(math.pi/2,0,0)
  7245. bcp.Size = Vector3.new(1,(bc[i]-p[1]).magnitude,1)
  7246. end
  7247. table.insert(bezierparts, bcs)
  7248. table.insert(bezierparts, bcp)
  7249. end
  7250. Spawn(function() fat.Event:wait()
  7251. for i,v in pairs(bezierparts) do
  7252. v.Transparency = 1
  7253. end
  7254. end)
  7255. end
  7256. --local points = {larm.Position,rarn.Position,invisipart.Position}
  7257. --draw(points,definition)
  7258. mouse.KeyDown:connect(function(key)
  7259. if key == "f" then
  7260. if Debounces.CanAttack == true then
  7261. Debounces.CanAttack = false
  7262. Debounces.NoIdl = true
  7263. Debounces.on = true
  7264. for i = 1, 20 do
  7265. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.3,0.65,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-40)), 0.2)
  7266. rarm.Weld.C1 = Lerp(rarm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.7)
  7267. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.3,0.65,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(40)), 0.2)
  7268. larm.Weld.C1 = Lerp(larm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.7)
  7269. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0), math.rad(0)), 0.2)
  7270. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0, 0, 0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
  7271. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.2)
  7272. torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)
  7273. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles (math.rad(0), 0, math.rad(-10)), 0.2)
  7274. lleg.Weld.C1 = Lerp(lleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.5)
  7275. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles (math.rad(0), 0, math.rad(10)), 0.2)
  7276. rleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.5)
  7277. if Debounces.on == false then
  7278. break
  7279. end
  7280. fat.Event:wait()
  7281. end
  7282. rpart = Instance.new("Part",rarm)
  7283. NoOutline(rpart)
  7284. rpart.Anchored = false
  7285. rpart.Size = Vector3.new(1,1,1)
  7286. rpart.CFrame = rarm.CFrame * CFrame.new(0,-1,0)
  7287. rpart.Transparency = 1
  7288. newWeld(rarm, rpart, 0, 0, 0)
  7289. rpart.Weld.C1 = CFrame.new(0, 1.1, 0)
  7290. lpart = Instance.new("Part",larm)
  7291. NoOutline(lpart)
  7292. lpart.Anchored = false
  7293. lpart.Size = Vector3.new(1,1,1)
  7294. lpart.CFrame = larm.CFrame * CFrame.new(0,-1,0)
  7295. lpart.Transparency = 1
  7296. newWeld(larm, lpart, 0, 0, 0)
  7297. lpart.Weld.C1 = CFrame.new(0, 1.1, 0)
  7298. invisipart = Instance.new("Part",torso)
  7299. NoOutline(invisipart)
  7300. invisipart.Anchored = false
  7301. invisipart.Size = Vector3.new(1,1,1)
  7302. invisipart.Transparency = 1
  7303. invisipart.CFrame = torso.CFrame
  7304. newWeld(torso, invisipart, 0, 0, 0)
  7305. invisipart.Weld.C1 = CFrame.new(0, 0, 6)
  7306. table.insert(bezierparts, rpart)
  7307. table.insert(bezierparts, lpart)
  7308. table.insert(bezierparts, invisipart)
  7309. for i = 1, 40 do
  7310. local points = {lpart.Position,invisipart.Position,rpart.Position}
  7311. draw(points,definition)
  7312. --invisipart.Weld.C1 = invisipart.Weld.C1 + Vector3.new(0,0,0.6)
  7313. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.65,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(90)), 0.1)
  7314. rarm.Weld.C1 = Lerp(rarm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.7)
  7315. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.65,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-90)), 0.1)
  7316. larm.Weld.C1 = Lerp(larm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.7)
  7317. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0), math.rad(0)), 0.2)
  7318. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0, 0, 0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
  7319. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.2)
  7320. torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)
  7321. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles (math.rad(0), 0, math.rad(-10)), 0.2)
  7322. lleg.Weld.C1 = Lerp(lleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.5)
  7323. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles (math.rad(0), 0, math.rad(10)), 0.2)
  7324. rleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.5)
  7325. if Debounces.on == false then
  7326. break
  7327. end
  7328. fat.Event:wait()
  7329. end
  7330. for i,v in pairs(bezierparts) do
  7331. v:Destroy()
  7332. end
  7333. --draw(points,definition)
  7334. if Debounces.CanAttack == false then
  7335. Debounces.CanAttack = true
  7336. Debounces.NoIdl = false
  7337. Debounces.on = false
  7338. end
  7339. end
  7340. end
  7341. end)
  7342. ----------------------------------------------------
  7343. pitches = {0.85, 0.9, 0.95, 1, 1.05, 1.1}
  7344. IDs = {"415880409","415880478"}
  7345. mouse.KeyDown:connect(function(key)
  7346. if key == "h" then
  7347. if Debounces.CanJoke == true then
  7348. Debounces.CanJoke = false
  7349. z = Instance.new("Sound",hed)
  7350. z.SoundId = "rbxassetid://"..IDs[math.random(1,#IDs)]
  7351. z.Pitch = 1
  7352. z.Volume = 1
  7353. z1 = Instance.new("Sound",hed)
  7354. z1.SoundId = z.SoundId
  7355. z1.Pitch = 1
  7356. z1.Volume = 1
  7357. wait()
  7358. z:Play()
  7359. z1:Play()
  7360. wait(5)
  7361. z:Destroy()
  7362. z1:Destroy()
  7363. if Debounces.CanJoke == false then
  7364. Debounces.CanJoke = true
  7365. end
  7366. end
  7367. end
  7368. end)
  7369. ----------------------------------------------------
  7370. mouse.KeyDown:connect(function(key)
  7371. if string.byte(key) == 49 then --rightctrl
  7372. hed.face.Texture = "rbxassetid://1085435"
  7373. char.Humanoid.WalkSpeed = 90
  7374. z.Volume = 0
  7375. z2 = Instance.new("Sound",char)
  7376. z2.SoundId = "rbxassetid://176238381"
  7377. z2.Looped = true
  7378. z2.Pitch = 1
  7379. z2.Volume = 1
  7380. z2:Play()
  7381.  
  7382. player = game.Players.LocalPlayer
  7383. b = Instance.new("BillboardGui", hed)
  7384. b.Size = UDim2.new(0, 200, 0, 40)
  7385. b.StudsOffset = Vector3.new(0, 1.9, 0)
  7386. t = Instance.new("TextLabel", b)
  7387. t.BackgroundTransparency = 1
  7388. t.Size = UDim2.new(0, 200, 0, 50)
  7389. t.Font = "SourceSansBold"
  7390. t.FontSize = "Size32"
  7391. t.Text = "[RAGE MODE ACTIVATED]"
  7392. t.TextColor3 = Color3.new(1, 1, 1)
  7393. t.TextStrokeTransparency = 0
  7394. t.Position = UDim2.new(0, 0, -0.4, -11)
  7395.  
  7396. wait(10)
  7397. char.Humanoid.WalkSpeed = 16
  7398. b:Remove()
  7399. z2:Stop()
  7400. z.Volume = 0.8
  7401. hed.face.Texture = "rbxassetid://362505168"
  7402. end
  7403. end)
  7404. ----------------------------------------------------
  7405. mouse.KeyDown:connect(function(key)
  7406. if key == "j" then
  7407. if Debounces.CanJoke == true then
  7408. Debounces.CanJoke = false
  7409. z = Instance.new("Sound",hed)
  7410. z.SoundId = "rbxassetid://415859013"
  7411. z.Pitch = pitches[math.random(1,#pitches)]
  7412. z.Volume = 1
  7413. wait()
  7414. z:Play()
  7415. wait(2)
  7416. z:Destroy()
  7417. if Debounces.CanJoke == false then
  7418. Debounces.CanJoke = true
  7419. end
  7420. end
  7421. end
  7422. end)
  7423. ----------------------------------------------------
  7424. mouse.KeyDown:connect(function(key)
  7425. if key == "k" then
  7426. if Debounces.CanJoke == true then
  7427. Debounces.CanJoke = false
  7428. z = Instance.new("Sound",hed)
  7429. z.SoundId = "rbxassetid://415859085"
  7430. z.Pitch = pitches[math.random(1,#pitches)]
  7431. z.Volume = 1
  7432. wait()
  7433. z:Play()
  7434. wait(2)
  7435. z:Destroy()
  7436. if Debounces.CanJoke == false then
  7437. Debounces.CanJoke = true
  7438. end
  7439. end
  7440. end
  7441. end)
  7442. ----------------------------------------------------
  7443. Grab = false
  7444. mouse.KeyDown:connect(function(key)
  7445. if key == "z" then
  7446. Debounces.on = true
  7447. Debounces.NoIdl = true
  7448. Debounces.ks = true
  7449. if Grab == false then
  7450. gp = nil
  7451. for i = 1, 20 do
  7452. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.65,0)*CFrame.Angles(math.rad(-20),math.rad(0),math.rad(20)), 0.2)
  7453. rarm.Weld.C1 = Lerp(rarm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
  7454. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.65,0)*CFrame.Angles(math.rad(80),math.rad(0),math.rad(-80)), 0.2)
  7455. larm.Weld.C1 = Lerp(larm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
  7456. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(-70),0), 0.2)
  7457. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
  7458. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(70), 0), 0.2)
  7459. torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0,-1,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
  7460. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(30), math.rad(-20)), 0.2)
  7461. lleg.Weld.C1 = Lerp(lleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)
  7462. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(-15), math.rad(20)), 0.2)
  7463. rleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)
  7464. if Debounces.on == false then break end
  7465. fat.Event:wait()
  7466. end
  7467. con1=larm.LeftArm.LeftArmPlate.Touched:connect(function(hit)
  7468. ht = hit.Parent
  7469. for i,v in pairs(ht:GetChildren()) do
  7470. if v:IsA("Part") then
  7471. v.CanCollide = false
  7472. end
  7473. end
  7474. hum1=ht:FindFirstChild('Humanoid')
  7475. if hum1 ~= nil then
  7476. if Debounces.ks==true then
  7477. z = Instance.new("Sound",hed)
  7478. z.SoundId = "rbxassetid://169380525"
  7479. z.Volume = 1
  7480. z:Play()
  7481. Debounces.ks=false
  7482. end
  7483. hum1.PlatformStand=true
  7484. hum1:ChangeState'Physics'
  7485. gp = ht
  7486. Grab = true
  7487. asd=weld5(larm,ht:FindFirstChild("Torso"),CFrame.new(0,-1,0.6),CFrame.new(0,0,0))
  7488. asd.Parent = larm
  7489. asd.Name = "asd"
  7490. asd.C0=asd.C0*CFrame.Angles(math.rad(-90),math.rad(180),0)
  7491. stanceToggle = "Grabbed"
  7492. --[[elseif hum1 == nil then
  7493. con1:disconnect()
  7494. wait() return]]--
  7495. end
  7496. end)
  7497. for i = 1, 20 do
  7498. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.65,0)*CFrame.Angles(math.rad(-20),math.rad(0),math.rad(20)), 0.2)
  7499. rarm.Weld.C1 = Lerp(rarm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
  7500. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.4,0.65,0)*CFrame.Angles(math.rad(70),math.rad(0),math.rad(20)), 0.2)
  7501. larm.Weld.C1 = Lerp(larm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
  7502. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(50),0), 0.2)
  7503. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
  7504. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-50), 0), 0.2)
  7505. torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0,-1,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
  7506. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(30), math.rad(-20)), 0.2)
  7507. lleg.Weld.C1 = Lerp(lleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)
  7508. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-15), math.rad(20)), 0.2)
  7509. rleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)
  7510. if Debounces.on == false then break end
  7511. fat.Event:wait()
  7512. end
  7513. con1:disconnect()
  7514. Debounces.on = false
  7515. Debounces.NoIdl = false
  7516. elseif Grab == true then
  7517. Grab = false
  7518. --[[for i = 1, 16 do
  7519. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.65,0)*CFrame.Angles(math.rad(0),math.rad(50),math.rad(60)), 0.3)
  7520. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.65,-.5)*CFrame.Angles(math.rad(130),math.rad(0),math.rad(-60)), 0.3)
  7521. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(14),math.rad(70),0), 0.3)
  7522. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-70), 0), 0.3)
  7523. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(30), math.rad(-20)), 0.3)
  7524. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-15), math.rad(20)), 0.3)
  7525. cor.Weld.C1 = Lerp(cor.Weld.C1, CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(40), 0), 0.3)
  7526. if Debounces.on == false then end
  7527. rs:wait()
  7528. end]]--
  7529. for i = 1, 16 do
  7530. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.65,0)*CFrame.Angles(math.rad(-20),math.rad(0),math.rad(0)), 0.3)
  7531. rarm.Weld.C1 = Lerp(rarm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-20)), 0.5)
  7532. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.65,0)*CFrame.Angles(math.rad(140),math.rad(0),math.rad(0)), 0.3)
  7533. larm.Weld.C1 = Lerp(larm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(60)), 0.5)
  7534. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(20),math.rad(-60),0), 0.3)
  7535. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
  7536. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(70), 0), 0.3)
  7537. torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0,-1,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
  7538. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(30), math.rad(-20)), 0.3)
  7539. lleg.Weld.C1 = Lerp(lleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(40)), 0.4)
  7540. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-15), math.rad(20)), 0.3)
  7541. rleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)
  7542. if Debounces.on == false then end
  7543. rs:wait()
  7544. end
  7545. for i = 1, 12 do
  7546. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0) *CFrame.Angles(math.rad(0),math.rad(0),math.rad(20)), 0.6)
  7547. rarm.Weld.C1 = Lerp(rarm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
  7548. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.3,-0.1)*CFrame.Angles(math.rad(45),math.rad(0),math.rad(-32)), 0.6)
  7549. larm.Weld.C1 = Lerp(larm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
  7550. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(14),math.rad(40), math.rad(14)),0.6)
  7551. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
  7552. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.6, 0) * CFrame.Angles(math.rad(-50), math.rad(0), math.rad(0)), 0.6)
  7553. torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0,-1,0)*CFrame.Angles(math.rad(0),math.rad(40),math.rad(0)), 0.5)
  7554. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.8, -1, 0) * CFrame.Angles(math.rad(-10), 0, math.rad(0)), 0.6)
  7555. lleg.Weld.C1 = Lerp(lleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(40)), 0.4)
  7556. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.4, .2, -0.8) * CFrame.Angles(math.rad(30), math.rad(0), math.rad(0)), 0.6)
  7557. rleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(20), math.rad(0)), 0.4)
  7558. if Debounces.on == false then end
  7559. rs:wait()
  7560. end
  7561. Slam()
  7562. if gp ~= nil then
  7563. for i,v in pairs(larm:GetChildren()) do
  7564. if v.Name == "asd" and v:IsA("Weld") then
  7565. v:Remove()
  7566. end
  7567. if v:IsA("Part") then
  7568. v.CanCollide = true
  7569. v.CustomPhysicalProperties = PhysicalProperties.new(1,1,1,1,1)
  7570. end
  7571. end
  7572. end
  7573. stanceToggle = "Idle1"
  7574. --[[bv = Instance.new("BodyVelocity",gp:FindFirstChild("Torso"))
  7575. bv.maxForce = Vector3.new(400000, 400000, 400000)
  7576. bv.P = 125000
  7577. bv.velocity = char.Head.CFrame.lookVector * 200]]--
  7578. ht=nil
  7579. Debounces.on = false
  7580. Debounces.NoIdl = false
  7581. elseif ht == nil then wait()
  7582. Grab = false
  7583. Debounces.on = false
  7584. Debounces.NoIdl = false
  7585. end
  7586. end
  7587. end)
  7588. ----------------------------------------------------
  7589. --WIPX
  7590. mouse.KeyDown:connect(function(key)
  7591. if key == "x" then
  7592. stanceToggle = "Idle1"
  7593. for i,v in pairs(larm:GetChildren()) do
  7594. if v.Name == "asd" and v:IsA("Weld") then
  7595. v:Remove()
  7596. Grab = false
  7597. Grab = false
  7598. if v:IsA("Part") then
  7599. v.CanCollide = true
  7600. v.CustomPhysicalProperties = PhysicalProperties.new(1,1,1,1,1)
  7601.  
  7602. hum1.PlatformStand=false
  7603. stanceToggle = "Idle1"
  7604. Grab = false
  7605. stanceToggle = "Idle1"
  7606. end
  7607. end
  7608. end
  7609. end
  7610. end)
  7611. ----------------------------------------------------
  7612. --WIPC
  7613. mouse.KeyDown:connect(function(key)
  7614. if key == "c" then
  7615. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -0.8, -0.2) * CFrame.Angles(math.rad(-30-2*math.cos(sine/12)), math.rad(-9), math.rad(5)), 0.2)
  7616. wait()
  7617. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, 4, -5) * CFrame.Angles(math.rad(-30-2*math.cos(sine/12)), math.rad(-9), math.rad(5)), 0.2)
  7618. wait()
  7619. wait(0.1)
  7620. Slam()
  7621. end
  7622. end)
  7623. ----------------------------------------------------
  7624. --WIPV
  7625. mouse.KeyDown:connect(function(key)
  7626. if key == "v" then
  7627. Debounces.on = true
  7628. Debounces.NoIdl = true
  7629. Debounces.ks = true
  7630. if Grab == false then
  7631. gp = nil
  7632. for i = 1, 12 do
  7633. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0) *CFrame.Angles(math.rad(0),math.rad(0),math.rad(20)), 0.6)
  7634. rarm.Weld.C1 = Lerp(rarm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
  7635. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.3,-0.1)*CFrame.Angles(math.rad(45),math.rad(0),math.rad(-32)), 0.6)
  7636. larm.Weld.C1 = Lerp(larm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
  7637. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(14),math.rad(40), math.rad(14)),0.6)
  7638. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
  7639. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.6, 0) * CFrame.Angles(math.rad(-50), math.rad(0), math.rad(0)), 0.6)
  7640. torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0,-1,0)*CFrame.Angles(math.rad(0),math.rad(40),math.rad(0)), 0.5)
  7641. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.8, -1, 0) * CFrame.Angles(math.rad(-10), 0, math.rad(0)), 0.6)
  7642. lleg.Weld.C1 = Lerp(lleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(40)), 0.4)
  7643. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.4, .2, -0.8) * CFrame.Angles(math.rad(30), math.rad(0), math.rad(0)), 0.6)
  7644. rleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(20), math.rad(0)), 0.4)
  7645. if Debounces.on == false then end
  7646. fat.Event:wait()
  7647. end
  7648. Slam()
  7649. if gp ~= nil then
  7650. for i,v in pairs(larm:GetChildren()) do
  7651. if v.Name == "asd" and v:IsA("Weld") then
  7652. v:Remove()
  7653. end
  7654. if v:IsA("Part") then
  7655. v.CanCollide = true
  7656. v.CustomPhysicalProperties = PhysicalProperties.new(1,1,1,1,1)
  7657. end
  7658. end
  7659. end
  7660. stanceToggle = "Idle1"
  7661. ht=nil
  7662. Debounces.on = false
  7663. Debounces.NoIdl = false
  7664. elseif ht == nil then wait()
  7665. Grab = false
  7666. Debounces.on = false
  7667. Debounces.NoIdl = false
  7668. end
  7669. end
  7670. end)
  7671. ----------------------------------------------------
  7672. mouse.KeyDown:connect(function(key)
  7673. if string.byte(key) == 52 then
  7674. Swing = 2
  7675. char.Humanoid.WalkSpeed = 25
  7676. end
  7677. end)
  7678. mouse.KeyUp:connect(function(key)
  7679. if string.byte(key) == 52 then
  7680. Swing = 1
  7681. char.Humanoid.WalkSpeed = 16
  7682. end
  7683. end)
  7684. ----------------------------------------------------
  7685. CR = torso.Cloak.Rotater
  7686. CR2 = torso.Cloak.CapeLevel1
  7687. CR3 = torso.Cloak.CapeLevel2
  7688. CR4 = torso.Cloak.CapeLevel3
  7689. CR5 = torso.Cloak.CapeLevel4
  7690. jump = false
  7691. rs:connect(function()
  7692. if char.Humanoid.Jump == true then
  7693. jump = true
  7694. else
  7695. jump = false
  7696. end
  7697. char.Humanoid.FreeFalling:connect(function(f)
  7698. if f then
  7699. ffing = true
  7700. else
  7701. ffing = false
  7702. end
  7703. end)
  7704. sine = sine + change
  7705. if jump == true then
  7706. animpose = "Jumping"
  7707. elseif ffing == true then
  7708. animpose = "Freefalling"
  7709. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 2 then
  7710. animpose = "Idle"
  7711. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 0 then
  7712. animpose = "Idle"
  7713. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 20 then
  7714. animpose = "Walking"
  7715. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude > 60 then
  7716. animpose = "Freefalling"
  7717. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude > 20 then
  7718. animpose = "Running"
  7719.  
  7720.  
  7721. end
  7722. RightLeg = CFrame.new(0.5,-1,0)
  7723. LeftLeg = CFrame.new(-0.5,-1,0)
  7724.  
  7725. lefth = (torso.CFrame*LeftLeg)
  7726. righth = (torso.CFrame*RightLeg)
  7727.  
  7728. speed = Vector3.new(torso.Velocity.X,0,torso.Velocity.Z)
  7729.  
  7730. TiltOnAxis = (torso.CFrame-torso.CFrame.p):vectorToObjectSpace(speed/100)
  7731.  
  7732. local AngleThetaR = (righth-righth.p):vectorToObjectSpace(speed/100)
  7733. local AngleThetaL = (lefth-lefth.p):vectorToObjectSpace(speed/100)
  7734. if animpose ~= lastanimpose then
  7735. sine = 0
  7736. if Debounces.NoIdl == false then
  7737. if stanceToggle == "Idle1" then
  7738. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.6,0.2)*CFrame.Angles(math.rad(-12-4*math.cos(sine/22)),math.rad(-12-2*math.cos(sine/22)),math.rad(12+2*math.cos(sine/22))), 0.3)
  7739. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.6,-0.2)*CFrame.Angles(math.rad(20+4*math.cos(sine/22)),math.rad(-22-2*math.cos(sine/22)),math.rad(-15-2*math.cos(sine/22))), 0.3)
  7740. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(-12+2.5*math.cos(sine/22)),math.rad(0),math.rad(0)), 0.2)
  7741. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-2+2*math.cos(sine/22)), math.rad(0), 0), 0.2)
  7742. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, -0.06) * CFrame.Angles(math.rad(0-2*math.cos(sine/22)), math.rad(5), math.rad(-5)), 0.2)
  7743. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, -0.06) * CFrame.Angles(math.rad(0-2*math.cos(sine/22)), math.rad(-5), math.rad(5)), 0.2)
  7744. elseif stanceToggle == "Idle2" then
  7745. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.6,0.2)*CFrame.Angles(math.rad(-22-4*math.cos(sine/12)),math.rad(-40-2*math.cos(sine/12)),math.rad(24+2*math.cos(sine/12))), 0.3)
  7746. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.2,0.6,-0.6)*CFrame.Angles(math.rad(90+4*math.cos(sine/12)),math.rad(0),math.rad(50-2*math.cos(sine/12))), 0.3)
  7747. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(-6+2.5*math.cos(sine/12)),math.rad(0),math.rad(0)), 0.2)
  7748. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.5, 0) * CFrame.Angles(math.rad(-20+2*math.cos(sine/12)), math.rad(0), 0), 0.2)
  7749. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -0.4, -1) * CFrame.Angles(math.rad(-7-2*math.cos(sine/12)), math.rad(7), math.rad(-5)), 0.2)
  7750. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -0.8, -0.2) * CFrame.Angles(math.rad(-30-2*math.cos(sine/12)), math.rad(-9), math.rad(5)), 0.2)
  7751. end
  7752. fat.Event:wait()
  7753. end
  7754. else
  7755. end
  7756. lastanimpose = animpose
  7757. if Debounces.NoIdl == false then
  7758. if animpose == "Idle" then
  7759. change = 0.5
  7760. if stanceToggle == "Idle1" then
  7761. corw8.C0 = Lerp(corw8.C0, CFrame.new(0, -1.05+0.03*math.cos(sine/5), 0-0.1*math.cos(sine/10)) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(180)), 0.3)
  7762. corw8.C1 = Lerp(corw8.C1, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0+8*math.cos(sine/10)), math.rad(0), math.rad(0)), 0.3)
  7763. CR.Joint.C1 = Lerp(CR.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(-4-2*math.cos(sine/10)),0,0),0.1)
  7764. CR2.Joint.C1 = Lerp(CR2.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(0-2*math.cos(sine/10)),0,0),0.1)
  7765. CR3.Joint.C1 = Lerp(CR3.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(0-2*math.cos(sine/10)),0,0),0.1)
  7766. CR4.Joint.C1 = Lerp(CR4.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(0-2*math.cos(sine/10)),0,0),0.1)
  7767. CR5.Joint.C1 = Lerp(CR5.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(0-2*math.cos(sine/10)),0,0),0.1)
  7768. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.6+0.05*math.cos(sine/10),0.6+0.1*math.cos(sine/10),-0.2-0.1*math.cos(sine/10))*CFrame.Angles(math.rad(8+2.5*math.cos(sine/10)),math.rad(22+7*math.cos(sine/10)),math.rad(15+2*math.cos(sine/10))), 0.8)
  7769. rarm.Weld.C1 = Lerp(rarm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
  7770. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.6-0.05*math.cos(sine/10),0.6+0.1*math.cos(sine/10),0.2+0.1*math.cos(sine/10))*CFrame.Angles(math.rad(-8-2.5*math.cos(sine/10)),math.rad(12+5*math.cos(sine/10)),math.rad(-12-3*math.cos(sine/10))), 0.8)
  7771. larm.Weld.C1 = Lerp(larm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
  7772. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-0.1+0.05*math.cos(sine/10))*CFrame.Angles(math.rad(-15+3*math.cos(sine/10)),math.rad(0),math.rad(0)), 0.5)
  7773. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(20-3*math.cos(sine/10)),math.rad(0)), 0.5)
  7774. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-6+3*math.cos(sine/10)), math.rad(0), 0), 0.1)
  7775. torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0-0.08*math.cos(sine/10), -1, 0) * CFrame.Angles(math.rad(0), math.rad(-20+3*math.cos(sine/10)), 0), 0.1)
  7776. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, -0.14+0.06*math.cos(sine/10)) * CFrame.Angles(math.rad(-3-3*math.cos(sine/10)), math.rad(0), math.rad(0)), 0.1)
  7777. lleg.Weld.C1 = Lerp(lleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(-10-3*math.cos(sine/10)), math.rad(5+3*math.cos(sine/10))), 0.1)
  7778. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, -0.06) * CFrame.Angles(math.rad(8-3*math.cos(sine/10)), math.rad(0), math.rad(0)), 0.1)
  7779. rleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(10-3*math.cos(sine/10)), math.rad(-5+3*math.cos(sine/10))), 0.1)
  7780. elseif stanceToggle == "Idle2" then
  7781. CR.Joint.C1 = Lerp(CR.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(-6),0,0),0.1)
  7782. CR2.Joint.C1 = Lerp(CR2.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(-7-1*math.cos(sine/6)),0,0),0.1)
  7783. CR3.Joint.C1 = Lerp(CR3.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(-7-1*math.cos(sine/6)),0,0),0.1)
  7784. CR4.Joint.C1 = Lerp(CR4.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(-7-1*math.cos(sine/6)),0,0),0.1)
  7785. CR5.Joint.C1 = Lerp(CR5.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(-8-1*math.cos(sine/6)),0,0),0.1)
  7786. corw8.C0 = Lerp(corw8.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(180)), 0.3)
  7787. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.65-0.1*math.cos(sine/3),0)*CFrame.Angles(math.rad(10),math.rad(0),math.rad(20-2*math.cos(sine/3))), 0.1)
  7788. rarm.Weld.C1 = Lerp(rarm.Weld.C1, CFrame.new(0,0.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.2)
  7789. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.23, 0.5, -.56) * CFrame.Angles(math.rad(88+4*math.cos(sine/3)), 0, math.rad(45)), 0.6)
  7790. larm.Weld.C1 = Lerp(larm.Weld.C1, CFrame.new(0,0.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.2)
  7791. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2-0.05*math.cos(sine/3), 0) * CFrame.Angles(math.rad(-10+2*math.cos(sine/6)), 0, 0), 0.8)
  7792. torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), 0), 0.1)
  7793. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, -.2) * CFrame.Angles(math.rad(-10), 0, 0), 0.3)
  7794. --hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, -.2) * CFrame.Angles(math.rad(-5-10*math.cos(sine/18)), math.sin(sine/36)/3, 0), 0.3)
  7795. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
  7796. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, 0, -1.15) * CFrame.Angles(math.rad(-9-2*math.cos(sine/6)), 0, 0), 0.8)
  7797. lleg.Weld.C1 = Lerp(lleg.Weld.C1, CFrame.new(0, 1-0.1*math.cos(sine/3), 0+0.04*math.cos(sine/6)) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(5)), 0.8)
  7798. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, -.1) * CFrame.Angles(math.rad(-56-2*math.cos(sine/6)), 0, 0), 0.8)
  7799. rleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1-0.05*math.cos(sine/3), 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-5)), 0.8)
  7800. elseif stanceToggle == "Grabbed" then
  7801. grab = true
  7802. corw8.C0 = Lerp(corw8.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(180)), 0.3)
  7803. corw8.C1 = Lerp(corw8.C1, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  7804. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.65+0.1*math.cos(sine/14),0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(40+2*math.cos(sine/14))), 0.2)
  7805. rarm.Weld.C1 = Lerp(rarm.Weld.C1, CFrame.new(0,0.5, 0)*CFrame.Angles(math.rad(0), math.rad(0),math.rad(0)), 0.2)
  7806. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.65+0.1*math.cos(sine/14),-.5)*CFrame.Angles(math.rad(90+4*math.cos(sine/14)),math.rad(0),math.rad(-80+4*math.cos(sine/14))), 0.3)
  7807. larm.Weld.C1 = Lerp(larm.Weld.C1, CFrame.new(0,0.5, 0)*CFrame.Angles(math.rad(0), math.rad(0),math.rad(0)), 0.2)
  7808. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(14+2*math.cos(sine/14)),math.rad(70-4*math.cos(sine/14)),0), 0.3)
  7809. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
  7810. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-70), 0), 0.3)
  7811. torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), 0), 0.1)
  7812. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(30), math.rad(-20)), 0.3)
  7813. lleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.8)
  7814. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-15), math.rad(20)), 0.3)
  7815. rleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.8)
  7816. end
  7817. elseif animpose == "Walking" then
  7818. if stanceToggle == "Grabbed" then
  7819. corw8.C0 = Lerp(corw8.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(180)), 0.3)
  7820. corw8.C1 = Lerp(corw8.C1, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  7821. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5, 0.5-.05*math.cos(sine/2), math.sin(sine/4)/4) * CFrame.Angles(-math.sin(sine/4)/2.8, -math.sin(sine/4)/3, (math.rad(10+7*math.cos(sine/2))+root.RotVelocity.Y/30)), 0.4)
  7822. rarm.Weld.C1 = Lerp(rarm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.7)
  7823. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.65,0)*CFrame.Angles(math.rad(120+4*math.cos(sine/2)),math.rad(0),math.rad(-30+4*math.cos(sine/4))), 0.3)
  7824. larm.Weld.C1 = Lerp(larm.Weld.C1, CFrame.new(0,0.5, 0)*CFrame.Angles(math.rad(0), math.rad(0),math.rad(0)), 0.2)
  7825. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-0.1+0.1*math.cos(sine/2))*CFrame.Angles(math.rad(-10+4*math.cos(sine/2)), math.rad(0-8*math.cos(sine/4)/2.3), math.rad(0)),0.4)
  7826. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(0)-root.RotVelocity.Y/10,math.rad(0)), 0.7)
  7827. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1+0.12*math.cos(sine/2), 0) * CFrame.Angles(math.rad(-4+2*math.cos(sine/2)), math.rad(0+10*math.cos(sine/4)/2.3)+root.RotVelocity.Y/30, math.rad(0)+root.RotVelocity.Y/30), 0.4)
  7828. --rj.C0 = rj.C0:lerp(CFrame.Angles(math.rad(-90)+TiltOnAxis.Z,TiltOnAxis.X,math.rad(180)+-TiltOnAxis.X),.1)
  7829. torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), 0), 0.8)
  7830. lleg.Weld.C0 = lleg.Weld.C0:lerp(CFrame.new(-0.5,-1-math.cos(sine/4)*.3,0+math.sin(sine/4)*.1)*CFrame.Angles(math.sin(sine/4)*3*AngleThetaL.Z,AngleThetaL.X,(math.sin(sine/4)*3*-AngleThetaL.X)-root.RotVelocity.Y/20),0.8)
  7831. lleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.8)
  7832. rleg.Weld.C0 = rleg.Weld.C0:lerp(CFrame.new(0.5,-1+math.cos(sine/4)*.3,0-math.sin(sine/4)*.1)*CFrame.Angles(math.sin(sine/4)*3*-AngleThetaR.Z,AngleThetaR.X,(math.sin(sine/4)*3*AngleThetaR.X)-root.RotVelocity.Y/20),0.8)
  7833. rleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.8)
  7834. elseif stanceToggle ~= "Grabbed" then
  7835. change = 1
  7836. corw8.C0 = Lerp(corw8.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(180)), 0.3)
  7837. corw8.C1 = Lerp(corw8.C1, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  7838. CR.Joint.C1 = Lerp(CR.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(-22-2*math.cos(sine/2)),0,0),0.2)
  7839. CR2.Joint.C1 = Lerp(CR2.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(-3-3*math.cos(sine/2)),0,0),0.2)
  7840. CR3.Joint.C1 = Lerp(CR3.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(-3-4*math.cos(sine/2)),0,0),0.2)
  7841. CR4.Joint.C1 = Lerp(CR4.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(-3-5*math.cos(sine/2)),0,0),0.2)
  7842. CR5.Joint.C1 = Lerp(CR5.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(-3-6*math.cos(sine/2)),0,0),0.2)
  7843. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5, 0.5-.05*math.cos(sine/2), math.sin(sine/4)/4) * CFrame.Angles(-math.sin(sine/4)/2.8, -math.sin(sine/4)/3, (math.rad(10+7*math.cos(sine/2))+root.RotVelocity.Y/30)), 0.4)
  7844. rarm.Weld.C1 = Lerp(rarm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.7)
  7845. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5, 0.5+.05*math.cos(sine/2), -math.sin(sine/4)/4)*CFrame.Angles(math.sin(sine/4)/2.8, -math.sin(sine/4)/3, (math.rad(-10-7*math.cos(sine/2))+root.RotVelocity.Y/30)), 0.4)
  7846. larm.Weld.C1 = Lerp(larm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.7)
  7847. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-0.1+0.1*math.cos(sine/2))*CFrame.Angles(math.rad(-10+4*math.cos(sine/2)), math.rad(0-8*math.cos(sine/4)/2.3), math.rad(0)),0.4)
  7848. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(0)-root.RotVelocity.Y/10,math.rad(0)), 0.7)
  7849. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1+0.12*math.cos(sine/2), 0) * CFrame.Angles(math.rad(-4+2*math.cos(sine/2)), math.rad(0+10*math.cos(sine/4)/2.3)+root.RotVelocity.Y/30, math.rad(0)+root.RotVelocity.Y/30), 0.4)
  7850. --rj.C0 = rj.C0:lerp(CFrame.Angles(math.rad(-90)+TiltOnAxis.Z,TiltOnAxis.X,math.rad(180)+-TiltOnAxis.X),.1)
  7851. torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), 0), 0.8)
  7852. --lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -0.9-0.24*math.cos(sine/4)/2.8, -0.05 + math.sin(sine/4)/3.4) * CFrame.Angles(math.rad(-5)-math.sin(sine/4)/2.1, math.rad(0-10*math.cos(sine/4)/2.3), 0-root.RotVelocity.Y/20), .4)
  7853. lleg.Weld.C0 = lleg.Weld.C0:lerp(CFrame.new(-0.5,-1-math.cos(sine/4)*.3,0+math.sin(sine/4)*.1)*CFrame.Angles(math.sin(sine/4)*3*AngleThetaL.Z,AngleThetaL.X,(math.sin(sine/4)*3*-AngleThetaL.X)-root.RotVelocity.Y/20),0.8)
  7854. lleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.8)
  7855. --rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -0.9+0.24*math.cos(sine/4)/2.8, -0.05 + -math.sin(sine/4)/3.4) * CFrame.Angles(math.rad(-5)+math.sin(sine/4)/2.1, math.rad(0-10*math.cos(sine/4)/2.3), 0-root.RotVelocity.Y/20), .4)
  7856. rleg.Weld.C0 = rleg.Weld.C0:lerp(CFrame.new(0.5,-1+math.cos(sine/4)*.3,0-math.sin(sine/4)*.1)*CFrame.Angles(math.sin(sine/4)*3*-AngleThetaR.Z,AngleThetaR.X,(math.sin(sine/4)*3*AngleThetaR.X)-root.RotVelocity.Y/20),0.8)
  7857. rleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.8)
  7858. end
  7859. elseif animpose == "Running" then
  7860. change = 1
  7861. corw8.C0 = Lerp(corw8.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(180)), 0.3)
  7862. corw8.C1 = Lerp(corw8.C1, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  7863. CR.Joint.C1 = Lerp(CR.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(-56-10*math.cos(sine/2)),0,0),0.2)
  7864. CR2.Joint.C1 = Lerp(CR2.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(0-8*math.cos(sine/2)),0,0),0.2)
  7865. CR3.Joint.C1 = Lerp(CR3.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(0-8*math.cos(sine/2)),0,0),0.2)
  7866. CR4.Joint.C1 = Lerp(CR4.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(0-8*math.cos(sine/2)),0,0),0.2)
  7867. CR5.Joint.C1 = Lerp(CR5.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(0-8*math.cos(sine/2)),0,0),0.2)
  7868. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.24+.6*math.cos(sine/4)/1.4, 0.54, 0+0.8*math.cos(sine/4)) * CFrame.Angles(math.rad(6-140*math.cos(sine/4)/1.2), math.rad(0), math.rad(-20+70*math.cos(sine/4))), 0.2)
  7869. rarm.Weld.C1 = Lerp(rarm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.36)
  7870. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.24+.6*math.cos(sine/4)/1.4, 0.54, 0-0.8*math.cos(sine/4))*CFrame.Angles(math.rad(6+140*math.cos(sine/4)/1.2), math.rad(0), math.rad(20+70*math.cos(sine/4))), 0.2)
  7871. larm.Weld.C1 = Lerp(larm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
  7872. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-8+12*math.cos(sine/2)/1.5), math.rad(0+12*math.cos(sine/4)), math.rad(0)),0.2)
  7873. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(0)-root.RotVelocity.Y/10,math.rad(0)), 0.5)
  7874. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1+0.2*math.cos(sine/2)/1.7, 0) * CFrame.Angles(math.rad(-14+10*math.cos(sine/2)/1.5), math.rad(0-12*math.cos(sine/4))-root.RotVelocity.Y/10, math.rad(0)+root.RotVelocity.Y/20), 0.2)
  7875. torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), 0), 0.4)
  7876. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -.8-0.4*math.cos(sine/4)/2, math.sin(sine/4)/2) * CFrame.Angles(math.rad(-10) + -math.sin(sine/4)/1.2, math.rad(0+12*math.cos(sine/4))+root.RotVelocity.Y/10, 0), .8)
  7877. lleg.Weld.C1 = Lerp(lleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)
  7878. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -.8+0.4*math.cos(sine/4)/2, -math.sin(sine/4)/2) * CFrame.Angles(math.rad(-10) + math.sin(sine/4)/1.2, math.rad(0+12*math.cos(sine/4))+root.RotVelocity.Y/10, 0), .8)
  7879. rleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)
  7880. elseif animpose == "Jumping" then
  7881. CR.Joint.C1 = Lerp(CR.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(-30),0,0),0.2)
  7882. CR2.Joint.C1 = Lerp(CR2.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(0-4*math.cos(sine/2)),0,0),0.2)
  7883. CR3.Joint.C1 = Lerp(CR3.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(0-4*math.cos(sine/2)),0,0),0.2)
  7884. CR4.Joint.C1 = Lerp(CR4.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(0-4*math.cos(sine/2)),0,0),0.2)
  7885. CR5.Joint.C1 = Lerp(CR5.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(0-4*math.cos(sine/2)),0,0),0.2)
  7886. corw8.C0 = Lerp(corw8.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(180)), 0.3)
  7887. corw8.C1 = Lerp(corw8.C1, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  7888. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5, 0.6, 0)*CFrame.Angles(math.rad(-10),math.rad(0),math.rad(20)), 0.2)
  7889. rarm.Weld.C1 = Lerp(rarm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.36)
  7890. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5, 0.6, 0)*CFrame.Angles(math.rad(-10),math.rad(0),math.rad(-20)), 0.2)
  7891. larm.Weld.C1 = Lerp(larm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
  7892. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(30),math.rad(0),0), 0.2)
  7893. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), 0), 0.2)
  7894. torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), 0), 0.4)
  7895. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1.1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.2)
  7896. lleg.Weld.C1 = Lerp(lleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)
  7897. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1.1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.2)
  7898. rleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)
  7899. elseif animpose == "fly" then
  7900. CR.Joint.C1 = Lerp(CR.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(-110),0,0),0.2)
  7901. CR2.Joint.C1 = Lerp(CR2.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(0-10*math.cos(sine/2)),0,0),0.2)
  7902. CR3.Joint.C1 = Lerp(CR3.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(0-10*math.cos(sine/2)),0,0),0.2)
  7903. CR4.Joint.C1 = Lerp(CR4.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(0-10*math.cos(sine/2)),0,0),0.2)
  7904. CR5.Joint.C1 = Lerp(CR5.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(0-10*math.cos(sine/2)),0,0),0.2)
  7905. corw8.C0 = Lerp(corw8.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(180)), 0.3)
  7906. corw8.C1 = Lerp(corw8.C1, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  7907. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5, 0.6, 0)*CFrame.Angles(math.rad(-40),math.rad(20),math.rad(50)), 0.2)
  7908. rarm.Weld.C1 = Lerp(rarm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.36)
  7909. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5, 0.6, 0)*CFrame.Angles(math.rad(110),math.rad(-20),math.rad(-30)), 0.2)
  7910. larm.Weld.C1 = Lerp(larm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
  7911. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(10),math.rad(0),0), 0.2)
  7912. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-30), math.rad(0), 0), 0.2)
  7913. torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), 0), 0.4)
  7914. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -0.5, 0.2) * CFrame.Angles(math.rad(-30), math.rad(0), math.rad(0)), 0.2)
  7915. lleg.Weld.C1 = Lerp(lleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)
  7916. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -0.5, -0.6) * CFrame.Angles(math.rad(40), math.rad(0), math.rad(0)), 0.2)
  7917. rleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)
  7918. elseif animpose == "Freefalling" then
  7919. CR.Joint.C1 = Lerp(CR.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(-110),0,0),0.2)
  7920. CR2.Joint.C1 = Lerp(CR2.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(0-10*math.cos(sine/2)),0,0),0.2)
  7921. CR3.Joint.C1 = Lerp(CR3.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(0-10*math.cos(sine/2)),0,0),0.2)
  7922. CR4.Joint.C1 = Lerp(CR4.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(0-10*math.cos(sine/2)),0,0),0.2)
  7923. CR5.Joint.C1 = Lerp(CR5.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(0-10*math.cos(sine/2)),0,0),0.2)
  7924. corw8.C0 = Lerp(corw8.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(180)), 0.3)
  7925. corw8.C1 = Lerp(corw8.C1, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  7926. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5, 0.6, 0)*CFrame.Angles(math.rad(-40),math.rad(20),math.rad(50)), 0.2)
  7927. rarm.Weld.C1 = Lerp(rarm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.36)
  7928. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5, 0.6, 0)*CFrame.Angles(math.rad(110),math.rad(-20),math.rad(-30)), 0.2)
  7929. larm.Weld.C1 = Lerp(larm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
  7930. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(10),math.rad(0),0), 0.2)
  7931. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-30), math.rad(0), 0), 0.2)
  7932. torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), 0), 0.4)
  7933. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -0.5, 0.2) * CFrame.Angles(math.rad(-30), math.rad(0), math.rad(0)), 0.2)
  7934. lleg.Weld.C1 = Lerp(lleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)
  7935. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -0.5, -0.6) * CFrame.Angles(math.rad(40), math.rad(0), math.rad(0)), 0.2)
  7936. rleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)
  7937. end
  7938. end
  7939. end)
  7940. hum.MaxHealth = 20000
  7941. wait(3)
  7942. hum.Health = 20000
  7943. while wait() do
  7944. wait(5)
  7945. for i=1,100 do wait()
  7946. Amulite.Brightness=Amulite.Brightness+0.02
  7947. end
  7948. for i=1,100 do wait()
  7949. Amulite.Brightness=Amulite.Brightness-0.02
  7950. end
  7951. end
  7952.  
  7953. --Edited by 1x0x1x0--
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement