DanielTG

Untitled

Mar 30th, 2019
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 212.74 KB | None | 0 0
  1. -- Objects
  2.  
  3. local ScreenGUI = Instance.new("ScreenGui")
  4. local GuiFrame = Instance.new("Frame")
  5. local GrabKnife = Instance.new("TextButton")
  6. local Kidnap = Instance.new("TextButton")
  7. local TextBox = Instance.new("TextBox")
  8. local Open = Instance.new("TextButton")
  9.  
  10. -- Properties
  11.  
  12. ScreenGUI.Name = "ScreenGUI"
  13. ScreenGUI.Parent = game.Players.LocalPlayer.PlayerGui
  14.  
  15. GuiFrame.Name = "GuiFrame"
  16. GuiFrame.Parent = ScreenGUI
  17. GuiFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  18. GuiFrame.BackgroundTransparency = 0.30000001192093
  19. GuiFrame.Position = UDim2.new(0, 0, 0, 101)
  20. GuiFrame.Size = UDim2.new(0, 381, 0, 223)
  21.  
  22. GrabKnife.Name = "Grab Knife"
  23. GrabKnife.Parent = GuiFrame
  24. GrabKnife.BackgroundColor3 = Color3.new(0, 0, 0)
  25. GrabKnife.Position = UDim2.new(0, 0, 0, 173)
  26. GrabKnife.Size = UDim2.new(0, 160, 0, 50)
  27. GrabKnife.Font = Enum.Font.SciFi
  28. GrabKnife.FontSize = Enum.FontSize.Size48
  29. GrabKnife.Text = "Grab Knife"
  30. GrabKnife.TextColor3 = Color3.new(0, 1, 1)
  31. GrabKnife.TextSize = 40
  32.  
  33. GrabKnife.MouseButton1Down:connect(function()
  34. math.randomseed(tick())
  35. local player = game.Players.LocalPlayer
  36. local rekt = {}
  37. local paralyzed = false
  38. local curpoint = nil
  39. local curpart = nil
  40. local finishnum = 1
  41. local zombiemode = false
  42. local zombies = {}
  43. local lastgui = nil
  44. local mouse = player:GetMouse()
  45.  
  46. function getplr(char)
  47. local plr = nil
  48. for i,v in pairs(game.Players:GetChildren()) do
  49. if v.Character == char then
  50. plr = v
  51. end
  52. end
  53. return plr
  54. end
  55.  
  56. function bleed(frick)
  57. while frick.Parent ~= nil do
  58. local reeee = coroutine.wrap(function()
  59. local thing = Instance.new('Part',game.Workspace)
  60. thing.Size = Vector3.new(0.2,0.2,0.2)
  61. thing.CFrame = frick.CFrame
  62. thing.Shape = Enum.PartType.Ball
  63. thing.CFrame = frick.CFrame
  64. thing.Transparency = 1
  65. thing.BrickColor = BrickColor.new('Maroon')
  66. thing.Material = Enum.Material.SmoothPlastic
  67. thing.Name = "Blood"
  68. thing.CanCollide =false
  69. local rawrxd = Instance.new('BodyForce',thing)
  70. rawrxd.Force = frick.CFrame.upVector*(math.random()*2)+Vector3.new(math.random(-5, 5)/10,1.5,0)
  71. local coru = coroutine.wrap(function()
  72. wait(0.01)
  73. rawrxd:Destroy()
  74. end)
  75. coru()
  76. local ree = Instance.new('ParticleEmitter',thing)
  77. ree.Color = ColorSequence.new({ColorSequenceKeypoint.new(0,Color3.fromRGB(100,0,0)),ColorSequenceKeypoint.new(1,Color3.fromRGB(100,0,0))})
  78. ree.Size = NumberSequence.new({NumberSequenceKeypoint.new(0,0.1),NumberSequenceKeypoint.new(1,0.1)})
  79. ree.Texture = 'rbxassetid://867743272'
  80. ree.Lifetime = NumberRange.new(0.4)
  81. ree.Rate = 50
  82. ree.LockedToPart = true
  83. ree.Speed = NumberRange.new(0, 2)
  84.  
  85. thing.Touched:connect(function(tou)
  86. if tou.Parent and tou.Parent:IsA('Tool') == false and tou.Parent.Parent:FindFirstChildOfClass('Humanoid') == nil and tou.Parent:FindFirstChildOfClass('Humanoid') == nil and tou.Name ~= "Blood" and tou.Parent.Name ~= "Projectile" and tou.Parent.Name ~= "big ass knife" and tou.Parent ~= player.Character and tou.Parent.ClassName ~= "Accessory" and tou.Parent.Name ~= "bitch ass knife" then
  87. local pos = Vector3.new(thing.Position.X,(tou.Position.Y+(tou.Size.Y/2))+0.02,thing.Position.Z)
  88. thing:Destroy()
  89. if tou.Name == "BloodPuddle" then
  90. local reee = tou.CFrame
  91. if tou.Transparency > -0.2 then
  92. tou.Transparency = tou.Transparency -0.1
  93. end
  94. if tou.Size.X < 10 then
  95. tou.Size = tou.Size+Vector3.new(0.1,0,0.1)
  96. tou.CFrame = reee
  97. end
  98. else
  99. local bloodlol = Instance.new('Part',workspace)
  100. bloodlol.Size=Vector3.new(1,0.2,1)
  101. bloodlol.Name = "BloodPuddle"
  102. bloodlol.Anchored = true
  103. bloodlol.CanCollide = false
  104. bloodlol.Material = Enum.Material.SmoothPlastic
  105. bloodlol.BrickColor = BrickColor.new('Maroon')
  106. local cyl = Instance.new('CylinderMesh',bloodlol)
  107. cyl.Scale = Vector3.new(1,0.1,1)
  108. bloodlol.CFrame = CFrame.new(pos)
  109. local coru=coroutine.wrap(function()
  110. while bloodlol.Parent ~= nil do
  111. if bloodlol.Transparency < 1 then
  112. bloodlol.Transparency = bloodlol.Transparency+0.05
  113. else
  114. bloodlol:Destroy()
  115. end
  116. wait(0.1)
  117. end
  118. end)
  119. coru()
  120. end
  121. end
  122. end)
  123. local coru = coroutine.wrap(function()
  124. wait(1)
  125. thing:Destroy()
  126. end)
  127. coru()
  128. end)
  129. reeee()
  130. wait()
  131. end
  132. end
  133.  
  134. function killz(playa,hitz,kneef,explode,pool,head,charred,override)
  135. local soundy = false
  136. local heyy = hitz
  137. if hitz == "Right Arm" then
  138. local Limb = playa:FindFirstChild("Right Arm")
  139. local ters = playa:FindFirstChild('Torso')
  140. if Limb and ters then
  141. if ters:FindFirstChild('Right Shoulder') then ters["Right Shoulder"]:Destroy() end
  142. for i,v in pairs(Limb:GetChildren()) do
  143. if v:IsA('Weld') or v:IsA('Motor6D') or v:IsA('Rotate') then
  144. v:Destroy()
  145. end
  146. end
  147. Limb.CFrame = ters.CFrame * CFrame.new(1.5, 0, 0)
  148. local Joint = Instance.new("Rotate")
  149. Joint.Name = "RightShoulder"
  150. Joint.Part0 = ters
  151. Joint.Part1 = Limb
  152. Joint.C0 = CFrame.new(1.5, 0.5, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
  153. Joint.C1 = CFrame.new(-0, 0.5, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
  154. Joint.Parent = ters
  155. if charred and zombiemode == false then
  156. Limb.BrickColor = BrickColor.new('Black')
  157. local fire = Instance.new('Fire',Limb)
  158. fire.Heat = 5
  159. fire.Size = 5
  160. game:GetService('Debris'):AddItem(fire,2)
  161. local coru=coroutine.wrap(function()
  162. wait(2)
  163. for i,v in pairs(Limb:GetChildren()) do
  164. if v:IsA('ParticleEmitter') then
  165. v:Destroy()
  166. end
  167. end
  168. end)
  169. coru()
  170. end
  171. local B = Instance.new("Part")
  172. B.TopSurface = 0
  173. B.BottomSurface = 0
  174. B.formFactor = "Symmetric"
  175. B.Size = Vector3.new(1, 1, 1)
  176. B.Transparency = 1
  177. B.CFrame = Limb.CFrame * CFrame.new(0, -0.5, 0)
  178. B.Parent = playa
  179. local W = Instance.new("Weld")
  180. W.Part0 = Limb
  181. W.Part1 = B
  182. W.C0 = CFrame.new(0, -0.5, 0)
  183. W.Parent = Limb
  184. if kneef then
  185. local coru = coroutine.wrap(function()
  186. local uno = Instance.new('Part',workspace)
  187. local dos = Instance.new('Part',workspace)
  188. uno.CFrame = playa:FindFirstChild(hitz).CFrame
  189. dos.CFrame = kneef["big ass knife"].CFrame
  190. local weld = Instance.new('Weld',kneef["big ass knife"])
  191. weld.Part0 = playa:FindFirstChild(hitz)
  192. weld.Part1 = kneef["big ass knife"]
  193. weld.C0 = uno.CFrame:toObjectSpace(dos.CFrame)
  194. uno:Destroy()
  195. dos:Destroy()
  196. playa:FindFirstChild(hitz).Anchored = false
  197. for i, v in pairs(kneef:GetChildren()) do
  198. if v:IsA('BasePart') then
  199. v.Anchored = false
  200. end
  201. end
  202. if zombiemode == false or override then
  203. wait()
  204. end
  205. if kneef:FindFirstChild('Grab') and kneef.Grab:FindFirstChildOfClass('BodyVelocity') then
  206. kneef.Grab:FindFirstChildOfClass('BodyVelocity'):Destroy()
  207. end
  208. local bleedpart = Instance.new("Part", kneef)
  209. bleedpart.CanCollide = false
  210. bleedpart.Size = Vector3.new(0.2, 0.2, 0.2)
  211. bleedpart.CFrame = kneef["big ass knife"].CFrame
  212. bleedpart.Color = Color3.new(115/225, 115/225, 115/225)
  213. bleedpart.Transparency = 1
  214.  
  215. local bleedpartweld = Instance.new("Weld", kneef["big ass knife"])
  216. bleedpartweld.Part0 = kneef["big ass knife"]
  217. bleedpartweld.Part1 = bleedpart
  218. bleedpartweld.C0 = CFrame.new(0,0,0)*CFrame.Angles(math.rad(90),0,0)
  219. local coru = coroutine.wrap(function()
  220. bleed(bleedpart)
  221. end)
  222. coru()
  223. game:GetService('Debris'):AddItem(bleedpart,2)
  224. end)
  225. coru()
  226. end
  227. end
  228. elseif hitz == "Left Arm" then
  229. local Limb = playa:FindFirstChild("Left Arm")
  230. local ters = playa:FindFirstChild('Torso')
  231. if Limb and ters then
  232. if ters:FindFirstChild('Left Shoulder') then ters["Left Shoulder"]:Destroy() end
  233. for i,v in pairs(Limb:GetChildren()) do
  234. if v:IsA('Weld') or v:IsA('Motor6D') or v:IsA('Rotate') then
  235. v:Destroy()
  236. end
  237. end
  238. Limb.CFrame = ters.CFrame * CFrame.new(-1.5, 0, 0)
  239. local Joint = Instance.new("Rotate")
  240. Joint.Name = "LeftShoulder"
  241. Joint.Part0 = ters
  242. Joint.Part1 = Limb
  243. Joint.C0 = CFrame.new(-1.5, 0.5, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
  244. Joint.C1 = CFrame.new(0, 0.5, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
  245. Joint.Parent = ters
  246. if charred and zombiemode == false then
  247. Limb.BrickColor = BrickColor.new('Black')
  248. local fire = Instance.new('Fire',Limb)
  249. fire.Heat = 5
  250. fire.Size = 5
  251. game:GetService('Debris'):AddItem(fire,2)
  252. local coru=coroutine.wrap(function()
  253. wait(2)
  254. for i,v in pairs(Limb:GetChildren()) do
  255. if v:IsA('ParticleEmitter') then
  256. v:Destroy()
  257. end
  258. end
  259. end)
  260. coru()
  261. end
  262.  
  263. local B = Instance.new("Part")
  264. B.TopSurface = 0
  265. B.BottomSurface = 0
  266. B.formFactor = "Symmetric"
  267. B.Size = Vector3.new(1, 1, 1)
  268. B.CanCollide = true
  269. B.Transparency = 1
  270. B.CFrame = Limb.CFrame * CFrame.new(0, -0.5, 0)
  271. B.Parent = playa
  272. local W = Instance.new("Weld")
  273. W.Part0 = ters
  274. W.Part1 = B
  275. W.C0 = CFrame.new(0, -0.5, 0)
  276. W.Parent = Limb
  277. if kneef then
  278. local coru = coroutine.wrap(function()
  279. local uno = Instance.new('Part',workspace)
  280. local dos = Instance.new('Part',workspace)
  281. uno.CFrame = playa:FindFirstChild(hitz).CFrame
  282. dos.CFrame = kneef["big ass knife"].CFrame
  283. local weld = Instance.new('Weld',kneef["big ass knife"])
  284. weld.Part0 = playa:FindFirstChild(hitz)
  285. weld.Part1 = kneef["big ass knife"]
  286. weld.C0 = uno.CFrame:toObjectSpace(dos.CFrame)
  287. uno:Destroy()
  288. dos:Destroy()
  289. playa:FindFirstChild(hitz).Anchored = false
  290. for i, v in pairs(kneef:GetChildren()) do
  291. if v:IsA('BasePart') then
  292. v.Anchored = false
  293. end
  294. end
  295. if zombiemode == false or override then
  296. wait()
  297. end
  298. if kneef:FindFirstChild('Grab') and kneef.Grab:FindFirstChildOfClass('BodyVelocity') then
  299. kneef.Grab:FindFirstChildOfClass('BodyVelocity'):Destroy()
  300. end
  301. local bleedpart = Instance.new("Part", kneef)
  302. bleedpart.CanCollide = false
  303. bleedpart.Size = Vector3.new(0.2, 0.2, 0.2)
  304. bleedpart.CFrame = kneef["big ass knife"].CFrame
  305. bleedpart.Color = Color3.new(115/225, 115/225, 115/225)
  306. bleedpart.Transparency = 1
  307.  
  308. local bleedpartweld = Instance.new("Weld", kneef["big ass knife"])
  309. bleedpartweld.Part0 = kneef["big ass knife"]
  310. bleedpartweld.Part1 = bleedpart
  311. bleedpartweld.C0 = CFrame.new(0,0,0)*CFrame.Angles(math.rad(90),0,0)
  312. local coru = coroutine.wrap(function()
  313. bleed(bleedpart)
  314. end)
  315. coru()
  316. game:GetService('Debris'):AddItem(bleedpart,2)
  317. end)
  318. coru()
  319. end
  320. end
  321. elseif hitz == "Right Leg" then
  322. local Limb = playa:FindFirstChild("Right Leg")
  323. local ters = playa:FindFirstChild('Torso')
  324. if Limb and ters then
  325. if ters:FindFirstChild('Right Hip') then ters["Right Hip"]:Destroy() end
  326. for i,v in pairs(Limb:GetChildren()) do
  327. if v:IsA('Weld') or v:IsA('Motor6D') or v:IsA('Rotate') then
  328. v:Destroy()
  329. end
  330. end
  331. Limb.CFrame = ters.CFrame * CFrame.new(0.5, -2, 0)
  332. local Joint = Instance.new("Rotate")
  333. Joint.Name = "Right Hip"
  334. Joint.Part0 = ters
  335. Joint.Part1 = Limb
  336. Joint.C0 = CFrame.new(0.5, -1, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
  337. Joint.C1 = CFrame.new(0, 1, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
  338. Joint.Parent = ters
  339. if charred and zombiemode == false then
  340. Limb.BrickColor = BrickColor.new('Black')
  341. local fire = Instance.new('Fire',Limb)
  342. fire.Heat = 5
  343. fire.Size = 5
  344. game:GetService('Debris'):AddItem(fire,2)
  345. local coru=coroutine.wrap(function()
  346. wait(2)
  347. for i,v in pairs(Limb:GetChildren()) do
  348. if v:IsA('ParticleEmitter') then
  349. v:Destroy()
  350. end
  351. end
  352. end)
  353. coru()
  354. end
  355. local B = Instance.new("Part")
  356. B.TopSurface = 0
  357. B.BottomSurface = 0
  358. B.formFactor = "Symmetric"
  359. B.Size = Vector3.new(1, 1, 1)
  360. B.Transparency = 1
  361. B.CFrame = Limb.CFrame * CFrame.new(0, -0.5, 0)
  362. B.Parent = playa
  363. local W = Instance.new("Weld")
  364. W.Part0 = Limb
  365. W.Part1 = B
  366. W.C0 = CFrame.new(0, -0.5, 0)
  367. W.Parent = Limb
  368. if kneef then
  369. local coru = coroutine.wrap(function()
  370. local uno = Instance.new('Part',workspace)
  371. local dos = Instance.new('Part',workspace)
  372. uno.CFrame = playa:FindFirstChild(hitz).CFrame
  373. dos.CFrame = kneef["big ass knife"].CFrame
  374. local weld = Instance.new('Weld',kneef["big ass knife"])
  375. weld.Part0 = playa:FindFirstChild(hitz)
  376. weld.Part1 = kneef["big ass knife"]
  377. weld.C0 = uno.CFrame:toObjectSpace(dos.CFrame)
  378. uno:Destroy()
  379. dos:Destroy()
  380. playa:FindFirstChild(hitz).Anchored = false
  381. for i, v in pairs(kneef:GetChildren()) do
  382. if v:IsA('BasePart') then
  383. v.Anchored = false
  384. end
  385. end
  386. if zombiemode == false or override then
  387. wait()
  388. end
  389. if kneef:FindFirstChild('Grab') and kneef.Grab:FindFirstChildOfClass('BodyVelocity') then
  390. kneef.Grab:FindFirstChildOfClass('BodyVelocity'):Destroy()
  391. end
  392. local bleedpart = Instance.new("Part", kneef)
  393. bleedpart.CanCollide = false
  394. bleedpart.Size = Vector3.new(0.2, 0.2, 0.2)
  395. bleedpart.CFrame = kneef["big ass knife"].CFrame
  396. bleedpart.Color = Color3.new(115/225, 115/225, 115/225)
  397. bleedpart.Transparency = 1
  398.  
  399. local bleedpartweld = Instance.new("Weld", kneef["big ass knife"])
  400. bleedpartweld.Part0 = kneef["big ass knife"]
  401. bleedpartweld.Part1 = bleedpart
  402. bleedpartweld.C0 = CFrame.new(0,0,0)*CFrame.Angles(math.rad(90),0,0)
  403. local coru = coroutine.wrap(function()
  404. bleed(bleedpart)
  405. end)
  406. coru()
  407. game:GetService('Debris'):AddItem(bleedpart,2)
  408. end)
  409. coru()
  410. end
  411. if playa then
  412. table.insert(rekt,playa)
  413. end
  414. end
  415. elseif hitz == "Left Leg" then
  416. local Limb = playa:FindFirstChild("Left Leg")
  417. local ters = playa:FindFirstChild('Torso')
  418. if Limb and ters then
  419. if ters:FindFirstChild('Left Hip') then ters["Left Hip"]:Destroy() end
  420. for i,v in pairs(Limb:GetChildren()) do
  421. if v:IsA('Weld') or v:IsA('Motor6D') or v:IsA('Rotate') then
  422. v:Destroy()
  423. end
  424. end
  425. Limb.CFrame = ters.CFrame * CFrame.new(0.5, -2, 0)
  426. Limb.CFrame = ters.CFrame * CFrame.new(-0.5, -2, 0)
  427. local Joint = Instance.new("Rotate")
  428. Joint.Name = "LeftHip"
  429. Joint.Part0 = ters
  430. Joint.Part1 = Limb
  431. Joint.C0 = CFrame.new(-0.5, -1, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
  432. Joint.C1 = CFrame.new(-0, 1, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
  433. Joint.Parent = ters
  434. if charred and zombiemode == false then
  435. Limb.BrickColor = BrickColor.new('Black')
  436. local fire = Instance.new('Fire',Limb)
  437. fire.Heat = 5
  438. fire.Size = 5
  439. game:GetService('Debris'):AddItem(fire,2)
  440. local coru=coroutine.wrap(function()
  441. wait(2)
  442. for i,v in pairs(Limb:GetChildren()) do
  443. if v:IsA('ParticleEmitter') then
  444. v:Destroy()
  445. end
  446. end
  447. end)
  448. coru()
  449. end
  450.  
  451. local B = Instance.new("Part")
  452. B.TopSurface = 0
  453. B.BottomSurface = 0
  454. B.formFactor = "Symmetric"
  455. B.Size = Vector3.new(1, 1, 1)
  456. B.Transparency = 1
  457. B.CFrame = Limb.CFrame * CFrame.new(0, -0.5, 0)
  458. B.Parent = playa
  459. local W = Instance.new("Weld")
  460. W.Part0 = Limb
  461. W.Part1 = B
  462. W.C0 = CFrame.new(0, -0.5, 0)
  463. W.Parent = Limb
  464. Limb.CanCollide = false
  465. if kneef then
  466. local coru = coroutine.wrap(function()
  467. local uno = Instance.new('Part',workspace)
  468. local dos = Instance.new('Part',workspace)
  469. uno.CFrame = playa:FindFirstChild(hitz).CFrame
  470. dos.CFrame = kneef["big ass knife"].CFrame
  471. local weld = Instance.new('Weld',kneef["big ass knife"])
  472. weld.Part0 = playa:FindFirstChild(hitz)
  473. weld.Part1 = kneef["big ass knife"]
  474. weld.C0 = uno.CFrame:toObjectSpace(dos.CFrame)
  475. uno:Destroy()
  476. dos:Destroy()
  477. playa:FindFirstChild(hitz).Anchored = false
  478. for i, v in pairs(kneef:GetChildren()) do
  479. if v:IsA('BasePart') then
  480. v.Anchored = false
  481. end
  482. end
  483. if zombiemode == false or override then
  484. wait()
  485. end
  486. if kneef:FindFirstChild('Grab') and kneef.Grab:FindFirstChildOfClass('BodyVelocity') then
  487. kneef.Grab:FindFirstChildOfClass('BodyVelocity'):Destroy()
  488. end
  489. local bleedpart = Instance.new("Part", kneef)
  490. bleedpart.CanCollide = false
  491. bleedpart.Size = Vector3.new(0.2, 0.2, 0.2)
  492. bleedpart.CFrame = kneef["big ass knife"].CFrame
  493. bleedpart.Color = Color3.new(115/225, 115/225, 115/225)
  494. bleedpart.Transparency = 1
  495.  
  496. local bleedpartweld = Instance.new("Weld", kneef["big ass knife"])
  497. bleedpartweld.Part0 = kneef["big ass knife"]
  498. bleedpartweld.Part1 = bleedpart
  499. bleedpartweld.C0 = CFrame.new(0,0,0)*CFrame.Angles(math.rad(90),0,0)
  500. local coru = coroutine.wrap(function()
  501. bleed(bleedpart)
  502. end)
  503. coru()
  504. game:GetService('Debris'):AddItem(bleedpart,2)
  505. end)
  506. coru()
  507. end
  508. if playa then
  509. table.insert(rekt,playa)
  510. end
  511. end
  512. elseif playa then
  513. if finishnum ~= 1 then
  514. local coru=coroutine.wrap(function()
  515. player.Character.Head.Psycho.Playing = true
  516. wait(3)
  517. player.Character.Head.Psycho.Playing = false
  518. end)
  519. coru()
  520. end
  521. local playa2 = playa
  522. playa.Archivable = true
  523. local playa = playa:Clone()
  524. playa.Archivable = false
  525. playa2:Destroy()
  526. playa.Parent = workspace
  527. local Gibs = game.Workspace
  528. local Torso = playa.Torso
  529. local Head = playa:FindFirstChild("Head")
  530. local function Scan(ch)
  531. local e
  532. for e = 1,#ch do
  533. Scan(ch[e]:GetChildren())
  534. if (ch[e].ClassName == "Weld" and ch[e]:FindFirstChild('Part1') and ch[e].Part1.Name ~= 'Projectile') or ch[e].ClassName == "Motor6D" or ch[e].ClassName == "Rotate" or (ch[e]:IsA('BasePart') and ch[e].Size == Vector3.new(1, 1, 1)) then
  535. ch[e]:remove()
  536. end
  537. end
  538. end
  539. Scan(playa:GetChildren())
  540. if playa:FindFirstChild('HumanoidRootPart') and (zombiemode == false or override) then
  541. playa:FindFirstChild('HumanoidRootPart'):Destroy()
  542. end
  543. local hum2 = playa:FindFirstChildOfClass("Humanoid")
  544. if zombiemode == true and override == false then
  545. soundy = true
  546. end
  547. if string.sub(hum2.Parent.Name,string.len(hum2.Parent.Name)-8,string.len(hum2.Parent.Name)) ~= "'s Zombie" then
  548. override = true
  549. end
  550. if hum2 ~= nil then
  551. hum2.Name = "Humanoid2"
  552. hum2.Health = 0
  553. if zombiemode == false or override == true then
  554. table.insert(rekt,hum2.Parent)
  555. else
  556. local gyro = Instance.new('BodyGyro',Torso)
  557. hum2.PlatformStand = false
  558. for i,v in pairs(hum2.Parent.Torso:GetChildren()) do
  559. if v:IsA('BodyGyro') then v:Destroy() end
  560. end
  561. if playa:FindFirstChild('HumanoidRootPart') then
  562. hum2.Parent.HumanoidRootPart.CFrame = hum2.Parent.Torso.CFrame
  563. local weldcrucial = Instance.new('Weld',hum2.Parent.HumanoidRootPart)
  564. weldcrucial.Part0 = hum2.Parent.HumanoidRootPart
  565. weldcrucial.Part1 = hum2.Parent.Torso
  566. end
  567. end
  568. end
  569. local ch = playa:GetChildren()
  570. local i
  571. for i = 1,#ch do
  572. if ch[i].Name == "THandle1" or ch[i].Name == "THandle2" then
  573. ch[i]:remove()
  574. end
  575. end
  576.  
  577. if Head then
  578. local Neck = Instance.new("Weld")
  579. Neck.Name = "Neck"
  580. Neck.Part0 = Torso
  581. Neck.Part1 = Head
  582. if pool then
  583. local part = Instance.new('Part',Torso)
  584. part.Position = Vector3.new(0,10,0)
  585. part.Size = Vector3.new(0.2,0.2,0.2)
  586. part.Transparency = 1
  587. part.CanCollide = false
  588. local we = Instance.new('Weld',Torso)
  589. we.Part0 = Torso
  590. we.Part1 = part
  591. we.C0 = CFrame.new(0,0,0)*CFrame.Angles(math.rad(90),0,0)
  592. local coru=coroutine.wrap(function()
  593. bleed(part)
  594. end)
  595. coru()
  596. end
  597. if head == false or head == nil then
  598. Neck.C0 = CFrame.new(0, 1.5, 0)
  599. else
  600. Neck.C0 = CFrame.new(0, 1.5, 0.2)*CFrame.Angles(0.5, 0.25, 0.25)
  601. local bleedpart = Instance.new("Part", Torso)
  602. bleedpart.Size = Vector3.new(0.2, 0.2, 0.2)
  603. bleedpart.Color = Color3.new(115/225, 115/225, 115/225)
  604. bleedpart.CanCollide = false
  605. bleedpart.Position = Head.Position + Vector3.new(0, 1, 0)
  606. bleedpart.Transparency = 1
  607.  
  608. local bleedpartweld = Instance.new("Weld", Torso)
  609. bleedpartweld.Part0 = Torso
  610. bleedpartweld.Part1 = bleedpart
  611. bleedpartweld.C0 = CFrame.Angles(-1, 0, -0.35) * CFrame.new(0, 1, 0.8)
  612. local coru = coroutine.wrap(function()
  613. bleed(bleedpart)
  614. end)
  615. coru()
  616. end
  617. Neck.C1 = CFrame.new()
  618. Neck.Parent = Torso
  619. end
  620. local Limb = playa:FindFirstChild("Right Arm")
  621. if Limb then
  622.  
  623. Limb.CFrame = Torso.CFrame * CFrame.new(1.5, 0, 0)
  624. local Joint = Instance.new("Rotate")
  625. Joint.Name = "RightShoulder"
  626. Joint.Part0 = Torso
  627. Joint.Part1 = Limb
  628. Joint.C0 = CFrame.new(1.5, 0.5, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
  629. Joint.C1 = CFrame.new(-0, 0.5, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
  630. Joint.Parent = Torso
  631.  
  632. local B = Instance.new("Part")
  633. B.TopSurface = 0
  634. B.BottomSurface = 0
  635. B.formFactor = "Symmetric"
  636. B.Size = Vector3.new(1, 1, 1)
  637. B.Transparency = 1
  638. B.CFrame = Limb.CFrame * CFrame.new(0, -0.5, 0)
  639. B.Parent = playa
  640. local W = Instance.new("Weld")
  641. W.Part0 = Limb
  642. W.Part1 = B
  643. W.C0 = CFrame.new(0, -0.5, 0)
  644. W.Parent = Limb
  645. end
  646. local Limb = playa:FindFirstChild("Left Arm")
  647. if Limb then
  648.  
  649. Limb.CFrame = Torso.CFrame * CFrame.new(-1.5, 0, 0)
  650. local Joint = Instance.new("Rotate")
  651. Joint.Name = "LeftShoulder"
  652. Joint.Part0 = Torso
  653. Joint.Part1 = Limb
  654. Joint.C0 = CFrame.new(-1.5, 0.5, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
  655. Joint.C1 = CFrame.new(0, 0.5, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
  656. Joint.Parent = Torso
  657.  
  658. local B = Instance.new("Part")
  659. B.TopSurface = 0
  660. B.BottomSurface = 0
  661. B.formFactor = "Symmetric"
  662. B.Size = Vector3.new(1, 1, 1)
  663. B.Transparency = 1
  664. B.CFrame = Limb.CFrame * CFrame.new(0, -0.5, 0)
  665. B.Parent = playa
  666. local W = Instance.new("Weld")
  667. W.Part0 = Limb
  668. W.Part1 = B
  669. W.C0 = CFrame.new(0, -0.5, 0)
  670. W.Parent = Limb
  671. end
  672. local Limb = playa:FindFirstChild("Right Leg")
  673. if Limb then
  674. Limb.CanCollide = false
  675. Limb.CFrame = Torso.CFrame * CFrame.new(0.5, -2, 0)
  676. local Joint = Instance.new("Rotate")
  677. Joint.Name = "RightHip"
  678. Joint.Part0 = Torso
  679. Joint.Part1 = Limb
  680. Joint.C0 = CFrame.new(0.5, -1, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
  681. Joint.C1 = CFrame.new(0, 1, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
  682. Joint.Parent = Torso
  683.  
  684. local B = Instance.new("Part")
  685. B.TopSurface = 0
  686. B.BottomSurface = 0
  687. B.formFactor = "Symmetric"
  688. B.Size = Vector3.new(1, 1, 1)
  689. B.Transparency = 1
  690. B.CanCollide = true
  691. B.CFrame = Limb.CFrame * CFrame.new(0, -0.5, 0)
  692. B.Parent = playa
  693. local W = Instance.new("Weld")
  694. W.Part0 = Limb
  695. W.Part1 = B
  696. W.C0 = CFrame.new(0, -0.5, 0)
  697. W.Parent = Limb
  698. end
  699. local Limb = playa:FindFirstChild("Left Leg")
  700. if Limb then
  701. Limb.CanCollide = false
  702. Limb.CFrame = Torso.CFrame * CFrame.new(-0.5, -2, 0)
  703. local Joint = Instance.new("Rotate")
  704. Joint.Name = "LeftHip"
  705. Joint.Part0 = Torso
  706. Joint.Part1 = Limb
  707. Joint.C0 = CFrame.new(-0.5, -1, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
  708. Joint.C1 = CFrame.new(-0, 1, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
  709. Joint.Parent = Torso
  710.  
  711. local B = Instance.new("Part")
  712. B.TopSurface = 0
  713. B.BottomSurface = 0
  714. if zombiemode == false or override then
  715. B.CanCollide = true
  716. end
  717. B.formFactor = "Symmetric"
  718. B.Size = Vector3.new(1, 1, 1)
  719. B.Transparency = 1
  720. B.CFrame = Limb.CFrame * CFrame.new(0, -0.5, 0)
  721. B.Parent = playa
  722. local W = Instance.new("Weld")
  723. W.Part0 = Limb
  724. W.Part1 = B
  725. W.C0 = CFrame.new(0, -0.5, 0)
  726. W.Parent = Limb
  727. end
  728. --[[
  729. local Bar = Instance.new("Part")
  730. Bar.TopSurface = 0
  731. Bar.BottomSurface = 0
  732. Bar.formFactor = "Symmetric"
  733. Bar.Size = Vector3.new(1, 1, 1)
  734. Bar.Transparency = 1
  735. Bar.CFrame = Torso.CFrame * CFrame.new(0, 0.5, 0)
  736. Bar.Parent = playa
  737. local Weld = Instance.new("Weld")
  738. Weld.Part0 = Torso
  739. Weld.Part1 = Bar
  740. Weld.C0 = CFrame.new(0, 0.5, 0)
  741. Weld.Parent = Torso
  742. --]]
  743. playa.Parent = Gibs
  744. if kneef and explode == nil then
  745. local coru = coroutine.wrap(function()
  746. if playa:FindFirstChild(hitz) then
  747. local uno = Instance.new('Part',workspace)
  748. local dos = Instance.new('Part',workspace)
  749. uno.CFrame = playa:FindFirstChild(hitz).CFrame
  750. dos.CFrame = kneef["big ass knife"].CFrame
  751. local weld = Instance.new('Weld',kneef["big ass knife"])
  752. weld.Part0 = playa:FindFirstChild(hitz)
  753. weld.Part1 = kneef["big ass knife"]
  754. weld.C0 = uno.CFrame:toObjectSpace(dos.CFrame)
  755. uno:Destroy()
  756. dos:Destroy()
  757. playa:FindFirstChild(hitz).Anchored = false
  758. for i, v in pairs(kneef:GetChildren()) do
  759. if v:IsA('BasePart') then
  760. v.Anchored = false
  761. end
  762. end
  763. if explode == nil or explode == false then
  764. local bleedpart = Instance.new("Part", kneef)
  765. bleedpart.Size = Vector3.new(0.2, 0.2, 0.2)
  766. bleedpart.Color = Color3.new(115/225, 115/225, 115/225)
  767. bleedpart.CanCollide = false
  768. bleedpart.Position = Head.Position + Vector3.new(0, 1, 0)
  769. bleedpart.Transparency = 1
  770.  
  771. local bleedpartweld = Instance.new("Weld", kneef["big ass knife"])
  772. bleedpartweld.Part0 = kneef["big ass knife"]
  773. bleedpartweld.Part1 = bleedpart
  774. bleedpartweld.C0 = CFrame.new(0,0,0)*CFrame.Angles(math.rad(90),0,0)
  775. local coru = coroutine.wrap(function()
  776. bleed(bleedpart)
  777. end)
  778. coru()
  779. end
  780. end
  781. if zombiemode == false or override then
  782. wait()
  783. end
  784. if kneef:FindFirstChild('Grab') and kneef.Grab:FindFirstChildOfClass('BodyVelocity') then
  785. kneef.Grab:FindFirstChildOfClass('BodyVelocity'):Destroy()
  786. end
  787. end)
  788. coru()
  789. end
  790. if explode then
  791. local movevector = CFrame.new(explode.Position,Torso.Position).lookVector
  792. local repulse = Instance.new('BodyForce',Torso)
  793. repulse.Force = movevector*10000 + Vector3.new(0,5000,0)
  794. game.Debris:AddItem(repulse,0.05)
  795. end
  796. if charred and zombiemode == false then
  797. for i,v in pairs(playa:GetChildren()) do
  798. if v:IsA('BasePart') then
  799. v.BrickColor = BrickColor.Black()
  800. local fire = Instance.new('Fire',v)
  801. fire.Size = 5
  802. fire.Heat = 5
  803. elseif v:IsA('Accessory') then
  804. for a,c in pairs(v:GetChildren()) do
  805. if c:IsA('BasePart') then
  806. c.BrickColor = BrickColor.Black()
  807. local fire = Instance.new('Fire',v)
  808. fire.Size = 5
  809. fire.Heat = 5
  810. for o,p in pairs(c:GetChildren()) do
  811. if p:IsA("SpecialMesh") then
  812. p.TextureId = ""
  813. end
  814. end
  815. end
  816. end
  817. end
  818. end
  819. end
  820. if soundy then
  821. local sound = Instance.new('Sound',Head)
  822. sound.SoundId = 'rbxassetid://903640857'
  823. sound.Volume = 1
  824. sound:Play()
  825. sound.Ended:connect(function()
  826. sound:Destroy()
  827. local ambient = Instance.new('Sound',Head)
  828. ambient.Volume = 0.25
  829. ambient.Looped = true
  830. ambient.SoundId = 'rbxassetid://903641031'
  831. ambient:Play()
  832. end)
  833. end
  834. if override then
  835. if (string.len(hum2.Parent.Name) < 9 or string.sub(hum2.Parent.Name,string.len(hum2.Parent.Name)-8,string.len(hum2.Parent.Name)) ~= "'s Zombie") and zombiemode == true and #zombies < 10 then
  836. local coru = coroutine.wrap(function()
  837. wait(4.5)
  838. hum2.Parent.Name = hum2.Parent.Name.."'s Zombie"
  839. hum2.HipHeight = 0.2
  840. wait(0.5)
  841. killz(hum2.Parent,"Head",nil,nil,false,false,false,false)
  842. end)
  843. coru()
  844. else
  845. game:GetService('Debris'):AddItem(playa, 12)
  846. end
  847. else
  848. hum2.Health = 0
  849. table.insert(zombies,playa)
  850. local attack = Instance.new('Sound',Head)
  851. attack.SoundId = 'rbxassetid://903641424'
  852. attack.Volume = 2
  853. for i,v in pairs(playa:GetChildren()) do
  854. if v:IsA('BasePart') and v:FindFirstChildOfClass('TouchTransmitter') == nil then
  855. v.Touched:connect(function(hit)
  856. if hit.Parent and hit.Parent:FindFirstChildOfClass('Humanoid') then
  857. local found = false
  858. if hit.Parent == player.Character then
  859. found = true
  860. end
  861. for a,c in pairs(zombies) do
  862. if c == hit.Parent then
  863. found = true
  864. end
  865. end
  866. if found == false and hit.Parent:FindFirstChildOfClass('Humanoid').Health > 0 then
  867. attack:Play()
  868. if hit.Parent:FindFirstChildOfClass('Humanoid').Health - 2 <= 0 then
  869. hit.Parent:FindFirstChildOfClass('Humanoid').Health = 0
  870. wait()
  871. killz(hit.Parent,"Head")
  872. else
  873. hit.Parent:FindFirstChildOfClass('Humanoid'):TakeDamage(2)
  874. end
  875. end
  876. end
  877. end)
  878. end
  879. end
  880. local coru = coroutine.wrap(function()
  881. wait(2)
  882. for i,v in pairs(playa:GetChildren()) do
  883. if v:IsA('BasePart') then
  884. for a,c in pairs(v:GetChildren()) do
  885. if c:IsA('Fire') or c:IsA('ParticleEmitter') then
  886. c:Destroy()
  887. end
  888. end
  889. elseif v:IsA('Accessory') then
  890. for a,c in pairs(v:GetChildren()) do
  891. if c:IsA('BasePart') then
  892. for b,d in pairs(c:GetChildren()) do
  893. if d:IsA('Fire') or d:IsA('ParticleEmitter') then
  894. d:Destroy()
  895. end
  896. end
  897. end
  898. end
  899. end
  900. end
  901. end)
  902. coru()
  903. end
  904. end
  905. end
  906.  
  907. mouse.KeyDown:connect(function(key)
  908. if key == "t" and mouse.Target then
  909. local hum = mouse.Target.Parent:FindFirstChildOfClass('Humanoid')
  910. if hum == nil then hum = mouse.Target.Parent.Parent:FindFirstChildOfClass('Humanoid') end
  911. if curpoint == nil then
  912. if hum and hum.Parent:FindFirstChild('Head') then
  913. curpart = hum.Parent.Head
  914. else
  915. curpart = nil
  916. curpoint = mouse.Hit.p
  917. end
  918. if player.PlayerGui:FindFirstChild('Notification') then player.PlayerGui.Notification:Destroy() end
  919. notify("ZOMBIE TARGET SET",false)
  920. else
  921. curpart = nil
  922. curpoint = nil
  923. if player.PlayerGui:FindFirstChild('Notification') then player.PlayerGui.Notification:Destroy() end
  924. notify("ZOMBIE TARGET REMOVED",false)
  925. end
  926. elseif key == "y" then
  927. for o,p in pairs(zombies) do
  928. local coru = coroutine.wrap(function()
  929. if p:FindFirstChild('Torso') then
  930. killz(p,"Head",nil,nil,false,false,false,true)
  931. else
  932. table.remove(zombies,o)
  933. end
  934. end)
  935. coru()
  936. wait()
  937. end
  938. for i,v in pairs(zombies) do
  939. table.remove(zombies,i)
  940. end
  941. if player.PlayerGui:FindFirstChild('Notification') then player.PlayerGui.Notification:Destroy() end
  942. notify("ZOMBIES TERMINATED",false)
  943. end
  944. end)
  945.  
  946. function nub()
  947. repeat wait() until player.Character and player.Character:FindFirstChild('Torso')
  948. local me = player.Character
  949. local point = me.HumanoidRootPart
  950. local playergui = player.PlayerGui
  951. local rightshoulderz = me.Torso["Right Shoulder"]:Clone()
  952. local leftshoulderz = me.Torso["Left Shoulder"]:Clone()
  953. local torsojoint = me.HumanoidRootPart["RootJoint"]:Clone()
  954. local lefthipz = me.Torso["Left Hip"]:Clone()
  955. local righthipz = me.Torso["Right Hip"]:Clone()
  956. local mode = "kill"
  957. local lerpz = false
  958. local active = false
  959. local acting = false
  960. local hit = false
  961. local canClick = true
  962. local stabbing = false
  963. local grabbing = false
  964. local finishing = false
  965. local kyssing = false
  966. local canbackgroundmusic = true
  967. local cancolorfilter = true
  968. local spinboolean = false
  969. local grabbed = nil
  970. local doing = false
  971. local rightshoulder = nil
  972. local leftshoulder = nil
  973. local headweld = nil
  974. local knifeparts = {}
  975. local usable = true
  976. finishnum = 1
  977.  
  978. function notify(msg,forever)
  979. local doit = coroutine.wrap(function()
  980. local gui = Instance.new('ScreenGui',playergui)
  981. gui.Name = "Notification"
  982. local frame = Instance.new('Frame',gui)
  983. frame.Position = UDim2.new(0,0,0,0)
  984. frame.Size = UDim2.new(1,0,0.2,0)
  985. frame.BackgroundTransparency = 1
  986. local txt = Instance.new('TextLabel',frame)
  987. txt.TextColor3 = Color3.new(255,255,255)
  988. txt.TextStrokeColor3 = Color3.new(0, 0, 0)
  989. txt.TextStrokeTransparency = 0
  990. txt.BackgroundTransparency = 1
  991. txt.Text = ""
  992. txt.Size = UDim2.new(1,0,0.3,0)
  993. txt.Position = UDim2.new(0,0,0.4,0)
  994. txt.TextScaled = true
  995. txt.Font = "Code"
  996. txt.TextXAlignment = "Center"
  997. local tap = Instance.new("Sound")
  998. tap.Parent = gui
  999. tap.SoundId = "rbxassetid://147982968"
  1000. tap.TimePosition = 0.1
  1001. local str = msg
  1002. local len = string.len(str)
  1003. for i=1,len do
  1004. txt.Text = string.sub(str,1,i)
  1005. pitche = math.random(20, 40)/10
  1006. tap.PlaybackSpeed = pitche
  1007. tap:Play()
  1008. wait(0.01)
  1009. end
  1010. if forever == false then
  1011. wait(1)
  1012. while txt.TextTransparency < 1 do
  1013. txt.TextTransparency = txt.TextTransparency + 0.1
  1014. txt.TextStrokeTransparency = txt.TextStrokeTransparency + 0.1
  1015. wait(0.001)
  1016. end
  1017. gui:Destroy()
  1018. end
  1019. end)
  1020. doit()
  1021. end
  1022.  
  1023. wait(0.5)
  1024. notify("PRESS [Z] TO EQUIP KNIFE || Created by mustardfoot and Tollonis",true)
  1025. local laugh = Instance.new('Sound',me.Head)
  1026. laugh.SoundId = 'rbxassetid://378827985'
  1027. laugh.Name = "Psycho"
  1028. laugh.Volume = 5
  1029. -- 1 - bitch ass knife
  1030. local obj1 = Instance.new("Model")
  1031. obj1.Name = "bitch ass knife"
  1032. obj1.Parent = game.Workspace
  1033.  
  1034. -- 2 - Grab
  1035. local obj2 = Instance.new("Part")
  1036. obj2.CFrame = CFrame.new(Vector3.new(20.4525032, 6.14501333, -134.399979)) * CFrame.Angles(-3.1415927410126, 0, -3.1415927410126)
  1037. obj2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1038. obj2.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1039. obj2.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1040. obj2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1041. obj2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1042. obj2.Material = Enum.Material.Concrete
  1043. obj2.Size = Vector3.new(1, 0.25, 0.25)
  1044. obj2.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1045. obj2.Anchored = true
  1046. obj2.BrickColor = BrickColor.new("Black")
  1047. obj2.Friction = 0.30000001192093
  1048. obj2.Shape = Enum.PartType.Cylinder
  1049. obj2.Name = "Grab"
  1050. obj2.Parent = obj1
  1051.  
  1052. -- 3 - handletopcap
  1053. local obj3 = Instance.new("Part")
  1054. obj3.CFrame = CFrame.new(Vector3.new(19.9725456, 6.14502859, -134.399933)) * CFrame.Angles(0, 1.5707963705063, 0)
  1055. obj3.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1056. obj3.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1057. obj3.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1058. obj3.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1059. obj3.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1060. obj3.Material = Enum.Material.Concrete
  1061. obj3.Size = Vector3.new(0.349999994, 0.349999994, 0.349999994)
  1062. obj3.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1063. obj3.Anchored = true
  1064. obj3.BrickColor = BrickColor.new("Black")
  1065. obj3.Friction = 0.30000001192093
  1066. obj3.Shape = Enum.PartType.Ball
  1067. obj3.Name = "handletopcap"
  1068. obj3.Parent = obj1
  1069.  
  1070. -- 4 - handlebottomcap
  1071. local obj4 = Instance.new("Part")
  1072. obj4.CFrame = CFrame.new(Vector3.new(20.9725285, 6.14502859, -134.399918)) * CFrame.Angles(0, 1.5707963705063, 0)
  1073. obj4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1074. obj4.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1075. obj4.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1076. obj4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1077. obj4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1078. obj4.Material = Enum.Material.Concrete
  1079. obj4.Size = Vector3.new(0.25, 0.25, 0.25)
  1080. obj4.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1081. obj4.Anchored = true
  1082. obj4.BrickColor = BrickColor.new("Black")
  1083. obj4.Friction = 0.30000001192093
  1084. obj4.Shape = Enum.PartType.Ball
  1085. obj4.Name = "handlebottomcap"
  1086. obj4.Parent = obj1
  1087.  
  1088. -- 5 - handleguardmid
  1089. local obj5 = Instance.new("Part")
  1090. obj5.CFrame = CFrame.new(Vector3.new(19.9474983, 6.14502859, -134.399918)) * CFrame.Angles(0, 1.5707963705063, 0)
  1091. obj5.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1092. obj5.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1093. obj5.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1094. obj5.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1095. obj5.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1096. obj5.Material = Enum.Material.Concrete
  1097. obj5.Size = Vector3.new(0.349999994, 0.349999994, 0.100000001)
  1098. obj5.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1099. obj5.Anchored = true
  1100. obj5.BrickColor = BrickColor.new("Black")
  1101. obj5.Friction = 0.30000001192093
  1102. obj5.Shape = Enum.PartType.Block
  1103. obj5.Name = "handleguardmid"
  1104. obj5.Parent = obj1
  1105.  
  1106. -- 6 - handleguardcap1
  1107. local obj6 = Instance.new("Part")
  1108. obj6.CFrame = CFrame.new(Vector3.new(19.9474983, 6.32502794, -134.399918)) * CFrame.Angles(-3.1415927410126, 0, -3.1415927410126)
  1109. obj6.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1110. obj6.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1111. obj6.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1112. obj6.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1113. obj6.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1114. obj6.Material = Enum.Material.Concrete
  1115. obj6.Size = Vector3.new(0.100000001, 0.349999994, 0.349999994)
  1116. obj6.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1117. obj6.Anchored = true
  1118. obj6.BrickColor = BrickColor.new("Black")
  1119. obj6.Friction = 0.30000001192093
  1120. obj6.Shape = Enum.PartType.Cylinder
  1121. obj6.Name = "handleguardcap1"
  1122. obj6.Parent = obj1
  1123.  
  1124. -- 7 - handleguardcap2
  1125. local obj7 = Instance.new("Part")
  1126. obj7.CFrame = CFrame.new(Vector3.new(19.9474983, 5.97502899, -134.399918)) * CFrame.Angles(-3.1415927410126, 0, -3.1415927410126)
  1127. obj7.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1128. obj7.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1129. obj7.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1130. obj7.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1131. obj7.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1132. obj7.Material = Enum.Material.Concrete
  1133. obj7.Size = Vector3.new(0.100000009, 0.349999994, 0.349999994)
  1134. obj7.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1135. obj7.Anchored = true
  1136. obj7.BrickColor = BrickColor.new("Black")
  1137. obj7.Friction = 0.30000001192093
  1138. obj7.Shape = Enum.PartType.Cylinder
  1139. obj7.Name = "handleguardcap2"
  1140. obj7.Parent = obj1
  1141.  
  1142. -- 8 - big ass knife
  1143. local obj8 = Instance.new("Part")
  1144. obj8.CFrame = CFrame.new(Vector3.new(18.4375095, 6.14502859, -134.401321)) * CFrame.Angles(0, 1.5707963705063, 0)
  1145. obj8.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1146. obj8.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1147. obj8.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1148. obj8.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1149. obj8.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1150. obj8.Material = Enum.Material.Metal
  1151. obj8.Size = Vector3.new(0.0500000007, 0.280000001, 0.839999795)
  1152. obj8.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1153. obj8.Anchored = true
  1154. obj8.BrickColor = BrickColor.new("Lily white")
  1155. obj8.Friction = 0.30000001192093
  1156. obj8.Shape = Enum.PartType.Block
  1157. obj8.Name = "big ass knife"
  1158. obj8.Parent = obj1
  1159.  
  1160. -- 9 - Mesh
  1161. local obj9 = Instance.new("BlockMesh")
  1162. obj9.Scale = Vector3.new(0.5, 1, 1)
  1163. obj9.Parent = obj8
  1164.  
  1165. -- 10 - big ass knife
  1166. local obj10 = Instance.new("Part")
  1167. obj10.CFrame = CFrame.new(Vector3.new(19.7425137, 6.14502859, -134.401321)) * CFrame.Angles(0, 1.5707963705063, 0)
  1168. obj10.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1169. obj10.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1170. obj10.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1171. obj10.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1172. obj10.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1173. obj10.Material = Enum.Material.Metal
  1174. obj10.Size = Vector3.new(0.0500000007, 0.280000001, 0.289999962)
  1175. obj10.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1176. obj10.Anchored = true
  1177. obj10.BrickColor = BrickColor.new("Lily white")
  1178. obj10.Friction = 0.30000001192093
  1179. obj10.Shape = Enum.PartType.Block
  1180. obj10.Name = "big ass knife"
  1181. obj10.Parent = obj1
  1182. local knife = obj10
  1183.  
  1184. -- 11 - Mesh
  1185. local obj11 = Instance.new("BlockMesh")
  1186. obj11.Scale = Vector3.new(0.5, 1, 1)
  1187. obj11.Parent = obj10
  1188.  
  1189. -- 12 - big ass knife
  1190. local obj12 = Instance.new("Part")
  1191. obj12.CFrame = CFrame.new(Vector3.new(19.1075306, 6.08502865, -134.401321)) * CFrame.Angles(0, 1.5707963705063, 0)
  1192. obj12.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1193. obj12.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1194. obj12.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1195. obj12.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1196. obj12.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1197. obj12.Material = Enum.Material.Metal
  1198. obj12.Size = Vector3.new(0.0500000007, 0.159999996, 0.979999959)
  1199. obj12.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1200. obj12.Anchored = true
  1201. obj12.BrickColor = BrickColor.new("Lily white")
  1202. obj12.Friction = 0.30000001192093
  1203. obj12.Shape = Enum.PartType.Block
  1204. obj12.Name = "big ass knife"
  1205. obj12.Parent = obj1
  1206.  
  1207. -- 13 - Mesh
  1208. local obj13 = Instance.new("BlockMesh")
  1209. obj13.Scale = Vector3.new(0.5, 1, 1)
  1210. obj13.Parent = obj12
  1211.  
  1212. -- 14 - serration
  1213. local obj14 = Instance.new("WedgePart")
  1214. obj14.CFrame = CFrame.new(Vector3.new(19.4963322, 6.15381575, -134.400375)) * CFrame.Angles(1.5707963705063, -0.78539824485779, -1.5707963705063)
  1215. obj14.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1216. obj14.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1217. obj14.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1218. obj14.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1219. obj14.Material = Enum.Material.Metal
  1220. obj14.Size = Vector3.new(0.0500000007, 0.200000003, 0.200000003)
  1221. obj14.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1222. obj14.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1223. obj14.Anchored = true
  1224. obj14.BrickColor = BrickColor.new("Lily white")
  1225. obj14.Friction = 0.30000001192093
  1226. obj14.Name = "serration"
  1227. obj14.Parent = obj1
  1228.  
  1229. -- 15 - Mesh
  1230. local obj15 = Instance.new("BlockMesh")
  1231. obj15.Scale = Vector3.new(0.5, 1, 1)
  1232. obj15.Parent = obj14
  1233.  
  1234. -- 16 - serration
  1235. local obj16 = Instance.new("WedgePart")
  1236. obj16.CFrame = CFrame.new(Vector3.new(19.2763138, 6.15381575, -134.400375)) * CFrame.Angles(1.5707963705063, -0.78539824485779, -1.5707963705063)
  1237. obj16.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1238. obj16.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1239. obj16.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1240. obj16.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1241. obj16.Material = Enum.Material.Metal
  1242. obj16.Size = Vector3.new(0.0500000007, 0.200000003, 0.200000003)
  1243. obj16.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1244. obj16.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1245. obj16.Anchored = true
  1246. obj16.BrickColor = BrickColor.new("Lily white")
  1247. obj16.Friction = 0.30000001192093
  1248. obj16.Name = "serration"
  1249. obj16.Parent = obj1
  1250.  
  1251. -- 17 - Mesh
  1252. local obj17 = Instance.new("BlockMesh")
  1253. obj17.Scale = Vector3.new(0.5, 1, 1)
  1254. obj17.Parent = obj16
  1255.  
  1256. -- 18 - serration
  1257. local obj18 = Instance.new("WedgePart")
  1258. obj18.CFrame = CFrame.new(Vector3.new(19.3863068, 6.15381575, -134.400375)) * CFrame.Angles(1.5707963705063, -0.78539824485779, -1.5707963705063)
  1259. obj18.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1260. obj18.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1261. obj18.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1262. obj18.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1263. obj18.Material = Enum.Material.Metal
  1264. obj18.Size = Vector3.new(0.0500000007, 0.200000003, 0.200000003)
  1265. obj18.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1266. obj18.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1267. obj18.Anchored = true
  1268. obj18.BrickColor = BrickColor.new("Lily white")
  1269. obj18.Friction = 0.30000001192093
  1270. obj18.Name = "serration"
  1271. obj18.Parent = obj1
  1272.  
  1273. -- 19 - Mesh
  1274. local obj19 = Instance.new("BlockMesh")
  1275. obj19.Scale = Vector3.new(0.5, 1, 1)
  1276. obj19.Parent = obj18
  1277.  
  1278. -- 20 - serration
  1279. local obj20 = Instance.new("WedgePart")
  1280. obj20.CFrame = CFrame.new(Vector3.new(19.5963173, 6.15381575, -134.400375)) * CFrame.Angles(1.5707963705063, -0.78539824485779, -1.5707963705063)
  1281. obj20.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1282. obj20.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1283. obj20.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1284. obj20.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1285. obj20.Material = Enum.Material.Metal
  1286. obj20.Size = Vector3.new(0.0500000007, 0.200000003, 0.200000003)
  1287. obj20.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1288. obj20.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1289. obj20.Anchored = true
  1290. obj20.BrickColor = BrickColor.new("Lily white")
  1291. obj20.Friction = 0.30000001192093
  1292. obj20.Name = "serration"
  1293. obj20.Parent = obj1
  1294.  
  1295. -- 21 - Mesh
  1296. local obj21 = Instance.new("BlockMesh")
  1297. obj21.Scale = Vector3.new(0.5, 1, 1)
  1298. obj21.Parent = obj20
  1299.  
  1300. -- 22 - serration
  1301. local obj22 = Instance.new("WedgePart")
  1302. obj22.CFrame = CFrame.new(Vector3.new(19.1663074, 6.15381575, -134.400375)) * CFrame.Angles(1.5707963705063, -0.78539824485779, -1.5707963705063)
  1303. obj22.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1304. obj22.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1305. obj22.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1306. obj22.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1307. obj22.Material = Enum.Material.Metal
  1308. obj22.Size = Vector3.new(0.0500000007, 0.200000003, 0.200000003)
  1309. obj22.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1310. obj22.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1311. obj22.Anchored = true
  1312. obj22.BrickColor = BrickColor.new("Lily white")
  1313. obj22.Friction = 0.30000001192093
  1314. obj22.Name = "serration"
  1315. obj22.Parent = obj1
  1316.  
  1317. -- 23 - Mesh
  1318. local obj23 = Instance.new("BlockMesh")
  1319. obj23.Scale = Vector3.new(0.5, 1, 1)
  1320. obj23.Parent = obj22
  1321.  
  1322. -- 24 - serration
  1323. local obj24 = Instance.new("WedgePart")
  1324. obj24.CFrame = CFrame.new(Vector3.new(18.9663048, 6.15381575, -134.400375)) * CFrame.Angles(1.5707963705063, -0.78539824485779, -1.5707963705063)
  1325. obj24.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1326. obj24.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1327. obj24.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1328. obj24.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1329. obj24.Material = Enum.Material.Metal
  1330. obj24.Size = Vector3.new(0.0500000007, 0.200000003, 0.200000003)
  1331. obj24.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1332. obj24.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1333. obj24.Anchored = true
  1334. obj24.BrickColor = BrickColor.new("Lily white")
  1335. obj24.Friction = 0.30000001192093
  1336. obj24.Name = "serration"
  1337. obj24.Parent = obj1
  1338.  
  1339. -- 25 - Mesh
  1340. local obj25 = Instance.new("BlockMesh")
  1341. obj25.Scale = Vector3.new(0.5, 1, 1)
  1342. obj25.Parent = obj24
  1343.  
  1344. -- 26 - serration
  1345. local obj26 = Instance.new("WedgePart")
  1346. obj26.CFrame = CFrame.new(Vector3.new(18.8562984, 6.15381575, -134.400375)) * CFrame.Angles(1.5707963705063, -0.78539824485779, -1.5707963705063)
  1347. obj26.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1348. obj26.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1349. obj26.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1350. obj26.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1351. obj26.Material = Enum.Material.Metal
  1352. obj26.Size = Vector3.new(0.0500000007, 0.200000003, 0.200000003)
  1353. obj26.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1354. obj26.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1355. obj26.Anchored = true
  1356. obj26.BrickColor = BrickColor.new("Lily white")
  1357. obj26.Friction = 0.30000001192093
  1358. obj26.Name = "serration"
  1359. obj26.Parent = obj1
  1360.  
  1361. -- 27 - Mesh
  1362. local obj27 = Instance.new("BlockMesh")
  1363. obj27.Scale = Vector3.new(0.5, 1, 1)
  1364. obj27.Parent = obj26
  1365.  
  1366. -- 28 - serration
  1367. local obj28 = Instance.new("WedgePart")
  1368. obj28.CFrame = CFrame.new(Vector3.new(19.0663071, 6.15381575, -134.400375)) * CFrame.Angles(1.5707963705063, -0.78539824485779, -1.5707963705063)
  1369. obj28.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1370. obj28.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1371. obj28.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1372. obj28.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1373. obj28.Material = Enum.Material.Metal
  1374. obj28.Size = Vector3.new(0.0500000007, 0.200000003, 0.200000003)
  1375. obj28.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1376. obj28.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1377. obj28.Anchored = true
  1378. obj28.BrickColor = BrickColor.new("Lily white")
  1379. obj28.Friction = 0.30000001192093
  1380. obj28.Name = "serration"
  1381. obj28.Parent = obj1
  1382.  
  1383. -- 29 - Mesh
  1384. local obj29 = Instance.new("BlockMesh")
  1385. obj29.Scale = Vector3.new(0.5, 1, 1)
  1386. obj29.Parent = obj28
  1387.  
  1388. -- 30 - knifetip1
  1389. local obj30 = Instance.new("WedgePart")
  1390. obj30.CFrame = CFrame.new(Vector3.new(18.0163059, 6.14381599, -134.400375)) * CFrame.Angles(1.5707963705063, -0.78539824485779, -1.5707963705063)
  1391. obj30.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1392. obj30.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1393. obj30.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1394. obj30.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1395. obj30.Material = Enum.Material.Metal
  1396. obj30.Size = Vector3.new(0.0500000007, 0.200000003, 0.200000003)
  1397. obj30.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1398. obj30.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1399. obj30.Anchored = true
  1400. obj30.BrickColor = BrickColor.new("Lily white")
  1401. obj30.Friction = 0.30000001192093
  1402. obj30.Name = "knifetip1"
  1403. obj30.Parent = obj1
  1404.  
  1405. -- 31 - Mesh
  1406. local obj31 = Instance.new("BlockMesh")
  1407. obj31.Scale = Vector3.new(0.5, 1, 1)
  1408. obj31.Parent = obj30
  1409.  
  1410. -- 32 - redstuff
  1411. local obj32 = Instance.new("Part")
  1412. obj32.CFrame = CFrame.new(Vector3.new(19.9470005, 5.9749999, -134.399994)) * CFrame.Angles(-0, 0, -0)
  1413. obj32.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1414. obj32.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1415. obj32.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1416. obj32.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1417. obj32.Material = Enum.Material.SmoothPlastic
  1418. obj32.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1419. obj32.Size = Vector3.new(0.0500000007, 0.360000014, 0.360000014)
  1420. obj32.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1421. obj32.BrickColor = BrickColor.new("Institutional white")
  1422. obj32.Friction = 0.30000001192093
  1423. obj32.Shape = Enum.PartType.Cylinder
  1424. obj32.Name = "redstuff"
  1425. obj32.Anchored = true
  1426. obj32.Parent = obj1
  1427.  
  1428.  
  1429. -- 33 - redstuff
  1430. local obj33 = Instance.new("Part")
  1431. obj33.CFrame = CFrame.new(Vector3.new(18.9800053, 6.1400156, -134.404984)) * CFrame.Angles(-0, 0, -0)
  1432. obj33.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1433. obj33.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1434. obj33.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1435. obj33.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1436. obj33.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1437. obj33.Material = Enum.Material.SmoothPlastic
  1438. obj33.Size = Vector3.new(1.81999993, 0.100000001, 0.0500000007)
  1439. obj33.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1440. obj33.BrickColor = BrickColor.new("Institutional white")
  1441. obj33.Friction = 0.30000001192093
  1442. obj33.Shape = Enum.PartType.Block
  1443. obj33.Name = "redstuff"
  1444. obj33.Anchored = true
  1445. obj33.Parent = obj1
  1446.  
  1447. -- 34 - redstuff
  1448. local obj34 = Instance.new("Part")
  1449. obj34.CFrame = CFrame.new(Vector3.new(19.9470005, 6.32499981, -134.399994)) * CFrame.Angles(-0, 0, -0)
  1450. obj34.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1451. obj34.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1452. obj34.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1453. obj34.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1454. obj34.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1455. obj34.Size = Vector3.new(0.0500000007, 0.360000014, 0.360000014)
  1456. obj34.Material = Enum.Material.SmoothPlastic
  1457. obj34.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1458. obj34.BrickColor = BrickColor.new("Institutional white")
  1459. obj34.Friction = 0.30000001192093
  1460. obj34.Shape = Enum.PartType.Cylinder
  1461. obj34.Name = "redstuff"
  1462. obj34.Anchored = true
  1463. obj34.Parent = obj1
  1464.  
  1465. -- 35 - redstuff
  1466. local obj35 = Instance.new("Part")
  1467. obj35.CFrame = CFrame.new(Vector3.new(19.8830166, 6.14501476, -134.399963)) * CFrame.Angles(-0, 0, -0)
  1468. obj35.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1469. obj35.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1470. obj35.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1471. obj35.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1472. obj35.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1473. obj35.Size = Vector3.new(0.0500000007, 0.319999993, 0.319999993)
  1474. obj35.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1475. obj35.BrickColor = BrickColor.new("Institutional white")
  1476. obj35.Friction = 0.30000001192093
  1477. obj35.Shape = Enum.PartType.Cylinder
  1478. obj35.Material = Enum.Material.SmoothPlastic
  1479. obj35.Name = "redstuff"
  1480. obj35.Anchored = true
  1481. obj35.Parent = obj1
  1482.  
  1483. -- 36 - redstuff
  1484. local obj36 = Instance.new("Part")
  1485. obj36.CFrame = CFrame.new(Vector3.new(20.9430103, 6.14501476, -134.399963)) * CFrame.Angles(-0, 0, -0)
  1486. obj36.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1487. obj36.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1488. obj36.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1489. obj36.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1490. obj36.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1491. obj36.Material = Enum.Material.SmoothPlastic
  1492. obj36.Size = Vector3.new(0.0500000007, 0.25999999, 0.25999999)
  1493. obj36.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1494. obj36.BrickColor = BrickColor.new("Institutional white")
  1495. obj36.Friction = 0.30000001192093
  1496. obj36.Shape = Enum.PartType.Cylinder
  1497. obj36.Name = "redstuff"
  1498. obj36.Anchored = true
  1499. obj36.Parent = obj1
  1500.  
  1501. -- 37 - redstuff
  1502. local obj37 = Instance.new("WedgePart")
  1503. obj37.CFrame = CFrame.new(Vector3.new(18.066288, 6.14381599, -134.400375)) * CFrame.Angles(1.5707963705063, -0.78539824485779, -1.5707963705063)
  1504. obj37.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1505. obj37.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1506. obj37.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1507. obj37.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1508. obj37.Material = Enum.Material.SmoothPlastic
  1509. obj37.Size = Vector3.new(0.0500000007, 0.0700000003, 0.0700000003)
  1510. obj37.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1511. obj37.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1512. obj37.Anchored = true
  1513. obj37.BrickColor = BrickColor.new("Institutional white")
  1514. obj37.Friction = 0.30000001192093
  1515. obj37.Name = "redstuff"
  1516. obj37.Anchored = true
  1517. obj37.Parent = obj1
  1518.  
  1519. -- 38 - redstuff
  1520. local obj38 = Instance.new("Part")
  1521. obj38.CFrame = CFrame.new(Vector3.new(20.1230125, 6.14501476, -134.399979)) * CFrame.Angles(-0, 0, -0)
  1522. obj38.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1523. obj38.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1524. obj38.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1525. obj38.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1526. obj38.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1527. obj38.Material = Enum.Material.SmoothPlastic
  1528. obj38.Size = Vector3.new(0.0500000007, 0.25999999, 0.25999999)
  1529. obj38.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1530. obj38.BrickColor = BrickColor.new("Institutional white")
  1531. obj38.Friction = 0.30000001192093
  1532. obj38.Shape = Enum.PartType.Cylinder
  1533. obj38.Name = "redstuff"
  1534. obj38.Anchored = true
  1535. obj38.Parent = obj1
  1536.  
  1537. local function recurse(objnum)
  1538. table.insert(knifeparts,{objnum,objnum.Parent})
  1539. for i,v in pairs(objnum:GetChildren()) do
  1540. recurse(v)
  1541. end
  1542. end
  1543.  
  1544. recurse(obj1)
  1545.  
  1546. local audio = Instance.new('Sound',knife)
  1547. audio.Volume = 2
  1548.  
  1549. local audio2 = Instance.new('Sound',knife)
  1550. audio2.Volume = 2
  1551.  
  1552. local holdpart = Instance.new("Part")
  1553. holdpart.Parent = me
  1554. holdpart.Size = Vector3.new(0.4, 0.4, 0.2)
  1555. holdpart.Position = me.Head.Position + Vector3.new(0, 1, 0)
  1556. holdpart.BrickColor = BrickColor.new("Burnt Sienna")
  1557.  
  1558. local previous = nil
  1559. for i,v in pairs(obj1:GetChildren()) do
  1560. if v:IsA('BasePart') then
  1561. if previous then
  1562. local weld = Instance.new('Weld',v)
  1563. weld.Part0 = v
  1564. weld.Part1 = previous
  1565. weld.C0 = v.CFrame:inverse() * previous.CFrame
  1566. previous.Anchored = false
  1567. previous.CanCollide = false
  1568. local vee = v
  1569. weld.AncestryChanged:connect(function(mez,par)
  1570. wait()
  1571. weld.Parent = vee
  1572. end)
  1573. end
  1574. previous = v
  1575. end
  1576. end
  1577. previous.Anchored = false
  1578. previous.CanCollide = false
  1579.  
  1580. local holdpartweld = Instance.new("Weld", me.Torso)
  1581. holdpartweld.Part0 = me.Torso
  1582. holdpartweld.Part1 = holdpart
  1583. holdpartweld.C0 = CFrame.Angles(0, 0, 0) * CFrame.new(-1, -0.8, 0.15)
  1584.  
  1585. holdpartweld.AncestryChanged:connect(function(mez,par)
  1586. if par ~= me.Torso then
  1587. wait()
  1588. holdpartweld.Parent = me.Torso
  1589. end
  1590. end)
  1591.  
  1592. local knifeweld = Instance.new('Weld',me.Torso)
  1593. knifeweld.Part0 = me.Torso
  1594. knifeweld.Part1 = obj2
  1595. knifeweld.C1 = CFrame.Angles(0,math.rad(90),0) * CFrame.new(1, 0.8, 0.55)
  1596. knifeweld.AncestryChanged:connect(function(mez,par)
  1597. if par ~= me.Torso then
  1598. wait()
  1599. knifeweld.Parent = me.Torso
  1600. end
  1601. end)
  1602. local ScreenGui = Instance.new("ScreenGui")
  1603. local CustomizeGui = Instance.new("Frame")
  1604. local Customize = Instance.new("TextLabel")
  1605. local ClosestColor = Instance.new("TextLabel")
  1606. local Line = Instance.new("TextLabel")
  1607. local Color = Instance.new("ImageLabel")
  1608. local Close = Instance.new("TextButton")
  1609. local RedHue = Instance.new("TextLabel")
  1610. local GreenHue = Instance.new("TextLabel")
  1611. local RedInput = Instance.new("TextBox")
  1612. local BlueHue = Instance.new("TextLabel")
  1613. local GreenInput = Instance.new("TextBox")
  1614. local TransInput = Instance.new("TextBox")
  1615. local BlueInput = Instance.new("TextBox")
  1616. local Message = Instance.new("TextLabel")
  1617. local Message2 = Instance.new("TextLabel")
  1618. local TrailTransparency = Instance.new("TextLabel")
  1619. local TrailInput = Instance.new("TextBox")
  1620. local MusicOption = Instance.new("TextButton")
  1621. local ScreenOption = Instance.new("TextButton")
  1622. local ScreenOptionTxt = Instance.new("TextLabel")
  1623. local MusicOptionTxt = Instance.new("TextLabel")
  1624.  
  1625. -- Properties
  1626.  
  1627. ScreenGui.Parent = playergui
  1628.  
  1629. CustomizeGui.Name = "CustomizeGui"
  1630. CustomizeGui.Parent = ScreenGui
  1631. CustomizeGui.BackgroundColor3 = Color3.new(0.294118, 0.294118, 0.294118)
  1632. CustomizeGui.BackgroundTransparency = 0.5
  1633. CustomizeGui.BorderColor3 = Color3.new(0, 0, 0)
  1634. CustomizeGui.BorderSizePixel = 2
  1635. CustomizeGui.Position = UDim2.new(0, 0, 0.5, 0)
  1636. CustomizeGui.Size = UDim2.new(0.449999988, 0, 0.449999988, 0)
  1637.  
  1638. Customize.Name = "Customize"
  1639. Customize.Parent = CustomizeGui
  1640. Customize.BackgroundColor3 = Color3.new(0.294118, 0.294118, 0.294118)
  1641. Customize.BackgroundTransparency = 0.75
  1642. Customize.BorderSizePixel = 0
  1643. Customize.Size = UDim2.new(1, 0, 0.200000003, 0)
  1644. Customize.FontSize = Enum.FontSize.Size28
  1645. Customize.Text = "ACCENT COLOR CUSTOMIZATION"
  1646. Customize.TextColor3 = Color3.new(1, 1, 1)
  1647. Customize.TextScaled = true
  1648. Customize.TextSize = 25
  1649. Customize.TextStrokeTransparency = 0.5
  1650. Customize.TextWrapped = true
  1651.  
  1652. ClosestColor.Name = "ClosestColor"
  1653. ClosestColor.Parent = CustomizeGui
  1654. ClosestColor.BackgroundColor3 = Color3.new(1, 1, 1)
  1655. ClosestColor.BackgroundTransparency = 1
  1656. ClosestColor.Position = UDim2.new(0, 0, 0.850000024, 0)
  1657. ClosestColor.Size = UDim2.new(1, 0, 0.150000006, 0)
  1658. ClosestColor.Font = Enum.Font.SourceSansLight
  1659. ClosestColor.FontSize = Enum.FontSize.Size32
  1660. ClosestColor.Text = "Your color is closest to Institutional White"
  1661. ClosestColor.TextColor3 = Color3.new(1, 1, 1)
  1662. ClosestColor.TextSize = 30
  1663. ClosestColor.TextStrokeTransparency = 0.5
  1664.  
  1665. Line.Name = "Line"
  1666. Line.Parent = CustomizeGui
  1667. Line.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
  1668. Line.BackgroundTransparency = 0.5
  1669. Line.BorderColor3 = Color3.new(0, 0, 0)
  1670. Line.BorderSizePixel = 0
  1671. Line.Position = UDim2.new(0, 0, 0.200000003, 0)
  1672. Line.Size = UDim2.new(1, 0, 0.0299999993, 0)
  1673. Line.Font = Enum.Font.SourceSans
  1674. Line.FontSize = Enum.FontSize.Size14
  1675. Line.Text = " "
  1676. Line.TextSize = 14
  1677.  
  1678. Color.Name = "Color"
  1679. Color.Parent = CustomizeGui
  1680. Color.BackgroundColor3 = Color3.new(1, 1, 1)
  1681. Color.BorderSizePixel = 0
  1682. Color.Position = UDim2.new(0.699999988, 0, 0.419999987, 0)
  1683. Color.Size = UDim2.new(0.300000012, 0, 0.300000012, 0)
  1684. Color.SizeConstraint = Enum.SizeConstraint.RelativeYY
  1685.  
  1686. MusicOption.Parent = CustomizeGui
  1687. MusicOption.Name = "MusicOption"
  1688. MusicOption.BackgroundColor3 = Color3.new(0, 1, 0)
  1689. MusicOption.BorderSizePixel = 1
  1690. MusicOption.Position = UDim2.new(0.01, 0, -0.12, 0)
  1691. MusicOption.Size = UDim2.new(0.05, 0, 0.1, 0)
  1692. MusicOption.Text = ""
  1693. MusicOption.BackgroundTransparency = 0.5
  1694.  
  1695. ScreenOption.Parent = CustomizeGui
  1696. ScreenOption.Name = "ScreenOption"
  1697. ScreenOption.BackgroundColor3 = Color3.new(0, 1, 0)
  1698. ScreenOption.BorderSizePixel = 1
  1699. ScreenOption.Position = UDim2.new(0.01, 0, -0.23, 0)
  1700. ScreenOption.Size = UDim2.new(0.05, 0, 0.1, 0)
  1701. ScreenOption.Text = ""
  1702. ScreenOption.BackgroundTransparency = 0.5
  1703.  
  1704. ScreenOptionTxt.Name = "ScreenOptionTxt"
  1705. ScreenOptionTxt.Parent = CustomizeGui
  1706. ScreenOptionTxt.BackgroundColor3 = Color3.new(1, 1, 1)
  1707. ScreenOptionTxt.BackgroundTransparency = 1
  1708. ScreenOptionTxt.Position = UDim2.new(0.07, 0, -0.23, 0)
  1709. ScreenOptionTxt.Size = UDim2.new(1, 0, 0.07, 0)
  1710. ScreenOptionTxt.Font = Enum.Font.SourceSans
  1711. ScreenOptionTxt.FontSize = Enum.FontSize.Size24
  1712. ScreenOptionTxt.Text = "Psychopath Red Filter"
  1713. ScreenOptionTxt.TextColor3 = Color3.new(1, 1, 1)
  1714. ScreenOptionTxt.TextScaled = true
  1715. ScreenOptionTxt.TextSize = 20
  1716. ScreenOptionTxt.TextStrokeColor3 = Color3.new(0, 0, 0)
  1717. ScreenOptionTxt.TextStrokeTransparency = 0.5
  1718. ScreenOptionTxt.TextWrapped = true
  1719. ScreenOptionTxt.TextXAlignment = "Left"
  1720.  
  1721. MusicOptionTxt.Name = "MusicOptionTxt"
  1722. MusicOptionTxt.Parent = CustomizeGui
  1723. MusicOptionTxt.BackgroundColor3 = Color3.new(1, 1, 1)
  1724. MusicOptionTxt.BackgroundTransparency = 1
  1725. MusicOptionTxt.Position = UDim2.new(0.07, 0, -0.12, 0)
  1726. MusicOptionTxt.Size = UDim2.new(1, 0, 0.07, 0)
  1727. MusicOptionTxt.Font = Enum.Font.SourceSans
  1728. MusicOptionTxt.FontSize = Enum.FontSize.Size24
  1729. MusicOptionTxt.Text = "Psychopath Background Music"
  1730. MusicOptionTxt.TextColor3 = Color3.new(1, 1, 1)
  1731. MusicOptionTxt.TextScaled = true
  1732. MusicOptionTxt.TextSize = 20
  1733. MusicOptionTxt.TextStrokeColor3 = Color3.new(0, 0, 0)
  1734. MusicOptionTxt.TextStrokeTransparency = 0.5
  1735. MusicOptionTxt.TextWrapped = true
  1736. MusicOptionTxt.TextXAlignment = "Left"
  1737.  
  1738. Close.Name = "Close"
  1739. Close.Parent = CustomizeGui
  1740. Close.BackgroundColor3 = Color3.new(0.294118, 0.294118, 0.294118)
  1741. Close.BackgroundTransparency = 0.5
  1742. Close.BorderColor3 = Color3.new(0, 0, 0)
  1743. Close.BorderSizePixel = 2
  1744. Close.Position = UDim2.new(1.005, 0, 0, 0)
  1745. Close.Size = UDim2.new(0.100000001, 0, 0.2, 0)
  1746. Close.Font = Enum.Font.SourceSans
  1747. Close.FontSize = Enum.FontSize.Size14
  1748. Close.Text = "X"
  1749. Close.TextColor3 = Color3.new(1, 1, 1)
  1750. Close.TextScaled = true
  1751. Close.TextSize = 14
  1752. Close.TextStrokeTransparency = 0
  1753. Close.TextWrapped = true
  1754.  
  1755. RedHue.Name = "RedHue"
  1756. RedHue.Parent = CustomizeGui
  1757. RedHue.BackgroundColor3 = Color3.new(1, 1, 1)
  1758. RedHue.BackgroundTransparency = 1
  1759. RedHue.Position = UDim2.new(0.100000001, 0, 0.400000006, 0)
  1760. RedHue.Size = UDim2.new(0.300000012, 0, 0.100000001, 0)
  1761. RedHue.Font = Enum.Font.SourceSans
  1762. RedHue.FontSize = Enum.FontSize.Size24
  1763. RedHue.Text = "RED Hue Value: "
  1764. RedHue.TextColor3 = Color3.new(1, 1, 1)
  1765. RedHue.TextScaled = true
  1766. RedHue.TextSize = 20
  1767. RedHue.TextStrokeColor3 = Color3.new(1, 0, 0)
  1768. RedHue.TextStrokeTransparency = 0.75
  1769. RedHue.TextWrapped = true
  1770.  
  1771. GreenHue.Name = "GreenHue"
  1772. GreenHue.Parent = CustomizeGui
  1773. GreenHue.BackgroundColor3 = Color3.new(1, 1, 1)
  1774. GreenHue.BackgroundTransparency = 1
  1775. GreenHue.Position = UDim2.new(0.100000001, 0, 0.5, 0)
  1776. GreenHue.Size = UDim2.new(0.300000012, 0, 0.100000001, 0)
  1777. GreenHue.Font = Enum.Font.SourceSans
  1778. GreenHue.FontSize = Enum.FontSize.Size24
  1779. GreenHue.Text = "GREEN Hue Value:"
  1780. GreenHue.TextColor3 = Color3.new(1, 1, 1)
  1781. GreenHue.TextScaled = true
  1782. GreenHue.TextSize = 20
  1783. GreenHue.TextStrokeColor3 = Color3.new(0, 1, 0)
  1784. GreenHue.TextStrokeTransparency = 0.75
  1785. GreenHue.TextWrapped = true
  1786.  
  1787. RedInput.Name = "RedInput"
  1788. RedInput.Parent = CustomizeGui
  1789. RedInput.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
  1790. RedInput.BackgroundTransparency = 0.5
  1791. RedInput.BorderSizePixel = 0
  1792. RedInput.Position = UDim2.new(0.419999987, 0, 0.425000007, 0)
  1793. RedInput.Size = UDim2.new(0.200000003, 0, 0.075000003, 0)
  1794. RedInput.Font = Enum.Font.SourceSans
  1795. RedInput.FontSize = Enum.FontSize.Size14
  1796. RedInput.Text = "255"
  1797. RedInput.TextColor3 = Color3.new(1, 1, 1)
  1798. RedInput.TextSize = 14
  1799. RedInput.TextStrokeTransparency = 0
  1800.  
  1801. BlueHue.Name = "BlueHue"
  1802. BlueHue.Parent = CustomizeGui
  1803. BlueHue.BackgroundColor3 = Color3.new(1, 1, 1)
  1804. BlueHue.BackgroundTransparency = 1
  1805. BlueHue.Position = UDim2.new(0.100000001, 0, 0.600000024, 0)
  1806. BlueHue.Size = UDim2.new(0.300000012, 0, 0.100000001, 0)
  1807. BlueHue.Font = Enum.Font.SourceSans
  1808. BlueHue.FontSize = Enum.FontSize.Size24
  1809. BlueHue.Text = "BLUE Hue Value:"
  1810. BlueHue.TextColor3 = Color3.new(1, 1, 1)
  1811. BlueHue.TextScaled = true
  1812. BlueHue.TextSize = 20
  1813. BlueHue.TextStrokeColor3 = Color3.new(0, 0, 1)
  1814. BlueHue.TextStrokeTransparency = 0.75
  1815. BlueHue.TextWrapped = true
  1816.  
  1817. TrailTransparency.Name = "TrailTransparency"
  1818. TrailTransparency.Parent = CustomizeGui
  1819. TrailTransparency.BackgroundColor3 = Color3.new(1, 1, 1)
  1820. TrailTransparency.BackgroundTransparency = 1
  1821. TrailTransparency.Position = UDim2.new(0.090000001, 0, 0.700000024, 0)
  1822. TrailTransparency.Size = UDim2.new(0.310000012, 0, 0.100000001, 0)
  1823. TrailTransparency.Font = Enum.Font.SourceSans
  1824. TrailTransparency.FontSize = Enum.FontSize.Size24
  1825. TrailTransparency.Text = "Trail Transparency:"
  1826. TrailTransparency.TextColor3 = Color3.new(1, 1, 1)
  1827. TrailTransparency.TextScaled = true
  1828. TrailTransparency.TextSize = 20
  1829. TrailTransparency.TextStrokeColor3 = Color3.new(0, 0, 0)
  1830. TrailTransparency.TextWrapped = true
  1831.  
  1832. GreenInput.Name = "GreenInput"
  1833. GreenInput.Parent = CustomizeGui
  1834. GreenInput.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
  1835. GreenInput.BackgroundTransparency = 0.5
  1836. GreenInput.BorderSizePixel = 0
  1837. GreenInput.Position = UDim2.new(0.419999987, 0, 0.524999976, 0)
  1838. GreenInput.Size = UDim2.new(0.200000003, 0, 0.075000003, 0)
  1839. GreenInput.Font = Enum.Font.SourceSans
  1840. GreenInput.FontSize = Enum.FontSize.Size14
  1841. GreenInput.Text = "255"
  1842. GreenInput.TextColor3 = Color3.new(1, 1, 1)
  1843. GreenInput.TextSize = 14
  1844. GreenInput.TextStrokeTransparency = 0
  1845.  
  1846. TransInput.Name = "TransInput"
  1847. TransInput.Parent = CustomizeGui
  1848. TransInput.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
  1849. TransInput.BackgroundTransparency = 0.5
  1850. TransInput.BorderSizePixel = 0
  1851. TransInput.Position = UDim2.new(0.419999987, 0, 0.725000024, 0)
  1852. TransInput.Size = UDim2.new(0.200000003, 0, 0.075000003, 0)
  1853. TransInput.Font = Enum.Font.SourceSans
  1854. TransInput.FontSize = Enum.FontSize.Size14
  1855. TransInput.Text = "50"
  1856. TransInput.TextColor3 = Color3.new(1, 1, 1)
  1857. TransInput.TextSize = 14
  1858. TransInput.TextStrokeTransparency = 0
  1859.  
  1860. BlueInput.Name = "BlueInput"
  1861. BlueInput.Parent = CustomizeGui
  1862. BlueInput.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
  1863. BlueInput.BackgroundTransparency = 0.5
  1864. BlueInput.BorderSizePixel = 0
  1865. BlueInput.Position = UDim2.new(0.419999987, 0, 0.625, 0)
  1866. BlueInput.Size = UDim2.new(0.200000003, 0, 0.075000003, 0)
  1867. BlueInput.Font = Enum.Font.SourceSans
  1868. BlueInput.FontSize = Enum.FontSize.Size14
  1869. BlueInput.Text = "255"
  1870. BlueInput.TextColor3 = Color3.new(1, 1, 1)
  1871. BlueInput.TextSize = 14
  1872. BlueInput.TextStrokeTransparency = 0
  1873.  
  1874. Message.Name = "Message"
  1875. Message.Parent = CustomizeGui
  1876. Message.BackgroundColor3 = Color3.new(1, 1, 1)
  1877. Message.BackgroundTransparency = 1
  1878. Message.Position = UDim2.new(0, 0, 0.2500004, 0)
  1879. Message.Size = UDim2.new(1, 0, 0.100000006, 0)
  1880. Message.Font = Enum.Font.SourceSans
  1881. Message.FontSize = Enum.FontSize.Size18
  1882. Message.Text = "|| Inputs must be values ||"
  1883. Message.TextColor3 = Color3.new(1, 1, 1)
  1884. Message.TextScaled = true
  1885. Message.TextSize = 15
  1886. Message.TextStrokeTransparency = 0.75
  1887. Message.TextWrapped = true
  1888.  
  1889. local attun = Instance.new("Attachment", knife)
  1890. attun.Position = Vector3.new(0, 0.1, -1.75)
  1891. local atdos = Instance.new("Attachment", knife)
  1892. atdos.Position = Vector3.new(0, -0.1, 0.5)
  1893. local trail = Instance.new("Trail", knife)
  1894. trail.LightEmission = 0.5
  1895. trail.Attachment0 = attun
  1896. trail.Attachment1 = atdos
  1897. trail.Lifetime = 0.175
  1898. trail.MinLength = 0
  1899. trail.Enabled = false
  1900.  
  1901. function updatez()
  1902. local rc = tonumber(RedInput.Text)
  1903. local gc = tonumber(GreenInput.Text)
  1904. local bc = tonumber(BlueInput.Text)
  1905. local tcupd = tonumber(TransInput.Text)
  1906. if rc == nil then
  1907. rc = 0
  1908. end
  1909. if gc == nil then
  1910. gc = 0
  1911. end
  1912. if bc == nil then
  1913. bc = 0
  1914. end
  1915. if tcupd == nil then
  1916. tcupd = 0
  1917. end
  1918. local tc = tcupd/100
  1919. Color.BackgroundColor3 = Color3.fromRGB(rc,gc,bc)
  1920. ClosestColor.Text = "Your color is closest to "..tostring(BrickColor.new(Color3.fromRGB(rc,gc,bc)))
  1921. obj32.Color = Color3.fromRGB(rc,gc,bc)
  1922. obj33.Color = Color3.fromRGB(rc,gc,bc)
  1923. obj34.Color = Color3.fromRGB(rc,gc,bc)
  1924. obj35.Color = Color3.fromRGB(rc,gc,bc)
  1925. obj36.Color = Color3.fromRGB(rc,gc,bc)
  1926. obj37.Color = Color3.fromRGB(rc,gc,bc)
  1927. obj38.Color = Color3.fromRGB(rc,gc,bc)
  1928. trail.Color = ColorSequence.new(Color3.fromRGB(rc, gc, bc))
  1929. trail.Transparency = NumberSequence.new(tc)
  1930. TrailTransparency.TextStrokeTransparency = tc
  1931. end
  1932.  
  1933. RedInput.Changed:connect(function(val)
  1934. if val == "Text" and tonumber(RedInput.Text) then
  1935. RedInput.Text = tostring(tonumber(RedInput.Text))
  1936. if tonumber(RedInput.Text) > 255 then
  1937. RedInput.Text = '255'
  1938. end
  1939. elseif val == "Text" then
  1940. RedInput.Text = ""
  1941. end
  1942. updatez()
  1943. end)
  1944. GreenInput.Changed:connect(function(val)
  1945. if val == "Text" and tonumber(GreenInput.Text) then
  1946. GreenInput.Text = tostring(tonumber(GreenInput.Text))
  1947. if tonumber(GreenInput.Text) > 255 then
  1948. GreenInput.Text = '255'
  1949. end
  1950. elseif val == "Text" then
  1951. GreenInput.Text = ""
  1952. end
  1953. updatez()
  1954. end)
  1955. BlueInput.Changed:connect(function(val)
  1956. if val == "Text" and tonumber(BlueInput.Text) then
  1957. BlueInput.Text = tostring(tonumber(BlueInput.Text))
  1958. if tonumber(BlueInput.Text) > 255 then
  1959. BlueInput.Text = '255'
  1960. end
  1961. elseif val == "Text" then
  1962. BlueInput.Text = ""
  1963. end
  1964. updatez()
  1965. end)
  1966. TransInput.Changed:connect(function(val)
  1967. if val == "Text" and tonumber(TransInput.Text) then
  1968. TransInput.Text = tostring(tonumber(TransInput.Text))
  1969. if tonumber(TransInput.Text) > 100 then
  1970. TransInput.Text = '100'
  1971. end
  1972. elseif val == "Text" then
  1973. TransInput.Text = ""
  1974. end
  1975. updatez()
  1976. end)
  1977.  
  1978. Close.MouseButton1Click:connect(function()
  1979. if lerpz == false then
  1980. lerpz = true
  1981. if Close.Text ~= "+" then
  1982. CustomizeGui:TweenPosition(UDim2.new(-0.45,0,0.5,0,Enum.EasingDirection.Out,Enum.EasingStyle.Quint,2))
  1983. for i=1,10 do
  1984. Close.TextTransparency = i/10
  1985. Close.TextStrokeTransparency = i/10
  1986. wait(0.01)
  1987. end
  1988. Close.Text = "+"
  1989. for i=1,10 do
  1990. Close.TextTransparency = (10-i+1)/10
  1991. Close.TextStrokeTransparency = (10-i+1)/10
  1992. wait(0.01)
  1993. end
  1994. lerpz = false
  1995. else
  1996. CustomizeGui:TweenPosition(UDim2.new(0,0,0.5,0,Enum.EasingDirection.Out,Enum.EasingStyle.Quint,2))
  1997. for i=1,10 do
  1998. Close.TextTransparency = i/10
  1999. Close.TextStrokeTransparency = i/10
  2000. wait(0.01)
  2001. end
  2002. Close.Text = "X"
  2003. for i=1,10 do
  2004. Close.TextTransparency = (10-i+1)/10
  2005. Close.TextStrokeTransparency = (10-i+1)/10
  2006. wait(0.01)
  2007. end
  2008. lerpz = false
  2009. end
  2010. end
  2011. end)
  2012.  
  2013. MusicOption.MouseButton1Click:connect(function()
  2014. if canbackgroundmusic == true then
  2015. canbackgroundmusic = false
  2016. MusicOption.BackgroundColor3 = Color3.new(1, 0, 0)
  2017. else
  2018. canbackgroundmusic = true
  2019. MusicOption.BackgroundColor3 = Color3.new(0, 1, 0)
  2020. end
  2021. end)
  2022.  
  2023. ScreenOption.MouseButton1Click:connect(function()
  2024. if cancolorfilter == true then
  2025. cancolorfilter = false
  2026. ScreenOption.BackgroundColor3 = Color3.new(1, 0, 0)
  2027. else
  2028. cancolorfilter = true
  2029. ScreenOption.BackgroundColor3 = Color3.new(0, 1, 0)
  2030. end
  2031. end)
  2032.  
  2033. function equip()
  2034. local doit = coroutine.wrap(function()
  2035. if me:FindFirstChild('Right Arm') and me:FindFirstChild('Torso') then
  2036. acting = true
  2037. local arm = me["Right Arm"]
  2038. local arm2 = me["Left Arm"]
  2039. local tors = me.Torso
  2040. local weld = Instance.new('Weld',arm)
  2041. weld.Part0 = arm
  2042. weld.Part1 = tors
  2043. weld.C0 = CFrame.new(-1.5,0,0)
  2044. local weld2 = Instance.new("Weld", arm2)
  2045. weld2.Part0 = arm2
  2046. weld2.Part1 = tors
  2047. weld2.C0 = CFrame.new(1.5, 0, 0)
  2048. wait(0.001)
  2049. for i = 0,1,0.1 do
  2050. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld == nil then return end
  2051. weld.C0 = weld.C0:lerp(CFrame.new(-0.2,0.2,-0.5)*CFrame.Angles(0,-3.1,0.9),i)
  2052. weld2.C0 = weld2.C0:lerp(CFrame.new(1.5, 0.6, 0) * CFrame.Angles(0,0,0.5),i)
  2053. wait(0.001)
  2054. end
  2055. wait(0.15)
  2056. trail.Enabled = true
  2057. for i = 0,1,0.1 do
  2058. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld == nil then return end
  2059. weld.C0 = weld.C0:lerp(CFrame.new(-0.5,2,0)*CFrame.Angles(0,0,-1.55),i)
  2060. weld2.C0 = weld2.C0:lerp(CFrame.new(1.5, 0, 0), i)
  2061. wait(0.001)
  2062. end
  2063. trail.Enabled = false
  2064. wait(0.2)
  2065. for i = 0,1,0.1 do
  2066. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld == nil then return end
  2067. weld.C0 = weld.C0:lerp(CFrame.new(-1.5,0,0),i)
  2068. wait(0.001)
  2069. end
  2070. weld:Destroy()
  2071. weld2:Remove()
  2072. if tors ~= nil then
  2073. rightshoulderz:Clone().Parent = me.Torso
  2074. leftshoulderz:Clone().Parent = me.Torso
  2075. end
  2076. end
  2077. acting = false
  2078. end)
  2079. doit()
  2080. end
  2081.  
  2082. function kysnigga()
  2083. if kyssing == true then return end
  2084. kyssing = true
  2085. acting = true
  2086. decearingTHING = math.random(1, 100)
  2087. if decearingTHING == 4 then
  2088. decearingEGG = Instance.new("Sound", me.Torso)
  2089. decearingEGG.SoundId = "rbxassetid://138084557"
  2090. decearingEGG.PlaybackSpeed = math.random(10, 12) / 10
  2091. decearingEGG.TimePosition = 0.2
  2092. decearingEGG:Play()
  2093. end
  2094. me.Humanoid.WalkSpeed = 0
  2095. me.Humanoid.JumpPower = 0
  2096.  
  2097. local rightarm = Instance.new("Weld", me.Torso)
  2098. rightarm.Part0 = me.Torso
  2099. rightarm.Part1 = me["Right Arm"]
  2100. rightarm.C0 = CFrame.Angles(0, 0, 0) * CFrame.new(1.5, 0, 0)
  2101.  
  2102. local leftarm = Instance.new("Weld", me.Torso)
  2103. leftarm.Part0 = me.Torso
  2104. leftarm.Part1 = me["Left Arm"]
  2105. leftarm.C0 = CFrame.Angles(0, 0, 0) * CFrame.new(-1.5, 0, 0)
  2106.  
  2107. local tors = Instance.new("Weld", me.HumanoidRootPart)
  2108. tors.Part0 = me.HumanoidRootPart
  2109. tors.Part1 = me.Torso
  2110. tors.C0 = CFrame.Angles(0, 0, 0) * CFrame.new(0, 0, 0)
  2111.  
  2112. local rightleg = Instance.new("Weld", me.Torso)
  2113. rightleg.Part0 = me.Torso
  2114. rightleg.Part1 = me["Right Leg"]
  2115. rightleg.C0 = CFrame.Angles(0, 0, 0) * CFrame.new(0.5, -2, 0)
  2116.  
  2117. local leftleg = Instance.new("Weld", me.Torso)
  2118. leftleg.Part0 = me.Torso
  2119. leftleg.Part1 = me["Left Leg"]
  2120. leftleg.C0 = CFrame.Angles(0, 0, 0) * CFrame.new(-0.5, -2, 0)
  2121.  
  2122. for i = 0, 1, 0.03 do
  2123. tors.C0 = tors.C0:lerp(CFrame.new(0, -1.5, 0) * CFrame.Angles(math.rad(-10), 0, 0), i)
  2124. leftleg.C0 = leftleg.C0:lerp(CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-80), 0, 0), i)
  2125. rightleg.C0 = rightleg.C0:lerp(CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-80), 0, 0), i)
  2126. rightarm.C0 = rightarm.C0:lerp(CFrame.new(1.5, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), 0), i)
  2127. wait()
  2128. end
  2129. for i = 0, 1, 0.03 do
  2130. tors.C0 = tors.C0:lerp(CFrame.new(0, -1.5, 0) * CFrame.Angles(math.rad(5), 0, 0), i)
  2131. leftleg.C0 = leftleg.C0:lerp(CFrame.new(-0.5, -1, 0.15) * CFrame.Angles(math.rad(-95), 0, 0), i)
  2132. rightleg.C0 = rightleg.C0:lerp(CFrame.new(0.5, -1, 0.15) * CFrame.Angles(math.rad(-95), 0, 0), i)
  2133. rightarm.C0 = rightarm.C0:lerp(CFrame.new(1, 0.3, -1.5) * CFrame.Angles(math.rad(90), 0, math.rad(-35)), i)
  2134. leftarm.C0 = leftarm.C0:lerp(CFrame.new(-1, 0.3, -1.5) * CFrame.Angles(math.rad(90), 0, math.rad(35)), i)
  2135. knifeweld.C1 = knifeweld.C1:lerp(CFrame.new(1.35, 0, 1) * CFrame.Angles(1.55, math.rad(-180), 1), i)
  2136. wait()
  2137. end
  2138. local bleedzer = Instance.new('Part',me.Torso)
  2139. bleedzer.CFrame = me.Torso.CFrame
  2140. bleedzer.Size = Vector3.new(0.1,0.1,0.1)
  2141. bleedzer.Transparency = 1
  2142. bleedzer.CanCollide = false
  2143. local weld = Instance.new('Weld',bleedzer)
  2144. weld.Part0 = bleedzer
  2145. weld.Part1 = me.Torso
  2146. weld.C0= CFrame.new(0,0,0)*CFrame.Angles(math.rad(-90),0,0)
  2147. local woodpekker = coroutine.wrap(function()
  2148. bleed(bleedzer)
  2149. end)
  2150. woodpekker()
  2151. audio.SoundId = "rbxassetid://199977936"
  2152. audio.PlaybackSpeed = 1.5
  2153. audio:Play()
  2154. audio2.SoundId = "rbxassetid://220834019"
  2155. audio2.PlaybackSpeed = 1
  2156. audio2.TimePosition = 0.1
  2157. audio2:Play()
  2158. for i = 0, 1, 0.1 do
  2159. tors.C0 = tors.C0:lerp(CFrame.new(0, -1.5, 0) * CFrame.Angles(math.rad(-20), 0, 0), i)
  2160. leftleg.C0 = leftleg.C0:lerp(CFrame.new(-0.5, -1, -0.35) * CFrame.Angles(math.rad(-70), 0, 0), i)
  2161. rightleg.C0 = rightleg.C0:lerp(CFrame.new(0.5, -1, -0.35) * CFrame.Angles(math.rad(-70), 0, 0), i)
  2162. rightarm.C0 = rightarm.C0:lerp(CFrame.new(1, 0, 0) * CFrame.Angles(math.rad(70), 0, math.rad(-35)), i)
  2163. leftarm.C0 = leftarm.C0:lerp(CFrame.new(-1, 0, 0) * CFrame.Angles(math.rad(70), 0, math.rad(35)), i)
  2164. knifeweld.C1 = knifeweld.C1:lerp(CFrame.new(1.35, 0, 1) * CFrame.Angles(1.55, math.rad(-180), 1), i)
  2165. wait()
  2166. end
  2167. wait(1)
  2168. audio.SoundId = "rbxassetid://210943487"
  2169. audio.TimePosition = 0.2
  2170. audio.PlaybackSpeed = 0.75
  2171. audio:Play()
  2172. for i = 0, 1, 0.03 do
  2173. tors.C0 = tors.C0:lerp(CFrame.new(0, -1.5, 0) * CFrame.Angles(math.rad(-20), 0, 0), i)
  2174. leftleg.C0 = leftleg.C0:lerp(CFrame.new(-0.5, -1, -0.35) * CFrame.Angles(math.rad(-70), 0, 0), i)
  2175. rightleg.C0 = rightleg.C0:lerp(CFrame.new(0.5, -1, -0.35) * CFrame.Angles(math.rad(-70), 0, 0), i)
  2176. rightarm.C0 = rightarm.C0:lerp(CFrame.new(1, 0.3, -1.5) * CFrame.Angles(math.rad(70), 0, math.rad(-35)), i)
  2177. leftarm.C0 = leftarm.C0:lerp(CFrame.new(-1, 0.3, -1.5) * CFrame.Angles(math.rad(70), 0, math.rad(35)), i)
  2178. knifeweld.C1 = knifeweld.C1:lerp(CFrame.new(1.35, 0, 1) * CFrame.Angles(1.55, math.rad(-180), 1), i)
  2179. wait()
  2180. end
  2181. for i = 0, 1, 0.03 do
  2182. rightarm.C0 = rightarm.C0:lerp(CFrame.new(1.5, 0, -0.4) * CFrame.Angles(math.rad(30), 0, math.rad(0)), i)
  2183. leftarm.C0 = leftarm.C0:lerp(CFrame.new(-1.5, 0, -0.4) * CFrame.Angles(math.rad(30), 0, math.rad(0)), i)
  2184. knifeweld.C1 = knifeweld.C1:lerp(CFrame.fromEulerAnglesXYZ(1.55, math.rad(-90), 1.55) * CFrame.new(0, 0.95, 0), i)
  2185. wait()
  2186. end
  2187. wait(0.24)
  2188. if me:FindFirstChildOfClass('Humanoid') then
  2189. me:FindFirstChildOfClass('Humanoid').Health = 0
  2190. end
  2191. wait(0.01)
  2192. killz(me,me.Torso.Name,nil,nil,true)
  2193.  
  2194. tors:Remove()
  2195. rightarm:Remove()
  2196. rightleg:Remove()
  2197. leftleg:Remove()
  2198. leftarm:Remove()
  2199. rightshoulderz:Clone().Parent = me.Torso
  2200. leftshoulderz:Clone().Parent = me.Torso
  2201. torsojoint:Clone().Parent = me.HumanoidRootPart
  2202. lefthipz:Clone().Parent = me.Torso
  2203. righthipz:Clone().Parent = me.Torso
  2204. me.Humanoid.JumpPower = 50
  2205. me.Humanoid.WalkSpeed = 16
  2206. acting = false
  2207. canClick = true
  2208. doing = false
  2209. hit = false
  2210. kyssing = false
  2211. if decearingTHING == 4 then
  2212. decearingEGG:Remove()
  2213. end
  2214. end
  2215.  
  2216. function bleedout()
  2217. local doit = coroutine.wrap(function()
  2218. local targe = grabbed
  2219. local num = 0
  2220. while targe and targe:FindFirstChildOfClass('Humanoid') and targe:FindFirstChildOfClass('Humanoid').Health > 0 and num < 11 do
  2221. if targe.Head:FindFirstChild('Died') then
  2222. tone = math.random(6, 12) / 10
  2223. targe.Head.Died.PlaybackSpeed = tone
  2224. targe.Head.Died:Play()
  2225. else
  2226. local deathsound = Instance.new('Sound',targe.Head)
  2227. deathsound.Name = "Died"
  2228. deathsound.SoundId = 'rbxasset://sounds/uuhhh.mp3'
  2229. deathsound.Volume = 0.65
  2230. deathsound.EmitterSize = 5
  2231. deathsound.MaxDistance = 150
  2232. tone = math.random(5, 15) / 10
  2233. targe.Head.Died.PlaybackSpeed = tone
  2234. targe.Head.Died:Play()
  2235. end
  2236. targe:FindFirstChildOfClass('Humanoid').Health = targe:FindFirstChildOfClass('Humanoid').Health - 7
  2237. num = num+1
  2238. wait(0.325)
  2239. end
  2240. targe:FindFirstChildOfClass('Humanoid').Health = 0
  2241. wait()
  2242. killz(targe,'Head',nil,nil,false,true)
  2243. wait(2)
  2244. targe:Remove()
  2245. end)
  2246. doit()
  2247. end
  2248.  
  2249. function liedown()
  2250. local doit = coroutine.wrap(function()
  2251. local targe = grabbed
  2252. wait(2)
  2253. if targe and targe:FindFirstChildOfClass('Humanoid') then
  2254. targe:FindFirstChildOfClass('Humanoid').PlatformStand = false
  2255. end
  2256. end)
  2257. doit()
  2258. end
  2259.  
  2260. function grab()
  2261. local doit = coroutine.wrap(function()
  2262. acting = true
  2263. me:FindFirstChildOfClass('Humanoid').WalkSpeed = me:FindFirstChildOfClass('Humanoid').WalkSpeed + 3
  2264. local arm = me["Right Arm"]
  2265. local tors = me.Torso
  2266. local arm2 = me["Left Arm"]
  2267. local humanroot = me.HumanoidRootPart
  2268. local weld2 = Instance.new('Weld',arm)
  2269. weld2.Part0 = arm
  2270. weld2.Part1 = tors
  2271. weld2.C0 = CFrame.new(-1.5,0,0) * CFrame.Angles(0, 0, 0)
  2272. local weld3 = Instance.new('Weld',arm2)
  2273. weld3.Part0 = arm2
  2274. weld3.Part1 = tors
  2275. weld3.C0 = CFrame.new(1.5,0,-0.3) * CFrame.Angles(0.3,0.1,0)
  2276. for i = 0,1,0.05 do
  2277. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld2 == nil or humanroot == nil then return end
  2278. weld2.C0 = weld2.C0:lerp(CFrame.new(-1.2,1.3,0.4)*CFrame.Angles(0.5,0,-1.2),i)
  2279. weld3.C0 = weld3.C0:lerp(CFrame.new(1.2,1.3,0)*CFrame.Angles(0,0,1.2),i)
  2280. knifeweld.C1 = CFrame.fromEulerAnglesXYZ(1.55, math.rad(-90), -1.55) * CFrame.new(0, 0.95, 0)
  2281. wait(0.01)
  2282. end
  2283. grabbing = true
  2284. trail.Enabled = true
  2285. for i = 0,1,0.10 do
  2286. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld2 == nil or humanroot == nil then return end
  2287. weld2.C0 = weld2.C0:lerp(CFrame.new(-0.9, 0.80, -1.1)* CFrame.Angles(-1.5, 0, -1.3), i)
  2288. weld3.C0 = weld3.C0:lerp(CFrame.new(0.8, 1, -0.5)* CFrame.Angles(-1.5, 0, 1.1), i)
  2289. wait(0.01)
  2290. end
  2291. trail.Enabled = false
  2292. wait(0.5)
  2293. grabbing = false
  2294. me:FindFirstChildOfClass('Humanoid').WalkSpeed = me:FindFirstChildOfClass('Humanoid').WalkSpeed - 3
  2295. if grabbed == nil then
  2296. for i = 0,1,0.1 do
  2297. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil then return end
  2298. weld2.C0 = weld2.C0:lerp(CFrame.new(-1.5,0,0),i)
  2299. weld3.C0 = weld3.C0:lerp(CFrame.new(1.5,0,0),i)
  2300. knifeweld.C1 = CFrame.fromEulerAnglesXYZ(1.55, math.rad(-90), 1.55) * CFrame.new(0, 0.95, 0)
  2301. wait(0.001)
  2302. end
  2303. weld2:Destroy()
  2304. weld3:Destroy()
  2305. rightshoulderz:Clone().Parent = me.Torso
  2306. leftshoulderz:Clone().Parent = me.Torso
  2307. acting = false
  2308. canClick = true
  2309. end
  2310. end)
  2311. doit()
  2312. end
  2313.  
  2314. function kill()
  2315. paralyzed = false
  2316. if grabbed.Torso:FindFirstChild("TargetWeld") == nil or grabbed:FindFirstChildOfClass('Humanoid').Health <= 0 then hardrelease() return end
  2317. targetweld = grabbed.Torso.TargetWeld
  2318. targetweld2 = nil
  2319. local reee = grabbed:FindFirstChild("Left Arm")
  2320. if reee and reee:FindFirstChild("Weld") then
  2321. targetweld2 = reee.Weld
  2322. end
  2323. for i, v in pairs(grabbed:GetChildren()) do
  2324. if v.Name == "Part" then
  2325. v.CanCollide = true
  2326. end
  2327. end
  2328. targetweld3pt = grabbed:FindFirstChild("Right Arm")
  2329. local targetrightshoulder = rightshoulder
  2330. local targetleftshoulder = leftshoulder
  2331. local targetweld3 = Instance.new("Weld", targetweld3pt)
  2332. targetweld3.Part0 = grabbed.Torso
  2333. targetweld3.Part1 = targetweld3pt
  2334. targetweld3.C0 = CFrame.Angles(0, 0, 0) * CFrame.new(1.5, 0, 0)
  2335.  
  2336. local doit = coroutine.wrap(function()
  2337. local arm = me["Right Arm"]
  2338. local tors = grabbed.Torso
  2339. local arm2 = me["Left Arm"]
  2340. if arm:FindFirstChildOfClass('Weld') == nil or arm2:FindFirstChildOfClass('Weld') == nil then return end
  2341. doing = true
  2342. local weld2 = arm:FindFirstChildOfClass('Weld')
  2343. local weld3 = arm2:FindFirstChildOfClass('Weld')
  2344. local humanroot = me.HumanoidRootPart
  2345.  
  2346. for i = 0,1,0.1 do
  2347. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld2 == nil or weld3 == nil then return end
  2348. weld2.C0 = weld2.C0:lerp(CFrame.new(-0.9, 0.80, -1.1)* CFrame.Angles(-1.9, 0, -1.4), i)
  2349. weld3.C0 = weld3.C0:lerp(CFrame.new(0.8, 0.5, -0.5)* CFrame.Angles(-1.5, 0.4, 1.1), i)
  2350. wait(0.01)
  2351. end
  2352.  
  2353. audio:Stop()
  2354. audio.SoundId = "rbxassetid://517040733"
  2355. tone = math.random(1, 3)
  2356. if tone == 1 then audio.PlaybackSpeed = 0.8 audio.TimePosition = 0.3 end
  2357. if tone == 2 then audio.PlaybackSpeed = 1 audio.TimePosition = 0.1 end
  2358. if tone == 3 then audio.PlaybackSpeed = 1.2 audio.TimePosition = 0.2 end
  2359. audio:Play()
  2360.  
  2361. local bleedpart = Instance.new("Part", grabbed)
  2362. bleedpart.Size = Vector3.new(0.2, 0.2, 0.2)
  2363. bleedpart.Color = Color3.new(115/225, 115/225, 115/225)
  2364. bleedpart.CanCollide = false
  2365. bleedpart.Position = grabbed.Head.Position + Vector3.new(0, 1, 0)
  2366. bleedpart.Transparency = 1
  2367.  
  2368. local bleedpartweld = Instance.new("Weld", grabbed.Torso)
  2369. bleedpartweld.Part0 = grabbed.Torso
  2370. bleedpartweld.Part1 = bleedpart
  2371. bleedpartweld.C0 = CFrame.Angles(-1, 0, -0.35) * CFrame.new(0, 1, 0.8)
  2372. local coru=coroutine.wrap(function()
  2373. bleed(bleedpart)
  2374. end)
  2375. coru()
  2376.  
  2377. local slightthrow = Instance.new("BodyThrust", grabbed.Torso)
  2378. slightthrow.Force = Vector3.new(0, 0, -2500)
  2379.  
  2380. local slightthrow2 = Instance.new("BodyAngularVelocity", grabbed.Torso)
  2381. slightthrow2.AngularVelocity = Vector3.new(0, -1000, 0)
  2382. slightthrow2.MaxTorque = Vector3.new(1000, 1000, 1000)
  2383.  
  2384. if grabbed:FindFirstChildOfClass('Humanoid') then
  2385. grabbed:FindFirstChildOfClass('Humanoid').PlatformStand = true
  2386. end
  2387.  
  2388. killz(grabbed,'Left Leg')
  2389. killz(grabbed,'Left Arm')
  2390. killz(grabbed,'Right Leg')
  2391. killz(grabbed,'Right Arm')
  2392.  
  2393. trail.Enabled = true
  2394.  
  2395. for i = 0,1,0.2 do
  2396. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld2 == nil or weld3 == nil then return end
  2397. weld2.C0 = weld2.C0:lerp(CFrame.new(-0.9, 1.7, -0.5)* CFrame.Angles(-0.25, 0, -1.4), i)
  2398. weld3.C0 = weld3.C0:lerp(CFrame.new(0.8, 1.6, -0.5)* CFrame.Angles(-1.5, -1, 1.1), i)
  2399. wait(0.01)
  2400. end
  2401.  
  2402. trail.Enabled = false
  2403.  
  2404. bleedout()
  2405.  
  2406. rightshoulderz:Clone().Parent = me.Torso
  2407. leftshoulderz:Clone().Parent = me.Torso
  2408. grabbed = nil
  2409.  
  2410. if humanroot:FindFirstChild('Holder') then
  2411. humanroot.Holder:Destroy()
  2412. end
  2413.  
  2414. wait(0.2)
  2415. slightthrow:Remove()
  2416. slightthrow2:Remove()
  2417. for i = 0,1,0.05 do
  2418. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld2 == nil or weld3 == nil then return end
  2419. weld2.C0 = weld2.C0:lerp(CFrame.new(-1.5, 0, 0)* CFrame.Angles(0, 0, 0), i)
  2420. weld3.C0 = weld3.C0:lerp(CFrame.new(1.5, 0, 0)* CFrame.Angles(0, 0, 0), i)
  2421. knifeweld.C1 = CFrame.fromEulerAnglesXYZ(1.55, math.rad(-90), 1.55) * CFrame.new(0, 0.95, 0)
  2422. wait(0.01)
  2423. end
  2424.  
  2425. weld2:Destroy()
  2426. weld3:Destroy()
  2427. targetweld = nil
  2428. targetweld2 = nil
  2429. targetweld3 = nil
  2430. rightshoulderz:Clone().Parent = me.Torso
  2431. leftshoulderz:Clone().Parent = me.Torso
  2432. acting = false
  2433. canClick = true
  2434. doing = false
  2435. end)
  2436. doit()
  2437. end
  2438.  
  2439. function finish()
  2440. if finishing == true then return end
  2441. finishing = true
  2442. acting = true
  2443. decearingTHING = math.random(1, 100)
  2444. if decearingTHING == 4 then
  2445. decearingEGG = Instance.new("Sound", me.Torso)
  2446. decearingEGG.SoundId = "rbxassetid://138084557"
  2447. decearingEGG.PlaybackSpeed = math.random(10, 12) / 10
  2448. decearingEGG.TimePosition = 0.2
  2449. decearingEGG:Play()
  2450. end
  2451. me.Humanoid.WalkSpeed = 0
  2452. me.Humanoid.JumpPower = 0
  2453.  
  2454. local rightarm = Instance.new("Weld", me.Torso)
  2455. rightarm.Part0 = me.Torso
  2456. rightarm.Part1 = me["Right Arm"]
  2457. rightarm.C0 = CFrame.Angles(0, 0, 0) * CFrame.new(1.5, 0, 0)
  2458.  
  2459. local tors = Instance.new("Weld", me.HumanoidRootPart)
  2460. tors.Part0 = me.HumanoidRootPart
  2461. tors.Part1 = me.Torso
  2462. tors.C0 = CFrame.Angles(0, 0, 0) * CFrame.new(0, 0, 0)
  2463.  
  2464. local rightleg = Instance.new("Weld", me.Torso)
  2465. rightleg.Part0 = me.Torso
  2466. rightleg.Part1 = me["Right Leg"]
  2467. rightleg.C0 = CFrame.Angles(0, 0, 0) * CFrame.new(0.5, -2, 0)
  2468.  
  2469. local leftleg = Instance.new("Weld", me.Torso)
  2470. leftleg.Part0 = me.Torso
  2471. leftleg.Part1 = me["Left Leg"]
  2472. leftleg.C0 = CFrame.Angles(0, 0, 0) * CFrame.new(-0.5, -2, 0)
  2473.  
  2474. for i = 0, 1, 0.05 do
  2475. tors.C0 = tors.C0:lerp(CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(15), 0, 0), i)
  2476. leftleg.C0 = leftleg.C0:lerp(CFrame.new(-0.5, -2, 0.2) * CFrame.Angles(math.rad(-15), 0, 0), i)
  2477. rightleg.C0 = rightleg.C0:lerp(CFrame.new(0.5, -2, 0.2) * CFrame.Angles(math.rad(-15), 0, 0), i)
  2478. rightarm.C0 = rightarm.C0:lerp(CFrame.new(1.5, 1.9, 0) * CFrame.Angles(math.rad(179), math.rad(179), 0), i)
  2479. wait()
  2480. end
  2481. for i=1,finishnum do
  2482. local num1 = 0.5
  2483. local num2 = 0.5
  2484. local num3 = 0.25
  2485. if finishnum ~= 1 then
  2486. num3 = 0
  2487. end
  2488. trail.Enabled = true
  2489. for i = 0, 1, num1 do
  2490. tors.C0 = tors.C0:lerp(CFrame.new(0, -1.5, 0) * CFrame.Angles(math.rad(-60), 0, 0), i)
  2491. leftleg.C0 = leftleg.C0:lerp(CFrame.new(-0.5, -1.5, 0) * CFrame.Angles(math.rad(0), 0, 0), i)
  2492. rightleg.C0 = rightleg.C0:lerp(CFrame.new(0.5, -0.7, -1) * CFrame.Angles(math.rad(10), 0, 0), i)
  2493. rightarm.C0 = rightarm.C0:lerp(CFrame.new(1.5, 1.9, -1) * CFrame.Angles(math.rad(160), math.rad(150), 0), i)
  2494. wait()
  2495. end
  2496. wait()
  2497. for i = 0, 1, num2 do
  2498. tors.C0 = tors.C0:lerp(CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-20), 0, 0), i)
  2499. leftleg.C0 = leftleg.C0:lerp(CFrame.new(-0.5, -1.5, 0) * CFrame.Angles(math.rad(-30), 0, 0), i)
  2500. rightleg.C0 = rightleg.C0:lerp(CFrame.new(0.5, -0.7, -1) * CFrame.Angles(math.rad(-20), 0, 0), i)
  2501. rightarm.C0 = rightarm.C0:lerp(CFrame.new(1.5, 1.9, 0.2) * CFrame.Angles(math.rad(250), math.rad(180), 0), i)
  2502. wait()
  2503. end
  2504. trail.Enabled = false
  2505. wait(num3)
  2506. end
  2507. wait()
  2508. for i = 0, 1, 0.05 do
  2509. tors.C0 = tors.C0:lerp(CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), i)
  2510. leftleg.C0 = leftleg.C0:lerp(CFrame.new(-0.5, -2, 0) * CFrame.Angles(0, 0, 0), i)
  2511. rightleg.C0 = rightleg.C0:lerp(CFrame.new(0.5, -2, 0) * CFrame.Angles(0, 0, 0), i)
  2512. rightarm.C0 = rightarm.C0:lerp(CFrame.new(1.5, 0, 0) * CFrame.Angles(0, 0, 0), i)
  2513. wait()
  2514. end
  2515. tors:Remove()
  2516. rightarm:Remove()
  2517. rightleg:Remove()
  2518. leftleg:Remove()
  2519. rightshoulderz:Clone().Parent = me.Torso
  2520. leftshoulderz:Clone().Parent = me.Torso
  2521. torsojoint:Clone().Parent = me.HumanoidRootPart
  2522. lefthipz:Clone().Parent = me.Torso
  2523. righthipz:Clone().Parent = me.Torso
  2524. me.Humanoid.JumpPower = 50
  2525. me.Humanoid.WalkSpeed = 16
  2526. acting = false
  2527. canClick = true
  2528. doing = false
  2529. hit = false
  2530. finishing = false
  2531. if decearingTHING == 4 then
  2532. decearingEGG:Remove()
  2533. end
  2534. end
  2535.  
  2536. function throw()
  2537. if grabbed.Torso:FindFirstChild("TargetWeld") == nil or grabbed:FindFirstChildOfClass('Humanoid').Health <= 0 then return end
  2538. paralyzed = false
  2539. targetweld = grabbed.Torso.TargetWeld
  2540. local ree = grabbed:FindFirstChild("Left Arm")
  2541. targetweld2 =nil
  2542. if ree and ree:FindFirstChild("Weld") then
  2543. targetweld2 = ree.Weld
  2544. end
  2545.  
  2546. for i, v in pairs(grabbed:GetChildren()) do
  2547. if v.Name == "Part" then
  2548. v.CanCollide = true
  2549. end
  2550. end
  2551.  
  2552.  
  2553. local doit = coroutine.wrap(function()
  2554. local arm = me["Right Arm"]
  2555. local tors = grabbed.Torso
  2556. local arm2 = me["Left Arm"]
  2557. local targrightshoulder = rightshoulder
  2558.  
  2559. local targleftshoulder = leftshoulder
  2560. if arm:FindFirstChildOfClass('Weld') == nil or arm2:FindFirstChildOfClass('Weld') == nil then return end
  2561. doing = true
  2562. local weld2 = arm:FindFirstChildOfClass('Weld')
  2563. local weld3 = arm2:FindFirstChildOfClass('Weld')
  2564. local humanroot = me.HumanoidRootPart
  2565.  
  2566. for i = 0,1,0.2 do
  2567. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld2 == nil or weld3 == nil then return end
  2568. weld2.C0 = weld2.C0:lerp(CFrame.new(-0.9, 1.7, -0.5)* CFrame.Angles(-0.25, 1, -1.4), i)
  2569. weld3.C0 = weld3.C0:lerp(CFrame.new(0.8, 1.6, -0.5)* CFrame.Angles(-1.5, -1, 1.1), i)
  2570. targetweld.C0 = targetweld.C0:lerp(CFrame.new(0, 1.5, 0)*CFrame.Angles(0, 0, 0), i)
  2571. if targetweld2 then
  2572. targetweld2.C0 = targetweld2.C0:lerp(CFrame.new(-1.5, 0, 0)*CFrame.Angles(0, 0, 0), i)
  2573. end
  2574. wait(0.01)
  2575. end
  2576.  
  2577. audio:Stop()
  2578. audio.SoundId = "rbxassetid://536642316"
  2579. tone = math.random(1, 3)
  2580. if tone == 1 then audio.PlaybackSpeed = 0.8 audio.TimePosition = 0.08 end
  2581. if tone == 2 then audio.PlaybackSpeed = 1 audio.TimePosition = 0.1 end
  2582. if tone == 3 then audio.PlaybackSpeed = 1.2 audio.TimePosition = 0.12 end
  2583. audio:Play()
  2584.  
  2585. local slightthrow = Instance.new("BodyVelocity", grabbed.Torso)
  2586. slightthrow.Velocity = Vector3.new(0,20,0)+(me.Torso.CFrame.lookVector*20)
  2587. slightthrow.P = 5000
  2588. slightthrow.MaxForce = Vector3.new(9000001,9000001,9000001)
  2589. local point = grabbed.Torso.Position
  2590. local aaaaaa = grabbed
  2591. liedown()
  2592.  
  2593. rightshoulderz:Clone().Parent = me.Torso
  2594. leftshoulderz:Clone().Parent = me.Torso
  2595. grabbed = nil
  2596.  
  2597. if humanroot:FindFirstChild('Holder') then
  2598. humanroot.Holder:Destroy()
  2599. end
  2600. local coru = coroutine.wrap(function()
  2601. while aaaaaa and aaaaaa:FindFirstChild('Torso') and (aaaaaa.Torso.Position-point).magnitude < 5 do wait(0.001) end
  2602. if aaaaaa:FindFirstChildOfClass('Humanoid') then
  2603. aaaaaa:FindFirstChildOfClass('Humanoid').Name = "Humanoid"
  2604. aaaaaa:FindFirstChildOfClass('Humanoid').JumpPower = 50
  2605. aaaaaa:FindFirstChildOfClass('Humanoid').WalkSpeed = 16
  2606. end
  2607. slightthrow:Remove()
  2608. end)
  2609. coru()
  2610.  
  2611. for i = 0,1,0.05 do
  2612. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld2 == nil or weld3 == nil then return end
  2613. weld2.C0 = weld2.C0:lerp(CFrame.new(-1.5,0,0),i)
  2614. weld3.C0 = weld3.C0:lerp(CFrame.new(1.5,0,0),i)
  2615. wait(0.01)
  2616. end
  2617. weld2:Destroy()
  2618. weld3:Destroy()
  2619. targetweld:Remove()
  2620. if targetweld2 then
  2621. targetweld2:Remove()
  2622. end
  2623. if rightshoulder then
  2624. rightshoulder:Clone().Parent = tors
  2625. end
  2626. if leftshoulder then
  2627. leftshoulder:Clone().Parent = tors
  2628. end
  2629. headweld:Clone().Parent = tors
  2630. rightshoulderz:Clone().Parent = me.Torso
  2631. leftshoulderz:Clone().Parent = me.Torso
  2632. acting = false
  2633. canClick = true
  2634. doing = false
  2635. end)
  2636. doit()
  2637. end
  2638.  
  2639. cfn,ang,mr,int=CFrame.new,CFrame.Angles,math.rad,Instance.new
  2640. bc=BrickColor.new
  2641. local minimumsize = Vector3.new(0.7,0.7,0.7)
  2642. local surface_between_splitted_parts = 'SmoothNoOutlines'
  2643. local fragmentable = workspace
  2644. local list = {}
  2645. local brickcount = 0
  2646. local storage = {}
  2647. local fillup = 1000
  2648. local maximumstorage = 2000
  2649. local storage_position = Vector3.new(0,0,5000)
  2650. local stored_partsize = Vector3.new(1,1,1)
  2651. local parts_created_per_frame = 5
  2652.  
  2653. local minimumsize = Vector3.new(0.7,0.7,0.7)
  2654. local surface_between_splitted_parts = 'SmoothNoOutlines'
  2655. local fragmentable = workspace
  2656. local list = {}
  2657. local brickcount = 0
  2658. local storage = {}
  2659. local fillup = 1000
  2660. local maximumstorage = 2000
  2661. local storage_position = Vector3.new(0,0,5000)
  2662. local stored_partsize = Vector3.new(1,1,1)
  2663. local parts_created_per_frame = 5
  2664.  
  2665.  
  2666. function fragmentate(cframe,size,color,explosion_position,explosion_blastradius,backsurface,bottomsurface,frontsurface,leftsurface,rightsurface,topsurface,transparency,reflectance,material)
  2667. local xi = size.X >= minimumsize.X*(1+explosion_blastradius/16) and 2 or 1
  2668. local yi = size.Y >= minimumsize.Y*(1+explosion_blastradius/16) and 2 or 1
  2669. local zi = size.Z >= minimumsize.Z*(1+explosion_blastradius/16) and 2 or 1
  2670. if xi == 1 and yi == 1 and zi == 1 or (cframe.p-explosion_position).magnitude > size.magnitude/2 + explosion_blastradius then
  2671. if xi == 1 and yi == 1 and zi == 1 then return end
  2672. if #storage > 0 then
  2673. local p = storage[1]
  2674. p.BrickColor = color
  2675. p.Size = size
  2676. p.Anchored = false
  2677. p.BackSurface = backsurface
  2678. p.BottomSurface = bottomsurface
  2679. p.FrontSurface = frontsurface
  2680. p.LeftSurface = leftsurface
  2681. p.RightSurface = rightsurface
  2682. p.TopSurface = topsurface
  2683. p.Transparency = transparency
  2684. p.CFrame = cframe
  2685. p.Reflectance = reflectance
  2686. p.Material = material
  2687. game:GetService('Debris'):AddItem(p,30)
  2688. p:BreakJoints()
  2689. table.remove(storage,1)
  2690. else
  2691. local p = Instance.new("Part",fragmentable)
  2692. p.BrickColor = color
  2693. p.FormFactor = "Custom"
  2694. p.Size = size
  2695. p.BackSurface = backsurface
  2696. p.BottomSurface = bottomsurface
  2697. p.FrontSurface = frontsurface
  2698. p.LeftSurface = leftsurface
  2699. p.RightSurface = rightsurface
  2700. p.TopSurface = topsurface
  2701. p.Transparency = transparency
  2702. p.Material = material
  2703. if p.Transparency>0.285 then
  2704. p.Anchored = false
  2705. else
  2706. p.Anchored=false
  2707. p.Material='Wood'
  2708. game:GetService('Debris'):AddItem(p,10)
  2709. end
  2710. p.CFrame = cframe
  2711. p.Reflectance = reflectance
  2712. p:BreakJoints()
  2713. end
  2714. return
  2715. end
  2716. local mody = math.random(-125,125)/1000
  2717. for y = 1,yi do
  2718. if math.random()> 0.5 then
  2719. local modx = math.random(-125,125)/1000
  2720. for x = 1,xi do
  2721. local modz = math.random(-125,125)/1000
  2722. for z = 1,zi do --offset = x/xi-0.75+modx)
  2723. fragmentate(cframe*CFrame.new(size.X*(xi==1 and 0 or x/xi-0.75+modx),size.Y*(yi==1 and 0 or y/yi-0.75+mody),size.Z*(zi==1 and 0 or z/zi-0.75+modz)),
  2724. Vector3.new(xi == 2 and size.X*(1-2*math.abs(x/xi-0.75+modx)) or size.X,yi == 2 and size.Y*(1-2*math.abs(y/yi-0.75+mody)) or size.Y,
  2725. zi == 2 and size.Z*(1-2*math.abs(z/zi-0.75+modz)) or size.Z or mustardfoot_was_here),color,explosion_position,explosion_blastradius,
  2726. z~=zi and surface_between_splitted_parts or backsurface,y==2 and surface_between_splitted_parts or bottomsurface,
  2727. z==2 and surface_between_splitted_parts or frontsurface,x==2 and surface_between_splitted_parts or leftsurface,x~=xi and surface_between_splitted_parts or rightsurface,
  2728. y~=yi and surface_between_splitted_parts or topsurface,transparency,reflectance,material)
  2729. end
  2730.  
  2731. end
  2732. else
  2733. local modz = math.random(-125,125)/1000
  2734. for z = 1,zi do
  2735. local modx = math.random(-125,125)/1000
  2736. for x = 1,xi do
  2737. fragmentate(cframe*CFrame.new(size.X*(xi==1 and 0 or x/xi-0.75+modx),size.Y*(yi==1 and 0 or y/yi-0.75+mody),size.Z*(zi==1 and 0 or z/zi-0.75+modz)),
  2738. Vector3.new(xi == 2 and size.X*(1-2*math.abs(x/xi-0.75+modx)) or size.X,yi == 2 and size.Y*(1-2*math.abs(y/yi-0.75+mody)) or size.Y,
  2739. zi == 2 and size.Z*(1-2*math.abs(z/zi-0.75+modz)) or size.Z),color,explosion_position,explosion_blastradius,
  2740. z~=zi and surface_between_splitted_parts or backsurface,y==2 and surface_between_splitted_parts or bottomsurface,
  2741. z==2 and surface_between_splitted_parts or frontsurface,x==2 and surface_between_splitted_parts or leftsurface,x~=xi and surface_between_splitted_parts or rightsurface,
  2742. y~=yi and surface_between_splitted_parts or topsurface,transparency,reflectance,material)
  2743. end
  2744. end
  2745. end
  2746. end
  2747. end
  2748.  
  2749. function start_fragmentation(position,radius,nuh)
  2750. local search = Region3.new(position-Vector3.new(radius,radius,radius)*1.1,position+Vector3.new(radius,radius,radius)*1.1)
  2751. repeat
  2752. local finish = false
  2753. local parts = workspace:FindPartsInRegion3WithIgnoreList(search,list,100)
  2754. for i = 1,#parts do
  2755. table.insert(list,1,parts[i])
  2756. end
  2757. finish = true
  2758. until #parts < 100 and finish
  2759. local t = tick()
  2760. for i = 1,#list do
  2761. local p = list[i]
  2762. if p:IsA('UnionOperation') == false and p:IsA('CornerWedgePart') == false and p:IsA('TrussPart') == false and p:IsA('WedgePart') == false and p.Parent and p.Parent ~= obj1 and p.Parent.Name ~= "Projectile" and p:IsDescendantOf(fragmentable) and p:GetMass()<50000 and p.Transparency>0.285 and p.Name~='Base' and p.Parent:FindFirstChildOfClass('Humanoid') == nil and p.Parent.Parent:FindFirstChildOfClass('Humanoid') == nil and p:IsDescendantOf(me)==false then
  2763. fragmentate(p.CFrame,p.Size,p.BrickColor,position,radius,p.BackSurface,p.BottomSurface,p.FrontSurface,p.LeftSurface,p.RightSurface,p.TopSurface,p.Transparency,p.Reflectance,p.Material)
  2764. if #storage < maximumstorage and p.Shape == "Block" then
  2765. p.Anchored = false
  2766. p.FormFactor = "Custom"
  2767. p.Size = stored_partsize
  2768. p.Position = storage_position
  2769. table.insert(storage,1,p)
  2770. else
  2771. p:Destroy()
  2772. end
  2773. end
  2774. if nuh == false and p.Parent and p.Parent ~= obj1 and p.Parent.Name ~= "Projectile" and p:IsDescendantOf(fragmentable) and p:GetMass()<53000 and p.Transparency<0.05 and p.Name~='Base' and tostring(p.Material)=='Enum.Material.Wood' and p:IsDescendantOf(me)==false then
  2775. fragmentate(p.CFrame,p.Size,p.BrickColor,position,radius,p.BackSurface,p.BottomSurface,p.FrontSurface,p.LeftSurface,p.RightSurface,p.TopSurface,p.Transparency,p.Reflectance,p.Material)
  2776. if #storage < maximumstorage and p.Shape == "Block" then
  2777. p.Anchored = false
  2778. p.Material='Wood'
  2779. p.FormFactor = "Custom"
  2780. p.Size = stored_partsize
  2781. p.Position = storage_position
  2782. table.insert(storage,1,p)
  2783. else
  2784. p:Destroy()
  2785. end
  2786. end
  2787. end
  2788. list = {}
  2789. end
  2790.  
  2791.  
  2792. function fling()
  2793. local doit = coroutine.wrap(function()
  2794. if me:FindFirstChild('Right Arm') and me:FindFirstChild('Torso') and me:FindFirstChild('HumanoidRootPart') then
  2795. acting = true
  2796. for i=1,finishnum do
  2797. local weld2 = Instance.new('Weld',me["Right Arm"])
  2798. weld2.Part0 = me["Right Arm"]
  2799. weld2.Part1 = me["Torso"]
  2800. weld2.C0 = CFrame.new(-1.5,0,0)
  2801. if finishnum == 1 then
  2802. for i = 0,1,0.05 do
  2803. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld2 == nil then return end
  2804. weld2.C0 = weld2.C0:lerp(CFrame.new(-1.5,0.9,-0.5)*CFrame.Angles(-math.pi/0.75,-math.pi/8,0),i)
  2805. wait(0.01)
  2806. end
  2807. end
  2808. audio.SoundId = "rbxassetid://166083610"
  2809. audio.PlaybackSpeed = 1
  2810. audio.TimePosition = 0.1
  2811. audio:Play()
  2812. if finishnum == 1 then
  2813. for i = 0,1,0.5 do
  2814. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld2 == nil then return end
  2815. weld2.C0 = weld2.C0:lerp(CFrame.new(-1.5,1.2,0.1)*CFrame.Angles(math.pi/0.9,0,0),i)
  2816. wait(0.001)
  2817. end
  2818. end
  2819. weld2.C0 = CFrame.new(-1.5,1.2,0.1)*CFrame.Angles(math.pi/0.9,0,0)
  2820. local knofe = obj1:Clone()
  2821. for i, v in pairs(obj1:GetChildren()) do
  2822. if v:IsA('BasePart') then
  2823. v.Transparency = 1
  2824. end
  2825. end
  2826. knofe.Parent = workspace
  2827. knofe.Name = "Projectile"
  2828. knofe.Grab.CFrame = CFrame.new(knofe.Grab.CFrame.p, mouse.Hit.p)*CFrame.Angles(0,math.pi/2,0)
  2829. knofe:FindFirstChild("Trail", true).Enabled = true
  2830. local heck = Instance.new('BodyVelocity',knofe.Grab)
  2831. heck.Velocity = (knofe.Grab.CFrame*CFrame.Angles(0,math.pi/-2,0)).lookVector*120
  2832. local coru = coroutine.wrap(function()
  2833. wait(0.45)
  2834. if heck then
  2835. heck:Destroy()
  2836. end
  2837. end)
  2838. coru()
  2839. local able = true
  2840. knofe["big ass knife"].Touched:connect(function(hit)
  2841. if hit.Parent and hit.Parent:FindFirstChildOfClass('Humanoid') and hit.Transparency < 1 and knofe.Grab.CanCollide == false and hit.Parent ~= me and hit.Parent.Parent ~= me then
  2842. local thing = hit.Parent:FindFirstChildOfClass('Humanoid')
  2843. local ree = hit.Parent
  2844. if thing == nil then
  2845. ree = hit.Parent.Parent
  2846. end
  2847. if ree:FindFirstChildOfClass('Humanoid').Health > 0 then
  2848. knofe:FindFirstChild("Trail", true).Enabled = false
  2849. game:GetService('Debris'):AddItem(knofe,5)
  2850. tone = math.random(1, 3)
  2851. local sound = Instance.new('Sound',knofe.Grab)
  2852. if tone == 1 then sound.SoundId = "rbxassetid://220833967" end
  2853. if tone == 2 then sound.SoundId = "rbxassetid://220833976" end
  2854. if tone == 3 then sound.SoundId = "rbxassetid://220834000" end
  2855. sound.PlaybackSpeed = 1
  2856. sound:Play()
  2857. for i, v in pairs(knofe:GetChildren()) do
  2858. if v:IsA('BasePart') then
  2859. v.CanCollide = true
  2860. v.Anchored = true
  2861. end
  2862. end
  2863. hit.Anchored = true
  2864. if ree:FindFirstChildOfClass('Humanoid') and hit.Name == "Torso" or hit.Name == "Head" then
  2865. ree:FindFirstChildOfClass('Humanoid').Health = 0
  2866. end
  2867. wait()
  2868. killz(ree,hit.Name,knofe)
  2869. else
  2870. knofe:FindFirstChild("Trail", true).Enabled = false
  2871. heck.Velocity = Vector3.new(0,0,0)
  2872. heck:Destroy()
  2873. game:GetService('Debris'):AddItem(knofe,5)
  2874. tone = math.random(1, 3)
  2875. local sound = Instance.new('Sound',knofe.Grab)
  2876. if tone == 1 then sound.SoundId = "rbxassetid://220833967" end
  2877. if tone == 2 then sound.SoundId = "rbxassetid://220833976" end
  2878. if tone == 3 then sound.SoundId = "rbxassetid://220834000" end
  2879. sound.PlaybackSpeed = 1
  2880. sound:Play()
  2881. for i, v in pairs(knofe:GetChildren()) do
  2882. if v:IsA('BasePart') then
  2883. v.Anchored = false
  2884. end
  2885. end
  2886. hit.Anchored = true
  2887. wait(0.001)
  2888. hit.Anchored = false
  2889. for i, v in pairs(knofe:GetChildren()) do
  2890. if v:IsA('BasePart') then
  2891. v.Anchored = false
  2892. end
  2893. end
  2894. if knofe then
  2895. local coru = coroutine.wrap(function()
  2896. if hit then
  2897. local uno = Instance.new('Part',workspace)
  2898. local dos = Instance.new('Part',workspace)
  2899. uno.CFrame = hit.CFrame
  2900. dos.CFrame = knofe["big ass knife"].CFrame
  2901. local weld = Instance.new('Weld',knofe["big ass knife"])
  2902. weld.Part0 = hit
  2903. weld.Part1 = knofe["big ass knife"]
  2904. weld.C0 = uno.CFrame:toObjectSpace(dos.CFrame)
  2905. uno:Destroy()
  2906. dos:Destroy()
  2907. end
  2908. end)
  2909. coru()
  2910. end
  2911. end
  2912. elseif hit.Parent and hit.Parent ~= me and hit.Parent.Parent ~= me and hit.CanCollide and knofe.Grab.CanCollide == false then
  2913. if hit.Transparency and (hit.Transparency<=0.285 or hit:GetMass()<=3000) then
  2914. knofe:FindFirstChild("Trail", true).Enabled = false
  2915. local sound = Instance.new('Sound',knofe.Grab)
  2916. sound.SoundId = 'rbxassetid://267585646'
  2917. sound:Play()
  2918. for i,v in pairs(knofe:GetChildren()) do
  2919. if v:IsA('BasePart') then
  2920. v.Anchored = true
  2921. end
  2922. end
  2923. wait()
  2924. heck.Velocity = Vector3.new(0,0,0)
  2925. heck:Destroy()
  2926. local uno = Instance.new('Part',workspace)
  2927. local dos = Instance.new('Part',workspace)
  2928. uno.CFrame = hit.CFrame
  2929. dos.CFrame = knofe["big ass knife"].CFrame
  2930. local weld = Instance.new('Weld',knofe["big ass knife"])
  2931. weld.Part0 = hit
  2932. weld.Part1 = knofe["big ass knife"]
  2933. weld.C0 = uno.CFrame:toObjectSpace(dos.CFrame)
  2934. uno:Destroy()
  2935. dos:Destroy()
  2936. for i,v in pairs(knofe:GetChildren()) do
  2937. if v:IsA('BasePart') then
  2938. v.Anchored = false
  2939. end
  2940. end
  2941. game:GetService('Debris'):AddItem(knofe,5)
  2942. for i,v in pairs(knofe:GetChildren()) do
  2943. if v:IsA('BasePart') then
  2944. v.CanCollide = true
  2945. end
  2946. end
  2947. end
  2948. if hit.Parent and hit.Transparency>0.285 and able == true and hit:GetMass()<3000 and hit.Parent:FindFirstChildOfClass('Humanoid') == nil and (hit.Parent.Parent == nil or hit.Parent.Parent:FindFirstChildOfClass('Humanoid') == nil) then
  2949. knofe:FindFirstChild("Trail", true).Enabled = false
  2950. able = false
  2951. local sound = Instance.new('Sound',knofe.Grab)
  2952. sound.SoundId = 'rbxassetid://144884907'
  2953. sound:Play()
  2954. local coru = coroutine.wrap(function()
  2955. start_fragmentation(knofe["big ass knife"].Position,1.25,knofe)
  2956. end)
  2957. coru()
  2958. end
  2959. end
  2960. end)
  2961. if finishnum == 1 then
  2962. for i= 0,1,0.1 do
  2963. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld2 == nil then return end
  2964. weld2.C0 = weld2.C0:lerp(CFrame.new(-1.5,0,0),i)
  2965. wait(0.001)
  2966. end
  2967. else
  2968. for i= 0,1,0.5 do
  2969. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld2 == nil then return end
  2970. weld2.C0 = weld2.C0:lerp(CFrame.new(-1.5,0,0),i)
  2971. wait(0.001)
  2972. end
  2973. end
  2974. for i,v in pairs(obj1:GetChildren()) do
  2975. if v:IsA('BasePart') then
  2976. v.Transparency = 0
  2977. end
  2978. end
  2979. weld2:Destroy()
  2980. rightshoulderz:Clone().Parent = me.Torso
  2981. end
  2982. acting = false
  2983. canClick = true
  2984. end
  2985. end)
  2986. doit()
  2987. end
  2988.  
  2989. function instasplode()
  2990. local coru = coroutine.wrap(function()
  2991. acting = true
  2992. for i=1,1 do
  2993. local weld2 = Instance.new('Weld',me["Right Arm"])
  2994. weld2.Part0 = me["Right Arm"]
  2995. weld2.Part1 = me["Torso"]
  2996. weld2.C0 = CFrame.new(-1.5,0,0)
  2997. if finishnum == 1 then
  2998. for i = 0,1,0.05 do
  2999. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld2 == nil then return end
  3000. weld2.C0 = weld2.C0:lerp(CFrame.new(-1.5,0.9,-0.5)*CFrame.Angles(-math.pi/0.75,-math.pi/8,0),i)
  3001. wait(0.01)
  3002. end
  3003. end
  3004. weld2.C0 = CFrame.new(-1.5,0.9,-0.5)*CFrame.Angles(-math.pi/0.75,-math.pi/8,0)
  3005. audio.SoundId = "rbxassetid://166083610"
  3006. audio.PlaybackSpeed = 1
  3007. audio.TimePosition = 0.1
  3008. audio:Play()
  3009. if finishnum == 1 then
  3010. for i = 0,1,0.5 do
  3011. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld2 == nil then return end
  3012. weld2.C0 = weld2.C0:lerp(CFrame.new(-1.5,1.2,0.1)*CFrame.Angles(math.pi/0.9,0,0),i)
  3013. wait(0.001)
  3014. end
  3015. end
  3016. weld2.C0 = CFrame.new(-1.5,1.2,0.1)*CFrame.Angles(math.pi/0.9,0,0)
  3017. local knofe = obj1:Clone()
  3018. for i,v in pairs(obj1:GetChildren()) do
  3019. if v:IsA('BasePart') then
  3020. v.Transparency = 1
  3021. end
  3022. end
  3023. knofe.Parent = workspace
  3024. knofe.Name = "Projectile"
  3025. knofe.Grab.CFrame = CFrame.new(knofe.Grab.CFrame.p, mouse.Hit.p)*CFrame.Angles(0,math.pi/2,0)
  3026. knofe:FindFirstChild("Trail", true).Enabled = false
  3027. fireofjesUS = Instance.new("Fire", knofe.Grab)
  3028. local heck = Instance.new('BodyVelocity',knofe.Grab)
  3029. heck.Velocity = (knofe.Grab.CFrame*CFrame.Angles(0,math.pi/-2,0)).lookVector*120
  3030. local coru = coroutine.wrap(function()
  3031. wait(0.45)
  3032. if heck then
  3033. heck:Destroy()
  3034. end
  3035. end)
  3036. coru()
  3037. knofe["big ass knife"].Touched:connect(function(hit)
  3038. if hit.Parent ~= me and hit.Parent.Parent ~= me and hit.Transparency < 1 and knofe.Grab.CanCollide == false then
  3039. heck.Velocity = Vector3.new(0,0,0)
  3040. heck:Destroy()
  3041. for i,v in pairs(knofe:GetChildren()) do
  3042. if v:IsA('BasePart') then
  3043. v.CanCollide = true
  3044. end
  3045. end
  3046. local hum = hit.Parent:FindFirstChildOfClass('Humanoid')
  3047. if hum == nil then
  3048. hum = hit.Parent.Parent:FindFirstChildOfClass('Humanoid')
  3049. end
  3050. if knofe then
  3051. local coru = coroutine.wrap(function()
  3052. if hit then
  3053. local uno = Instance.new('Part',workspace)
  3054. local dos = Instance.new('Part',workspace)
  3055. uno.CFrame = hit.CFrame
  3056. dos.CFrame = knofe["big ass knife"].CFrame
  3057. local weld = Instance.new('Weld',knofe["big ass knife"])
  3058. weld.Part0 = hit
  3059. weld.Part1 = knofe["big ass knife"]
  3060. weld.C0 = uno.CFrame:toObjectSpace(dos.CFrame)
  3061. uno:Destroy()
  3062. dos:Destroy()
  3063. end
  3064. end)
  3065. coru()
  3066. end
  3067. local sound = Instance.new('Sound',knofe.Grab)
  3068. sound.Name = "BOOM"
  3069. sound.EmitterSize = 25
  3070. sound.SoundId = 'rbxassetid://476477344'
  3071. sound.Volume = 0.5
  3072. sound:Play()
  3073. local exppart = Instance.new("Part", game.Workspace)
  3074. exppart.Size = Vector3.new(0.2, 0.2, 0.2)
  3075. exppart.Anchored = true
  3076. exppart.CanCollide = false
  3077. exppart.CFrame = CFrame.new(knofe.Grab.CFrame.p)
  3078. exppart.Transparency = 1
  3079. local expaccent = Instance.new("ParticleEmitter", exppart)
  3080. expaccent.Color = ColorSequence.new({ColorSequenceKeypoint.new(0, Color3.fromRGB(255, 255, 0)), ColorSequenceKeypoint.new(1, Color3.fromRGB(255, 0, 0))})
  3081. expaccent.LightEmission = 0.2
  3082. expaccent.LightInfluence = 0.3
  3083. expaccent.Size = NumberSequence.new({NumberSequenceKeypoint.new(0, 1), NumberSequenceKeypoint.new(1, 0)})
  3084. expaccent.Acceleration = Vector3.new(0, 30, 0)
  3085. expaccent.Drag = 15
  3086. expaccent.LockedToPart = false
  3087. expaccent.Lifetime = NumberRange.new(0.5, 1.5)
  3088. expaccent.Rate = 2000
  3089. expaccent.Speed = NumberRange.new(0,0)
  3090. expaccent.SpreadAngle = Vector2.new(360, 360)
  3091. expaccent:Clone().Parent = exppart
  3092. expaccent:Clone().Parent = exppart
  3093. local exp = Instance.new('Explosion',game.Workspace)
  3094. exp.Position = knofe["big ass knife"].Position
  3095. exp.ExplosionType = Enum.ExplosionType.NoCraters
  3096. exp.BlastRadius = 5
  3097. exp.Visible = false
  3098. exp.BlastPressure = 0
  3099. exp.DestroyJointRadiusPercent = 0
  3100. exp.Hit:connect(function(hit)
  3101. if hit.Parent and hit.Parent ~= me and hit.Parent.Name ~= "bitch ass knife" then
  3102. wait(0.001)
  3103. tgt = hit
  3104. local coru=coroutine.wrap(function(tgtt)
  3105. local fireofgods = Instance.new("Fire", tgtt)
  3106. fireofgods.Size = 0
  3107. fireofgods.Heat = 0
  3108. local fireofgodsaccent = expaccent:Clone()
  3109. fireofgodsaccent.Parent = hit
  3110. fireofgodsaccent.Rate = 0
  3111. fireofgodsaccent.Speed = NumberRange.new(5, 50)
  3112. fireofgodsaccent.SpreadAngle = Vector2.new(45, 45)
  3113. fireofgodsaccent.Acceleration = Vector3.new(0, 20, 0)
  3114.  
  3115. while fireofgods.Size < 10 do
  3116. fireofgods.Size = fireofgods.Size + 0.1
  3117. fireofgods.Heat = fireofgods.Heat + 0.1
  3118. fireofgodsaccent.Rate = fireofgodsaccent.Rate + 1
  3119. wait()
  3120. end
  3121. if hit.Parent and hit.Parent:FindFirstChildOfClass('Humanoid') == nil and hit.Parent.Parent:FindFirstChildOfClass('Humanoid') == nil then
  3122. hit:BreakJoints()
  3123. elseif hit.Parent and hit.Parent:IsA('Accessory') then
  3124. for i,v in pairs(hit:GetChildren()) do
  3125. if v:IsA('SpecialMesh') then
  3126. v.TextureId = ""
  3127. end
  3128. end
  3129. end
  3130. hit.BrickColor = BrickColor.new("Black")
  3131. for i,v in pairs(hit.Parent:GetChildren()) do
  3132. if v:IsA('Shirt') or v:IsA('Pants') then
  3133. v:Destroy()
  3134. end
  3135. end
  3136.  
  3137. while fireofgods.Size > 5 do
  3138. fireofgods.Size = fireofgods.Size - 0.1
  3139. fireofgods.Heat = fireofgods.Heat - 0.1
  3140. wait()
  3141. end
  3142. fireofgods:Destroy()
  3143. if hit.Parent then
  3144. if hit.Parent:FindFirstChildOfClass('Humanoid') == nil and hit.Parent.Parent:FindFirstChildOfClass('Humanoid') == nil then
  3145. local p = hit
  3146. fragmentate(p.CFrame,p.Size,p.BrickColor,p.Position,0.01,p.BackSurface,p.BottomSurface,p.FrontSurface,p.LeftSurface,p.RightSurface,p.TopSurface,p.Transparency,p.Reflectance,p.Material)
  3147. hit:Remove()
  3148. elseif hit.Parent:FindFirstChildOfClass('Humanoid') ~= nil then
  3149. print(hit.Name)
  3150. if hit.Name == "Torso" or hit.Name == "Head" then
  3151. print('ohhh YAAAA')
  3152. hit.Parent:FindFirstChildOfClass('Humanoid').Health = 0
  3153. end
  3154. wait()
  3155. killz(hit.Parent,hit.Name,nil,nil,false,false,true)
  3156. end
  3157. end
  3158. end)
  3159. coru(tgt)
  3160. end
  3161. end)
  3162. local explosionaccenttimeout = coroutine.wrap(function()
  3163. wait(0.2)
  3164. for i, exploodn in pairs(exppart:GetChildren()) do
  3165. exploodn.Enabled = false
  3166. end
  3167. wait(2)
  3168. for i, exploodn in pairs(exppart:GetChildren()) do
  3169. exploodn:Remove()
  3170. end
  3171. end)
  3172. explosionaccenttimeout()
  3173. for i,v in pairs(knofe:GetChildren()) do
  3174. if v:IsA('BasePart') then
  3175. v.Transparency = 1
  3176. end
  3177. end
  3178. exp.AncestryChanged:connect(function() knofe:Destroy() end)
  3179. coru()
  3180. end
  3181. end)
  3182. if finishnum == 1 then
  3183. for i= 0,1,0.1 do
  3184. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld2 == nil then return end
  3185. weld2.C0 = weld2.C0:lerp(CFrame.new(-1.5,0,0),i)
  3186. wait(0.001)
  3187. end
  3188. else
  3189. wait(0.1)
  3190. end
  3191. weld2.C0 = CFrame.new(-1.5,0,0)
  3192. for i,v in pairs(obj1:GetChildren()) do
  3193. if v:IsA('BasePart') then
  3194. v.Transparency = 0
  3195. end
  3196. end
  3197. weld2:Destroy()
  3198. rightshoulderz:Clone().Parent = me.Torso
  3199. end
  3200. acting = false
  3201. canClick = true
  3202. end)
  3203. coru()
  3204. end
  3205.  
  3206. function fireworkit()
  3207. local coru = coroutine.wrap(function()
  3208. acting = true
  3209. local ree = 1
  3210. if finishnum > 1 then
  3211. ree = 3
  3212. end
  3213. for i=1,ree do
  3214. local weld2 = Instance.new('Weld',me["Right Arm"])
  3215. weld2.Part0 = me["Right Arm"]
  3216. weld2.Part1 = me["Torso"]
  3217. weld2.C0 = CFrame.new(-1.5,0,0)
  3218. weld2.C0 = CFrame.new(-1.5,0.9,-0.5)*CFrame.Angles(-math.pi/0.75,-math.pi/8,0)
  3219. audio.SoundId = "rbxassetid://166083610"
  3220. audio.PlaybackSpeed = 1
  3221. audio.TimePosition = 0.1
  3222. audio:Play()
  3223. weld2.C0 = CFrame.new(-1.5,1.2,0.1)*CFrame.Angles(math.pi/0.9,0,0)
  3224. local knofe = obj1:Clone()
  3225. for i,v in pairs(obj1:GetChildren()) do
  3226. if v:IsA('BasePart') then
  3227. v.Transparency = 1
  3228. end
  3229. end
  3230. local sound = Instance.new('Sound',knofe.Grab)
  3231. sound.Volume = 0.25
  3232. sound.EmitterSize = 200
  3233. sound.MaxDistance = 300
  3234. sound.SoundId = 'rbxassetid://551051176'
  3235. sound:Play()
  3236. knofe.Parent = workspace
  3237. knofe.Name = "Projectile"
  3238. knofe.Grab.CFrame = CFrame.new(knofe.Grab.CFrame.p, mouse.Hit.p)*CFrame.Angles(0,math.pi/2,0)
  3239. local partic = Instance.new('ParticleEmitter',knofe.Grab)
  3240. partic.Color = ColorSequence.new({ColorSequenceKeypoint.new(0,Color3.new(1,0,0)),ColorSequenceKeypoint.new(0.4,Color3.fromRGB(255,125,0)),ColorSequenceKeypoint.new(0.8,Color3.new(1,1,0)),ColorSequenceKeypoint.new(1,Color3.new(1,1,1))})
  3241. partic.LightEmission = 0.5
  3242. partic.LightInfluence = 0
  3243. partic.Size = NumberSequence.new({NumberSequenceKeypoint.new(0,0.5),NumberSequenceKeypoint.new(1,0.15)})
  3244. partic.Rotation = NumberRange.new(0,90)
  3245. partic.SpreadAngle = Vector2.new(5,5)
  3246. partic.Speed = NumberRange.new(20)
  3247. partic.Texture = 'rbxassetid://603193846'
  3248. partic.EmissionDirection = Enum.NormalId.Left
  3249. partic.Lifetime = NumberRange.new(0.5,1)
  3250. partic.Rate = 100
  3251. local heck = Instance.new('BodyVelocity',knofe.Grab)
  3252. heck.Velocity = (knofe.Grab.CFrame*CFrame.Angles(0,math.pi/-2,0)).lookVector*240
  3253. local coru=coroutine.wrap(function()
  3254. wait(1.2)
  3255. sound:Destroy()
  3256. local sound2 = Instance.new('Sound',workspace)
  3257. sound2.SoundId = 'rbxassetid://138080762'
  3258. sound2:Play()
  3259. if heck then
  3260. heck:Destroy()
  3261. end
  3262. for i,v in pairs(knofe:GetChildren()) do
  3263. v.Anchored = true
  3264. end
  3265. partic.Enabled = false
  3266. local colorscheme = math.random(1,4)
  3267. --1 - red & orange
  3268. --2 - blue & pink
  3269. --3 - green & purple
  3270. --4 - blue, red, white
  3271. local colar1 = Color3.fromRGB(255,0,0)
  3272. local colar2 = Color3.fromRGB(255,125,0)
  3273. local colar3 = Color3.fromRGB(255,255,255)
  3274. if colorscheme == 2 then
  3275. colar1 = Color3.fromRGB(0,132,255)
  3276. colar2 = Color3.fromRGB(243,105,255)
  3277. elseif colorscheme == 3 then
  3278. colar1 = Color3.fromRGB(76,255,0)
  3279. colar2 = Color3.fromRGB(128,0,255)
  3280. elseif colorscheme == 4 then
  3281. colar2 = Color3.fromRGB(0,132,255)
  3282. end
  3283. local partic2 = Instance.new('ParticleEmitter',knofe.Grab)
  3284. partic2.Color = ColorSequence.new({ColorSequenceKeypoint.new(0,colar1),ColorSequenceKeypoint.new(1,colar1)})
  3285. partic2.LightEmission = 0.5
  3286. partic2.LightInfluence = 0
  3287. partic2.Size = NumberSequence.new({NumberSequenceKeypoint.new(0,0.5),NumberSequenceKeypoint.new(1,0.1)})
  3288. partic2.Rotation = NumberRange.new(0,90)
  3289. partic2.SpreadAngle = Vector2.new(180,180)
  3290. partic2.Speed = NumberRange.new(20)
  3291. partic2.Texture = 'rbxassetid://603193846'
  3292. partic2.EmissionDirection = Enum.NormalId.Right
  3293. partic2.Lifetime = NumberRange.new(2,2.5)
  3294. partic2.Rate = 1000
  3295. partic2.Drag = 1
  3296. local partic3 = partic2:Clone()
  3297. partic3.Color = ColorSequence.new({ColorSequenceKeypoint.new(0,colar2),ColorSequenceKeypoint.new(1,colar2)})
  3298. partic3.Parent = knofe.Grab
  3299. if colorscheme == 4 then
  3300. local partic4 = partic2:Clone()
  3301. partic4.Color = ColorSequence.new({ColorSequenceKeypoint.new(0,colar3),ColorSequenceKeypoint.new(1,colar3)})
  3302. partic4.Parent = knofe.Grab
  3303. end
  3304. wait(1)
  3305. for i,v in pairs(knofe.Grab:GetChildren()) do
  3306. if v:IsA('ParticleEmitter') then
  3307. v.Enabled = false
  3308. end
  3309. end
  3310. sound:Destroy()
  3311. wait(2)
  3312. knofe:Destroy()
  3313. end)
  3314. coru()
  3315. wait(0.1)
  3316. weld2.C0 = CFrame.new(-1.5,0,0)
  3317. for i,v in pairs(obj1:GetChildren()) do
  3318. if v:IsA('BasePart') then
  3319. v.Transparency = 0
  3320. end
  3321. end
  3322. weld2:Destroy()
  3323. rightshoulderz:Clone().Parent = me.Torso
  3324. end
  3325. acting = false
  3326. canClick = true
  3327. end)
  3328. coru()
  3329. end
  3330.  
  3331. function paralyze()
  3332. local coru = coroutine.wrap(function()
  3333. if paralyzed == true then return end
  3334. paralyzed = true
  3335. local arm = me["Right Arm"]
  3336. local tors = grabbed.Torso
  3337. local arm2 = me["Left Arm"]
  3338. if arm:FindFirstChildOfClass('Weld') == nil or arm2:FindFirstChildOfClass('Weld') == nil then return end
  3339. doing = true
  3340. local weld2 = arm:FindFirstChildOfClass('Weld')
  3341. local weld3 = arm2:FindFirstChildOfClass('Weld')
  3342. local humanroot = me.HumanoidRootPart
  3343. for i = 0,1,0.075 do
  3344. weld2.C0 = weld2.C0:lerp(CFrame.new(-0.9, 0.80, -1.1)* CFrame.Angles(-2, 0, -1.5), i)
  3345. weld3.C0 = weld3.C0:lerp(CFrame.new(0.8, 1, -0.5)* CFrame.Angles(-1.4, 0, 1.1), i)
  3346. wait(0.01)
  3347. end
  3348. for i = 0,1,0.30 do
  3349. weld2.C0 = weld2.C0:lerp(CFrame.new(-0.9, 0.80, -1.1)* CFrame.Angles(-0.75, 0, -1.75), i)
  3350. weld3.C0 = weld3.C0:lerp(CFrame.new(0.8, 1, -0.5)* CFrame.Angles(-1.4, 0, 1.1), i)
  3351. wait(0.01)
  3352. end
  3353. killz(grabbed,'Left Leg')
  3354. killz(grabbed,'Left Arm')
  3355. killz(grabbed,'Right Leg')
  3356. killz(grabbed,'Right Arm')
  3357.  
  3358. for i, v in pairs(grabbed:GetChildren()) do
  3359. if v.Name == "Part" then
  3360. v.CanCollide = false
  3361. end
  3362. end
  3363.  
  3364. audio:Stop()
  3365. audio.SoundId = "rbxassetid://2801263"
  3366. tone = math.random(1, 3)
  3367. if tone == 1 then audio.PlaybackSpeed = 0.8 audio.TimePosition = 0 end
  3368. if tone == 2 then audio.PlaybackSpeed = 1 audio.TimePosition = 0 end
  3369. if tone == 3 then audio.PlaybackSpeed = 1.2 audio.TimePosition = 0 end
  3370. audio:Play()
  3371.  
  3372. local bleedpart = Instance.new("Part", grabbed)
  3373. bleedpart.Size = Vector3.new(0.2, 0.2, 0.2)
  3374. bleedpart.Color = Color3.new(115/225, 115/225, 115/225)
  3375. bleedpart.CanCollide = false
  3376. bleedpart.Position = grabbed.Head.Position + Vector3.new(0, 1, 0)
  3377. bleedpart.Transparency = 1
  3378.  
  3379. local bleedpartweld = Instance.new("Weld", grabbed.Torso)
  3380. bleedpartweld.Part0 = grabbed.Torso
  3381. bleedpartweld.Part1 = bleedpart
  3382. bleedpartweld.C0 = CFrame.Angles(-1, 0, -0.35) * CFrame.new(0, 1, 0.8)
  3383. local cuntruu=coroutine.wrap(function()
  3384. bleed(bleedpart)
  3385. end)
  3386. local thicc = coroutine.wrap(function()
  3387. wait(3)
  3388. bleedpart:Remove()
  3389. end)
  3390. cuntruu()
  3391. thicc()
  3392.  
  3393. for i = 0,1,0.075 do
  3394. weld2.C0 = weld2.C0:lerp(CFrame.new(-0.9, 0.80, -1.1)* CFrame.Angles(-1.5, 0, -1.3), i)
  3395. weld3.C0 = weld3.C0:lerp(CFrame.new(0.8, 1, -0.5)* CFrame.Angles(-1.5, 0, 1.1), i)
  3396. wait(0.01)
  3397. end
  3398. acting = true
  3399. canClick = true
  3400. doing = false
  3401. end)
  3402. coru()
  3403. end
  3404.  
  3405. function explode()
  3406. local coru = coroutine.wrap(function()
  3407. acting = true
  3408. for i=1,finishnum do
  3409. local weld2 = Instance.new('Weld',me["Right Arm"])
  3410. weld2.Part0 = me["Right Arm"]
  3411. weld2.Part1 = me["Torso"]
  3412. weld2.C0 = CFrame.new(-1.5,0,0)
  3413. if finishnum == 1 then
  3414. for i = 0,1,0.05 do
  3415. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld2 == nil then return end
  3416. weld2.C0 = weld2.C0:lerp(CFrame.new(-1.5,0.9,-0.5)*CFrame.Angles(-math.pi/0.75,-math.pi/8,0),i)
  3417. wait(0.01)
  3418. end
  3419. end
  3420. weld2.C0 = CFrame.new(-1.5,0.9,-0.5)*CFrame.Angles(-math.pi/0.75,-math.pi/8,0)
  3421. audio.SoundId = "rbxassetid://166083610"
  3422. audio.PlaybackSpeed = 1
  3423. audio.TimePosition = 0.1
  3424. audio:Play()
  3425. if finishnum == 1 then
  3426. for i = 0,1,0.5 do
  3427. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld2 == nil then return end
  3428. weld2.C0 = weld2.C0:lerp(CFrame.new(-1.5,1.2,0.1)*CFrame.Angles(math.pi/0.9,0,0),i)
  3429. wait(0.001)
  3430. end
  3431. end
  3432. weld2.C0 = CFrame.new(-1.5,1.2,0.1)*CFrame.Angles(math.pi/0.9,0,0)
  3433. local knofe = obj1:Clone()
  3434. for i,v in pairs(obj1:GetChildren()) do
  3435. if v:IsA('BasePart') then
  3436. v.Transparency = 1
  3437. end
  3438. end
  3439. knofe.Parent = workspace
  3440. knofe.Name = "Projectile"
  3441. knofe.Grab.CFrame = CFrame.new(knofe.Grab.CFrame.p, mouse.Hit.p)*CFrame.Angles(0,math.pi/2,0)
  3442. knofe:FindFirstChild("Trail", true).Enabled = false
  3443. local heck = Instance.new('BodyVelocity',knofe.Grab)
  3444. heck.Velocity = (knofe.Grab.CFrame*CFrame.Angles(0,math.pi/-2,0)).lookVector*120
  3445. local coru = coroutine.wrap(function()
  3446. wait(0.45)
  3447. if heck then
  3448. heck:Destroy()
  3449. end
  3450. end)
  3451. coru()
  3452. knofe["big ass knife"].Touched:connect(function(hit)
  3453. if hit.Parent ~= me and hit.Parent.Parent ~= me and hit.Transparency < 1 and knofe.Grab.CanCollide == false then
  3454. heck.Velocity = Vector3.new(0,0,0)
  3455. heck:Destroy()
  3456. for i,v in pairs(knofe:GetChildren()) do
  3457. if v:IsA('BasePart') then
  3458. v.CanCollide = true
  3459. end
  3460. end
  3461. local hum = hit.Parent:FindFirstChildOfClass('Humanoid')
  3462. if hum == nil then
  3463. hum = hit.Parent.Parent:FindFirstChildOfClass('Humanoid')
  3464. end
  3465. if hum then
  3466. tone = math.random(1, 3)
  3467. local sound = Instance.new('Sound',knofe.Grab)
  3468. if tone == 1 then sound.SoundId = "rbxassetid://220833967" end
  3469. if tone == 2 then sound.SoundId = "rbxassetid://220833976" end
  3470. if tone == 3 then sound.SoundId = "rbxassetid://220834000" end
  3471. sound.PlaybackSpeed = 1
  3472. sound:Play()
  3473. else
  3474. local sound = Instance.new('Sound',knofe.Grab)
  3475. sound.SoundId = 'rbxassetid://267585646'
  3476. sound:Play()
  3477. end
  3478. if knofe then
  3479. local coru = coroutine.wrap(function()
  3480. if hit then
  3481. local uno = Instance.new('Part',workspace)
  3482. local dos = Instance.new('Part',workspace)
  3483. uno.CFrame = hit.CFrame
  3484. dos.CFrame = knofe["big ass knife"].CFrame
  3485. local weld = Instance.new('Weld',knofe["big ass knife"])
  3486. weld.Part0 = hit
  3487. weld.Part1 = knofe["big ass knife"]
  3488. weld.C0 = uno.CFrame:toObjectSpace(dos.CFrame)
  3489. uno:Destroy()
  3490. dos:Destroy()
  3491. end
  3492. end)
  3493. coru()
  3494. end
  3495. local coru = coroutine.wrap(function()
  3496. for i=1,15,0.7 do
  3497. local sound = Instance.new('Sound',knofe.Grab)
  3498. if knofe then
  3499. if knofe.serration.BrickColor == BrickColor.new('Really red') then
  3500. for i, v in pairs(knofe:GetChildren()) do
  3501. if v.Name == "big ass knife" or v.Name == "serration" or v.Name == "knifetip1" or v.Name == "fricc" then
  3502. v.BrickColor = BrickColor.new('Lily white')
  3503. v.Material = Enum.Material.SmoothPlastic
  3504. end
  3505. end
  3506. else
  3507. for i,v in pairs(knofe:GetChildren()) do
  3508. if v.Name == "big ass knife" or v.Name == "serration" or v.Name == "knifetip1" or v.Name == "fricc" then
  3509. v.BrickColor = BrickColor.new('Really red')
  3510. v.Material = Enum.Material.Neon
  3511. sound.SoundId = 'rbxassetid://300473653'
  3512. sound.Volume = 0.75
  3513. sound.TimePosition = 0.05
  3514. sound.EmitterSize = 25
  3515. sound.PlaybackSpeed = 1
  3516. sound:Play()
  3517. end
  3518. end
  3519. end
  3520. wait(1/i)
  3521. sound:Destroy()
  3522. end
  3523. end
  3524. local sound = Instance.new('Sound',knofe.Grab)
  3525. sound.Name = "BOOM"
  3526. sound.EmitterSize = 25
  3527. sound.SoundId = 'rbxassetid://12222084'
  3528. sound.TimePosition = 0.1
  3529. sound.Volume = 0.5
  3530. sound:Play()
  3531. local exppart = Instance.new("Part", game.Workspace)
  3532. exppart.Size = Vector3.new(0.2, 0.2, 0.2)
  3533. exppart.Anchored = true
  3534. exppart.CanCollide = false
  3535. exppart.CFrame = CFrame.new(knofe.Grab.CFrame.p)
  3536. exppart.Transparency = 1
  3537. local expaccent = Instance.new("ParticleEmitter", exppart)
  3538. expaccent.Color = ColorSequence.new({ColorSequenceKeypoint.new(0, Color3.fromRGB(255, 255, 0)), ColorSequenceKeypoint.new(1, Color3.fromRGB(255, 0, 0))})
  3539. expaccent.LightEmission = 0.2
  3540. expaccent.LightInfluence = 0.3
  3541. expaccent.Size = NumberSequence.new({NumberSequenceKeypoint.new(0, 1), NumberSequenceKeypoint.new(1, 0)})
  3542. expaccent.Acceleration = Vector3.new(0, -8, 0)
  3543. expaccent.Drag = 15
  3544. expaccent.LockedToPart = true
  3545. expaccent.Lifetime = NumberRange.new(0.5, 1.5)
  3546. expaccent.Rate = 2000
  3547. expaccent.Speed = NumberRange.new(10, 150)
  3548. expaccent.SpreadAngle = Vector2.new(360, 360)
  3549.  
  3550. local exp = Instance.new('Explosion',game.Workspace)
  3551. exp.Position = knofe["big ass knife"].Position
  3552. exp.ExplosionType = Enum.ExplosionType.NoCraters
  3553. exp.BlastRadius = 10
  3554. exp.BlastPressure = 100000
  3555. exp.DestroyJointRadiusPercent = 1
  3556. exp.Hit:connect(function(hit)
  3557. if hit.Parent and hit.Parent ~= me and hit.Parent:FindFirstChildOfClass('Humanoid') then
  3558. if hit.Parent:FindFirstChildOfClass('Humanoid') and hit.Name == "Torso" or hit.Name == "Head" then
  3559. hit.Parent:FindFirstChildOfClass('Humanoid').Health = 0
  3560. end
  3561. wait(0.001)
  3562. local coru=coroutine.wrap(function()
  3563. killz(hit.Parent,'Head',knofe,exp)
  3564. end)
  3565. coru()
  3566. elseif hit.Parent and hit.Parent ~= workspace and hit.Parent ~= me then
  3567. if hit.Parent.Name ~= "Projectile" then
  3568. hit.Parent:BreakJoints()
  3569. end
  3570. elseif hit.Parent and hit.Parent ~= me then
  3571. hit:BreakJoints()
  3572. end
  3573. end)
  3574. local explosionaccenttimeout = coroutine.wrap(function()
  3575. wait(0.2)
  3576. expaccent.Enabled = false
  3577. wait(2)
  3578. exppart:Remove()
  3579. end)
  3580. explosionaccenttimeout()
  3581. for i,v in pairs(knofe:GetChildren()) do
  3582. if v:IsA('BasePart') then
  3583. v.Transparency = 1
  3584. end
  3585. end
  3586. exp.AncestryChanged:connect(function() knofe:Destroy() end)
  3587. end)
  3588. coru()
  3589. end
  3590. end)
  3591. if finishnum == 1 then
  3592. for i= 0,1,0.1 do
  3593. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld2 == nil then return end
  3594. weld2.C0 = weld2.C0:lerp(CFrame.new(-1.5,0,0),i)
  3595. wait(0.001)
  3596. end
  3597. else
  3598. wait(0.1)
  3599. end
  3600. weld2.C0 = CFrame.new(-1.5,0,0)
  3601. for i,v in pairs(obj1:GetChildren()) do
  3602. if v:IsA('BasePart') then
  3603. v.Transparency = 0
  3604. end
  3605. end
  3606. weld2:Destroy()
  3607. rightshoulderz:Clone().Parent = me.Torso
  3608. end
  3609. acting = false
  3610. canClick = true
  3611. end)
  3612. coru()
  3613. end
  3614.  
  3615. function release()
  3616. if grabbed.Torso:FindFirstChild("TargetWeld") == nil or grabbed:FindFirstChildOfClass('Humanoid').Health <= 0 then return end
  3617. targetweld = grabbed.Torso.TargetWeld
  3618. local ree= grabbed:FindFirstChild("Left Arm")
  3619. targetweld2 = nil
  3620. if ree and ree:FindFirstChild("Weld") then
  3621. targetweld2 = ree.Weld
  3622. end
  3623. for i, v in pairs(grabbed:GetChildren()) do
  3624. if v.Name == "Part" then
  3625. v.CanCollide = true
  3626. end
  3627. end
  3628. paralyzed = false
  3629. local doit = coroutine.wrap(function()
  3630. local arm = me["Right Arm"]
  3631. local tors = grabbed.Torso
  3632. local arm2 = me["Left Arm"]
  3633. if arm:FindFirstChildOfClass('Weld') == nil or arm2:FindFirstChildOfClass('Weld') == nil then return end
  3634. doing = true
  3635. local weld2 = arm:FindFirstChildOfClass('Weld')
  3636. local weld3 = arm2:FindFirstChildOfClass('Weld')
  3637. local humanroot = me.HumanoidRootPart
  3638.  
  3639. if grabbed:FindFirstChildOfClass('Humanoid') then
  3640. grabbed:FindFirstChildOfClass('Humanoid').PlatformStand = false
  3641. end
  3642.  
  3643. rightshoulderz:Clone().Parent = me.Torso
  3644. leftshoulderz:Clone().Parent = me.Torso
  3645. if grabbed:FindFirstChildOfClass('Humanoid') then
  3646. grabbed:FindFirstChildOfClass('Humanoid').Name = "Humanoid"
  3647. grabbed:FindFirstChildOfClass('Humanoid').JumpPower = 50
  3648. grabbed:FindFirstChildOfClass('Humanoid').WalkSpeed = 16
  3649. grabbed:FindFirstChildOfClass('Humanoid').PlatformStand = false
  3650. end
  3651. grabbed = nil
  3652.  
  3653. if humanroot:FindFirstChild('Holder') then
  3654. humanroot.Holder:Destroy()
  3655. end
  3656.  
  3657. for i = 0,1,0.1 do
  3658. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld2 == nil or weld3 == nil then return end
  3659. weld2.C0 = weld2.C0:lerp(CFrame.new(-1.5,0,0),i)
  3660. weld3.C0 = weld3.C0:lerp(CFrame.new(1.5,0,0),i)
  3661. targetweld.C0 = targetweld.C0:lerp(CFrame.new(0, 1.5, 0)*CFrame.Angles(0, 0, 0), i)
  3662. if targetweld2 then
  3663. targetweld2.C0 = targetweld2.C0:lerp(CFrame.new(-1.5, 0, 0)*CFrame.Angles(0, 0, 0), i)
  3664. end
  3665. wait(0.01)
  3666. end
  3667.  
  3668. knifeweld.C1 = CFrame.fromEulerAnglesXYZ(1.55, math.rad(-90), 1.55) * CFrame.new(0, 0.95, 0.2)
  3669. weld2:Destroy()
  3670. weld3:Destroy()
  3671. targetweld:Remove()
  3672. if targetweld2 then
  3673. targetweld2:Remove()
  3674. end
  3675. if rightshoulder then
  3676. rightshoulder:Clone().Parent = tors
  3677. end
  3678. if leftshoulder then
  3679. leftshoulder:Clone().Parent = tors
  3680. end
  3681. headweld:Clone().Parent = tors
  3682. rightshoulderz:Clone().Parent = me.Torso
  3683. leftshoulderz:Clone().Parent = me.Torso
  3684. acting = false
  3685. canClick = true
  3686. doing = false
  3687. end)
  3688. doit()
  3689. end
  3690.  
  3691. function stabwithpassion()
  3692. local doit = coroutine.wrap(function()
  3693. if me:FindFirstChild('Right Arm') and me:FindFirstChild('Torso') and me:FindFirstChild('HumanoidRootPart') and me:FindFirstChild('Left Arm') then
  3694. acting = true
  3695. me:FindFirstChildOfClass('Humanoid').WalkSpeed = me:FindFirstChildOfClass('Humanoid').WalkSpeed + 10
  3696. local arm = me["Right Arm"]
  3697. local tors = me.Torso
  3698. local arm2 = me["Left Arm"]
  3699. local humanroot = me.HumanoidRootPart
  3700. local weld = Instance.new('Weld',tors)
  3701. weld.Part0 = tors
  3702. weld.Part1 = humanroot
  3703. weld.C0 = CFrame.new(0,0,0) * CFrame.Angles(0, 0, 0)
  3704. local weld2 = Instance.new('Weld',arm)
  3705. weld2.Part0 = arm
  3706. weld2.Part1 = tors
  3707. weld2.C0 = CFrame.new(-1.5,0,0) * CFrame.Angles(0, 0, 0)
  3708. local weld3 = Instance.new('Weld',arm2)
  3709. weld3.Part0 = arm2
  3710. weld3.Part1 = tors
  3711. weld3.C0 = CFrame.new(1.5,0,-0.3) * CFrame.Angles(0.3,0.1,0)
  3712.  
  3713. for i = 0,1,0.15 do
  3714. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld == nil or weld2 == nil or humanroot == nil then return end
  3715. weld.C0 = weld.C0:lerp(CFrame.new(0,0,0)*CFrame.Angles(0,math.rad(20),0),i)
  3716. weld2.C0 = weld2.C0:lerp(CFrame.new(-1.2,1.3,0.4)*CFrame.Angles(0.5,0,-1.2),i)
  3717. knifeweld.C1 = knifeweld.C1:lerp(CFrame.fromEulerAnglesXYZ(1.55, math.rad(90), -1.55) * CFrame.new(0, 0.95, 0), i)
  3718. wait(0.01)
  3719. end
  3720. wait(0.001)
  3721. trail.Enabled = true
  3722. stabbing = true
  3723. audio2.SoundId = 'rbxassetid://608537390'
  3724. audio2:Play()
  3725. for i = 0,1,0.2 do
  3726. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld == nil or weld2 == nil or humanroot == nil then return end
  3727. weld.C0 = weld.C0:lerp(CFrame.new(0,0,0)*CFrame.Angles(0,math.rad(-45),0),i)
  3728. weld2.C0 = weld2.C0:lerp(CFrame.new(-1.6,0.8,-1)*CFrame.Angles(math.rad(-90),0,-1),i)
  3729. wait(0.01)
  3730. end
  3731. trail.Enabled = false
  3732. wait(0.1)
  3733. me:FindFirstChildOfClass('Humanoid').WalkSpeed = me:FindFirstChildOfClass('Humanoid').WalkSpeed - 10
  3734. stabbing = false
  3735. wait(0.001)
  3736. for i = 0,1,0.075 do
  3737. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld == nil or weld2 == nil or humanroot == nil then return end
  3738. weld.C0 = weld.C0:lerp(CFrame.new(0,0,0)*CFrame.Angles(0,0,0),i)
  3739. weld2.C0 = weld2.C0:lerp(CFrame.new(-1.5,0,0)*CFrame.Angles(0,0,0),i)
  3740. weld3.C0 = weld3.C0:lerp(CFrame.new(1.5,0,0)*CFrame.Angles(0,0,0),i)
  3741. knifeweld.C1 = knifeweld.C1:lerp(CFrame.fromEulerAnglesXYZ(1.55, math.rad(-90), 1.55) * CFrame.new(0, 0.95, 0), i)
  3742. wait(0.01)
  3743. end
  3744. weld:Destroy()
  3745. weld2:Destroy()
  3746. weld3:Destroy()
  3747. torsojoint:Clone().Parent = humanroot
  3748. rightshoulderz:Clone().Parent = me.Torso
  3749. leftshoulderz:Clone().Parent = me.Torso
  3750. canClick = true
  3751. hit = false
  3752. acting = false
  3753. end
  3754. end)
  3755. doit()
  3756. end
  3757.  
  3758. function stab()
  3759. local doit = coroutine.wrap(function()
  3760. if me:FindFirstChild('Right Arm') and me:FindFirstChild('Torso') and me:FindFirstChild('HumanoidRootPart') and me:FindFirstChild('Left Arm') then
  3761. acting = true
  3762. me:FindFirstChildOfClass('Humanoid').WalkSpeed = me:FindFirstChildOfClass('Humanoid').WalkSpeed + 3
  3763. local arm = me["Right Arm"]
  3764. local tors = me.Torso
  3765. local arm2 = me["Left Arm"]
  3766. local humanroot = me.HumanoidRootPart
  3767. local weld = Instance.new('Weld',tors)
  3768. weld.Part0 = tors
  3769. weld.Part1 = humanroot
  3770. weld.C0 = CFrame.new(0,0,0) * CFrame.Angles(0, 0, 0)
  3771. local weld2 = Instance.new('Weld',arm)
  3772. weld2.Part0 = arm
  3773. weld2.Part1 = tors
  3774. weld2.C0 = CFrame.new(-1.5,0,0) * CFrame.Angles(0, 0, 0)
  3775. local weld3 = Instance.new('Weld',arm2)
  3776. weld3.Part0 = arm2
  3777. weld3.Part1 = tors
  3778. weld3.C0 = CFrame.new(1.5,0,-0.3) * CFrame.Angles(0.3,0.1,0)
  3779.  
  3780. for i = 0,1,0.1 do
  3781. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld == nil or weld2 == nil or humanroot == nil then return end
  3782. weld.C0 = weld.C0:lerp(CFrame.new(0,0,0)*CFrame.Angles(0,0.3,0),i)
  3783. weld2.C0 = weld2.C0:lerp(CFrame.new(-1.2,1.3,0.4)*CFrame.Angles(0.5,0,-1.2),i)
  3784. wait(0.01)
  3785. end
  3786. wait(0.001)
  3787. trail.Enabled = true
  3788. stabbing = true
  3789. audio2.SoundId = 'rbxassetid://608537390'
  3790. audio2:Play()
  3791. for i = 0,1,0.25 do
  3792. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld == nil or weld2 == nil or humanroot == nil then return end
  3793. weld.C0 = weld.C0:lerp(CFrame.new(0,0,0)*CFrame.Angles(0,-0.3,0),i)
  3794. weld2.C0 = weld2.C0:lerp(CFrame.new(-1.6,0.8,0.5)*CFrame.Angles(-0.5,0,-0.5),i)
  3795. wait(0.01)
  3796. end
  3797. trail.Enabled = false
  3798. wait(0.1)
  3799. me:FindFirstChildOfClass('Humanoid').WalkSpeed = me:FindFirstChildOfClass('Humanoid').WalkSpeed - 3
  3800. for i = 0,1,0.25 do
  3801. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld == nil or weld2 == nil or humanroot == nil then return end
  3802. weld.C0 = weld.C0:lerp(CFrame.new(0,0,0)*CFrame.Angles(0,0.3,0),i)
  3803. weld2.C0 = weld2.C0:lerp(CFrame.new(-1.5,0.6,-0.3)*CFrame.Angles(0.5,0,-0.5),i)
  3804. wait(0.01)
  3805. end
  3806. stabbing = false
  3807. wait(0.001)
  3808. for i = 0,1,0.05 do
  3809. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld == nil or weld2 == nil or humanroot == nil then return end
  3810. weld.C0 = weld.C0:lerp(CFrame.new(0,0,0)*CFrame.Angles(0,0,0),i)
  3811. weld2.C0 = weld2.C0:lerp(CFrame.new(-1.5,0,0)*CFrame.Angles(0,0,0),i)
  3812. weld3.C0 = weld3.C0:lerp(CFrame.new(1.5,0,0)*CFrame.Angles(0,0,0),i)
  3813. wait(0.01)
  3814. end
  3815. weld:Destroy()
  3816. weld2:Destroy()
  3817. weld3:Destroy()
  3818. torsojoint:Clone().Parent = humanroot
  3819. rightshoulderz:Clone().Parent = me.Torso
  3820. leftshoulderz:Clone().Parent = me.Torso
  3821. canClick = true
  3822. hit = false
  3823. acting = false
  3824. end
  3825. end)
  3826. doit()
  3827. end
  3828. function hardrelease()
  3829. rightshoulderz:Clone().Parent = me.Torso
  3830. leftshoulderz:Clone().Parent = me.Torso
  3831. if me:FindFirstChild('Right Arm') then
  3832. for i,v in pairs(me["Right Arm"]:GetChildren()) do
  3833. if v:IsA('Weld') then
  3834. v:Destroy()
  3835. end
  3836. end
  3837. end
  3838. if me:FindFirstChild('Left Arm') then
  3839. for i,v in pairs(me["Left Arm"]:GetChildren()) do
  3840. if v:IsA('Weld') then
  3841. v:Destroy()
  3842. end
  3843. end
  3844. end
  3845. acting = false
  3846. canClick = true
  3847. doing = false
  3848. grabbed = nil
  3849. end
  3850. function unequip()
  3851. local doit = coroutine.wrap(function()
  3852. if me:FindFirstChild('Right Arm') and me:FindFirstChild('Torso') then
  3853. acting = true
  3854. local arm = me["Right Arm"]
  3855. local arm2 = me["Left Arm"]
  3856. local tors = me.Torso
  3857. local weld = Instance.new('Weld',arm)
  3858. weld.Part0 = arm
  3859. weld.Part1 = tors
  3860. weld.C0 = CFrame.new(-1.5,0,0)
  3861. local weld2 = Instance.new("Weld", arm2)
  3862. weld2.Part0 = arm2
  3863. weld2.Part1 = tors
  3864. weld2.C0 = CFrame.new(1.5, 0, 0)
  3865. wait(0.001)
  3866. trail.Enabled = true
  3867. for i = 0,1,0.1 do
  3868. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld == nil then return end
  3869. weld.C0 = weld.C0:lerp(CFrame.new(-0.2,0.2,-0.5)*CFrame.Angles(0,-3.1,0.9),i)
  3870. weld2.C0 = weld2.C0:lerp(CFrame.new(1.5, 0.6, 0) * CFrame.Angles(0,0,0.5),i)
  3871. wait(0.001)
  3872. end
  3873. trail.Enabled = false
  3874. wait(0.25)
  3875. for i = 0,1,0.1 do
  3876. if me:FindFirstChild('Right Arm') == nil or me:FindFirstChild('Torso') == nil or weld == nil then return end
  3877. weld.C0 = weld.C0:lerp(CFrame.new(-1.5,0,0),i)
  3878. weld2.C0 = weld2.C0:lerp(CFrame.new(1.5, 0, 0), i)
  3879. wait(0.01)
  3880. end
  3881. weld:Destroy()
  3882. weld2:Remove()
  3883. if tors ~= nil then
  3884. rightshoulderz:Clone().Parent = me.Torso
  3885. leftshoulderz:Clone().Parent = me.Torso
  3886. end
  3887. acting = false
  3888. end
  3889. end)
  3890. doit()
  3891. end
  3892.  
  3893. mouse.KeyDown:connect(function(key)
  3894. if usable == true then
  3895. if key == "z" then
  3896. if active == false and acting == false then
  3897. active = true
  3898. if playergui:FindFirstChild('Notification') then playergui.Notification:Destroy() end
  3899. notify("KNIFE EQUIPPED",false)
  3900. audio:Stop()
  3901. audio.SoundId = 'rbxassetid://608618332'
  3902. equip()
  3903. wait(0.6)
  3904. audio:Play()
  3905. knifeweld.Part0 = me["Right Arm"]
  3906. knifeweld.C1 = CFrame.fromEulerAnglesXYZ(1.55, math.rad(-90), 1.55) * CFrame.new(0, 0.95, 0)
  3907. elseif acting == false then
  3908. active = false
  3909. if playergui:FindFirstChild('Notification') then playergui.Notification:Destroy() end
  3910. audio:Stop()
  3911. audio.SoundId = 'rbxassetid://608538233'
  3912. unequip()
  3913. notify("KNIFE UNEQUIPPED",false)
  3914. wait(0.3)
  3915. audio:Play()
  3916. knifeweld.Part0 = me.Torso
  3917. knifeweld.C1 = CFrame.Angles(0,math.rad(90),0) * CFrame.new(1, 0.8, 0.55)
  3918. canClick = true
  3919. end
  3920. elseif key == "f" then
  3921. if mode == 'kill' or active == false then return end
  3922. mode = "kill"
  3923. if playergui:FindFirstChild('Notification') then playergui.Notification:Destroy() end
  3924. notify("MODE || KILL || [F]",false)
  3925. elseif key == "e" then
  3926. if mode == 'throw' or active == false then return end
  3927. mode = "throw"
  3928. if playergui:FindFirstChild('Notification') then playergui.Notification:Destroy() end
  3929. notify("MODE || PUSH || [E]",false)
  3930. elseif key == "q" then
  3931. if mode == 'release' or active == false then return end
  3932. mode = "release"
  3933. if playergui:FindFirstChild('Notification') then playergui.Notification:Destroy() end
  3934. notify("MODE || RELEASE || [Q]",false)
  3935. elseif key == "x" then
  3936. if mode == 'stab' or active == false or acting == true then return end
  3937. mode = "stab"
  3938. if playergui:FindFirstChild('Notification') then playergui.Notification:Destroy() end
  3939. notify("MODE || STAB || [X]",false)
  3940. elseif key == "c" then
  3941. if mode == 'fling' or active == false or acting == true then return end
  3942. mode = "fling"
  3943. if playergui:FindFirstChild('Notification') then playergui.Notification:Destroy() end
  3944. notify("MODE || THROW || [C]",false)
  3945. elseif key == "b" then
  3946. if mode == 'instasplode' or active == false or acting == true then return end
  3947. mode = "instasplode"
  3948. if playergui:FindFirstChild('Notification') then playergui.Notification:Destroy() end
  3949. notify("MODE || MOLOTOV || [B]",false)
  3950. elseif key == "r" then
  3951. if mode == 'paralyze' or active == false then return end
  3952. mode = "paralyze"
  3953. if playergui:FindFirstChild('Notification') then playergui.Notification:Destroy() end
  3954. notify("MODE || PARALYZE || [R]",false)
  3955. elseif key == "v" then
  3956. if mode == 'explode' or active == false or acting == true then return end
  3957. mode = "explode"
  3958. if playergui:FindFirstChild('Notification') then playergui.Notification:Destroy() end
  3959. notify("MODE || EXPLODE || [V]",false)
  3960. elseif key == "k" then
  3961. if mode == 'suicide' or active == false or acting == true then return end
  3962. mode = "suicide"
  3963. if playergui:FindFirstChild('Notification') then playergui.Notification:Destroy() end
  3964. notify("MODE || SUICIDE || [K]",false)
  3965. elseif key == "h" then
  3966. if mode == 'firework' or active == false or acting == true then return end
  3967. mode = "firework"
  3968. if playergui:FindFirstChild('Notification') then playergui.Notification:Destroy() end
  3969. notify("MODE || FIREWORK || [H]",false)
  3970. elseif key == "g" then
  3971. if mode == 'finish' or active == false then return end
  3972. mode = "finish"
  3973. if playergui:FindFirstChild('Notification') then playergui.Notification:Destroy() end
  3974. local welp = "ON"
  3975. if finishnum == 1 then
  3976. welp = "OFF"
  3977. end
  3978. notify("MODE || FINISH || [G] || "..welp,false)
  3979. elseif key == "n" then
  3980. if playergui:FindFirstChild('Notification') then playergui.Notification:Destroy() end
  3981. if zombiemode == false then
  3982. notify("ZOMBIE MODE ON || [N]",false)
  3983. zombiemode = true
  3984. else
  3985. notify("ZOMBIE MODE OFF || [N]",false)
  3986. zombiemode = false
  3987. end
  3988. elseif key == "m" then
  3989. if finishnum == 1 then
  3990. finishnum = 15
  3991. if playergui:FindFirstChild('Notification') then playergui.Notification:Destroy() end
  3992. notify("PSYCHOPATH MODE ON || [M]",false)
  3993. if cancolorfilter then
  3994. local Sp00kyGui = Instance.new("ScreenGui")
  3995. local ImageLabel = Instance.new("ImageLabel")
  3996.  
  3997. -- Properties
  3998.  
  3999. Sp00kyGui.Parent = playergui
  4000. Sp00kyGui.Name = "REEEEEEEE"
  4001.  
  4002. ImageLabel.Parent = Sp00kyGui
  4003. ImageLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  4004. ImageLabel.BackgroundTransparency = 1
  4005. ImageLabel.Size = UDim2.new(1, 0, 1, 0)
  4006. ImageLabel.Image = "rbxassetid://74443700"
  4007. ImageLabel.ImageColor3 = Color3.new(1, 0, 0)
  4008. end
  4009. if canbackgroundmusic == true then
  4010. local sound = Instance.new('Sound',playergui)
  4011. sound.Name = 'PSYCHOPAAAATH'
  4012. sound.SoundId = 'rbxassetid://220875210'
  4013. sound.Looped = true
  4014. sound.Volume = 0.5
  4015. sound:Play()
  4016. end
  4017. else
  4018. finishnum = 1
  4019. if playergui:FindFirstChild('Notification') then playergui.Notification:Destroy() end
  4020. notify("PSYCHOPATH MODE OFF || [M]",false)
  4021. for i,v in pairs(playergui:GetChildren()) do
  4022. if v.Name == "REEEEEEEE" then
  4023. v:Destroy()
  4024. end
  4025. end
  4026. local thisniggarighthere = playergui:FindFirstChild('PSYCHOPAAAATH')
  4027. if thisniggarighthere then thisniggarighthere:Destroy() end
  4028. end
  4029. end
  4030. end
  4031. end)
  4032.  
  4033. mouse.Button1Down:connect(function()
  4034. if active == false or usable == false then return end
  4035. if canClick == true and acting == false then
  4036. if mode == "stab" and finishnum == 1 then
  4037. canClick = false
  4038. stab()
  4039. elseif mode == "stab" and finishnum == 15 then
  4040. canClick = false
  4041. stabwithpassion()
  4042. elseif mode == "fling" then
  4043. canClick = false
  4044. fling()
  4045. elseif mode == "explode" then
  4046. canClick = false
  4047. explode()
  4048. elseif mode == "instasplode" then
  4049. canClick = false
  4050. instasplode()
  4051. elseif mode == "finish" then
  4052. canClick = false
  4053. finish()
  4054. elseif mode == "suicide" then
  4055. canClick = false
  4056. kysnigga()
  4057. elseif mode == "firework" then
  4058. canClick = false
  4059. fireworkit()
  4060. else
  4061. canClick = false
  4062. grab()
  4063. end
  4064. else
  4065. if grabbed ~= nil and doing == false then
  4066. if mode == "release" then
  4067. if acting == true and grabbed:FindFirstChildOfClass('Humanoid') and grabbed:FindFirstChildOfClass('Humanoid').Health > 0 then
  4068. release()
  4069. else
  4070. hardrelease()
  4071. end
  4072. elseif mode == "kill" then
  4073. if acting == true and grabbed:FindFirstChildOfClass('Humanoid') and grabbed:FindFirstChildOfClass('Humanoid').Health > 0 then
  4074. kill()
  4075. else
  4076. hardrelease()
  4077. end
  4078. elseif mode == "paralyze" then
  4079. if acting == true and grabbed:FindFirstChildOfClass('Humanoid') and grabbed:FindFirstChildOfClass('Humanoid').Health > 0 then
  4080. paralyze()
  4081. else
  4082. hardrelease()
  4083. end
  4084. elseif mode == "throw" then
  4085. if acting == true and grabbed:FindFirstChildOfClass('Humanoid') and grabbed:FindFirstChildOfClass('Humanoid').Health > 0 then
  4086. throw()
  4087. else
  4088. hardrelease()
  4089. end
  4090. elseif mode == "explode" then
  4091. if acting == true and grabbed:FindFirstChildOfClass('Humanoid') and grabbed:FindFirstChildOfClass('Humanoid').Health > 0 then
  4092. throw()
  4093. else
  4094. hardrelease()
  4095. end
  4096. end
  4097. end
  4098. end
  4099. end)
  4100.  
  4101. knife.Touched:connect(function(hitz)
  4102. if hitz.Parent and hitz.Parent:FindFirstChildOfClass("Humanoid") and hitz.Parent:FindFirstChild('Torso') and acting == true then
  4103. if mode == "stab" and stabbing == true and hit == false then
  4104. hit = true
  4105. tone = math.random(1, 3)
  4106. audio:Stop()
  4107. if tone == 1 then audio.SoundId = "rbxassetid://220833967" end
  4108. if tone == 2 then audio.SoundId = "rbxassetid://220833976" end
  4109. if tone == 3 then audio.SoundId = "rbxassetid://220834000" end
  4110. audio.PlaybackSpeed = 1
  4111. audio:Play()
  4112. killz(hitz.Parent,'Left Leg')
  4113. killz(hitz.Parent,'Left Arm')
  4114. killz(hitz.Parent,'Right Leg')
  4115. killz(hitz.Parent,'Right Arm')
  4116. elseif mode == "finish" and finishing == true then
  4117. print('PSYCHOPATH MODE REEEEEEEEEEEEEEEE')
  4118. tone = math.random(1, 3)
  4119. audio:Stop()
  4120. if tone == 1 then audio.SoundId = "rbxassetid://220833967" end
  4121. if tone == 2 then audio.SoundId = "rbxassetid://220833976" end
  4122. if tone == 3 then audio.SoundId = "rbxassetid://220834000" end
  4123. audio.PlaybackSpeed = 1
  4124. audio:Play()
  4125. if hit == false then
  4126. hitz.Parent:FindFirstChildOfClass('Humanoid').Health = 0
  4127. wait()
  4128. killz(hitz.Parent,'Head',nil,false,true)
  4129. end
  4130. hit = true
  4131. elseif grabbed == nil and grabbing == true and hit == false then
  4132. if hitz.Parent:FindFirstChildOfClass("Humanoid").Health > 0 and hitz.Parent:FindFirstChild('Torso') and hitz.Parent.Torso:FindFirstChild('Neck') then
  4133. grabbed = hitz.Parent
  4134. local weldz = Instance.new('Weld',point)
  4135. weldz.Name = "Holder"
  4136. weldz.Part0 = point
  4137. weldz.Part1 = hitz.Parent.Torso
  4138. weldz.C0 = CFrame.new(0,0,-1.2)
  4139. end
  4140. end
  4141. end
  4142. end)
  4143.  
  4144. player.CharacterAdded:connect(function()
  4145. usable = false
  4146. for i,v in pairs(playergui:GetChildren()) do
  4147. if v.Name == "REEEEEEEE" or v.Name == 'PSYCHOPAAAATH' then
  4148. v:Destroy()
  4149. end
  4150. end
  4151. end)
  4152. while usable do
  4153. local coru = coroutine.wrap(function()
  4154. for i,v in pairs(knifeparts) do
  4155. local function try()
  4156. if v[1].Parent ~= v[2] then
  4157. v[1].Parent = v[2]
  4158. end
  4159. end
  4160. pcall(try)
  4161. end
  4162. if grabbed ~= nil then
  4163. if grabbed:FindFirstChildOfClass('Humanoid') and grabbed:FindFirstChildOfClass('Humanoid').Health > 0 then
  4164. for i,v in pairs(grabbed:GetChildren()) do
  4165. if v:IsA('Tool') then
  4166. local model = Instance.new('Model',workspace)
  4167. v.Parent = model
  4168. model:TranslateBy(Vector3.new(3,0,0))
  4169. end
  4170. end
  4171. grabbed:FindFirstChildOfClass('Humanoid').Name = "Hoomanoid"
  4172. grabbed:FindFirstChildOfClass('Humanoid').JumpPower = 0
  4173. grabbed:FindFirstChildOfClass('Humanoid').WalkSpeed = 0
  4174. grabbed:FindFirstChildOfClass('Humanoid').PlatformStand = true
  4175. grabweld = grabbed.Torso:FindFirstChild("TargetWeld")
  4176. if grabweld ~= nil then return end
  4177. grabbed:FindFirstChildOfClass('Humanoid').PlatformStand = true
  4178. if grabbed.Torso:FindFirstChild('Left Shoulder') then
  4179. leftshoulder = grabbed.Torso["Left Shoulder"]:Clone()
  4180. end
  4181. if grabbed.Torso:FindFirstChild('Right Shoulder') then
  4182. rightshoulder = grabbed.Torso["Right Shoulder"]:Clone()
  4183. end
  4184. headweld = grabbed.Torso["Neck"]:Clone()
  4185. local targetweld = Instance.new('Weld',grabbed.Torso)
  4186. targetweld.Part0 = grabbed.Torso
  4187. targetweld.Part1 = grabbed.Head
  4188. targetweld.Name = "TargetWeld"
  4189. targetweld.C0 = CFrame.new(0,1.5,0) * CFrame.Angles(0, 0, 0)
  4190. if grabbed:FindFirstChild('Left Arm') then
  4191. local targetweld2 = Instance.new('Weld',grabbed["Left Arm"])
  4192. targetweld2.Part0 = grabbed.Torso
  4193. targetweld2.Part1 = grabbed["Left Arm"]
  4194. targetweld2.C0 = CFrame.new(-1.5,0,0) * CFrame.Angles(0, 0, 0)
  4195. end
  4196.  
  4197. for i = 0,1,0.1 do
  4198. if me:FindFirstChild("Left Arm") == nil or me:FindFirstChild("Torso") == nil or targetweld == nil then return end
  4199. targetweld.C0 = targetweld.C0:lerp(CFrame.new(0, 1.5, 0)*CFrame.Angles(0.25, 0, 0), i)
  4200. if targetweld2 then
  4201. targetweld2.C0 = targetweld2.C0:lerp(CFrame.new(-1.5, 0.5, 0)*CFrame.Angles(0, 0, -0.55), i)
  4202. end
  4203. wait(0.001)
  4204. end
  4205. end
  4206. end
  4207. end)
  4208. coru()
  4209. wait()
  4210. end
  4211.  
  4212. end
  4213. local coru=coroutine.wrap(function()
  4214. nub()
  4215. end)
  4216. coru()
  4217.  
  4218. player.CharacterAppearanceLoaded:connect(function()
  4219. local coru =coroutine.wrap(function()
  4220. nub()
  4221. end)
  4222. coru()
  4223. end)
  4224.  
  4225. while true do
  4226. local coru=coroutine.wrap(function()
  4227. if grabbed then
  4228. v:FindFirstChildOfClass('Humanoid').Jump = false
  4229. v:FindFirstChildOfClass('Humanoid').Sit = false
  4230. v:FindFirstChildOfClass('Humanoid').JumpPower = 0
  4231. v:FindFirstChildOfClass('Humanoid').PlatformStand = true
  4232. v:FindFirstChildOfClass('Humanoid').Name = "No escape."
  4233. end
  4234. for i,v in pairs(rekt) do
  4235. if v and v:FindFirstChildOfClass('Humanoid') then
  4236. for a,c in pairs(v:GetChildren()) do
  4237. if c:IsA('Tool') then
  4238. local model = Instance.new('Model',workspace)
  4239. c.Parent = model
  4240. model:TranslateBy(Vector3.new(3,0,0))
  4241. end
  4242. end
  4243. v:FindFirstChildOfClass('Humanoid').Jump = false
  4244. v:FindFirstChildOfClass('Humanoid').Sit = false
  4245. v:FindFirstChildOfClass('Humanoid').JumpPower = 0
  4246. v:FindFirstChildOfClass('Humanoid').PlatformStand = true
  4247. v:FindFirstChildOfClass('Humanoid').Name = "No escape."
  4248. local thing = getplr(v)
  4249. if thing then
  4250. thing.CameraMinZoomDistance = 3
  4251. end
  4252. else
  4253. local thing = getplr(v)
  4254. if thing then
  4255. thing.CameraMinZoomDistance = 0.5
  4256. end
  4257. table.remove(rekt,i)
  4258. end
  4259. end
  4260. end)
  4261. coru()
  4262. local coru2 = coroutine.wrap(function()
  4263. if curpart then
  4264. curpoint = curpart.CFrame.p
  4265. end
  4266. if lastgui then
  4267. lastgui:Destroy()
  4268. lastgui = nil
  4269. end
  4270. if curpoint then
  4271. lastgui = Instance.new('BillboardGui',player.PlayerGui)
  4272. lastgui.AlwaysOnTop = true
  4273. lastgui.MaxDistance = 0
  4274. lastgui.Size = UDim2.new(5,0,5,0)
  4275. if curpart == nil then
  4276. lastgui.Adornee = workspace
  4277. lastgui.StudsOffsetWorldSpace = curpoint
  4278. else
  4279. lastgui.Adornee = curpart
  4280. end
  4281. local cross = Instance.new('ImageLabel',lastgui)
  4282. cross.BackgroundTransparency = 1
  4283. cross.Size = UDim2.new(1,0,1,0)
  4284. cross.Image = 'rbxassetid://316279304'
  4285. for i,v in pairs(zombies) do
  4286. if v:FindFirstChildOfClass('Humanoid') then
  4287. v:FindFirstChildOfClass('Humanoid').WalkToPoint = curpoint
  4288. end
  4289. end
  4290. else
  4291. for i,v in pairs(zombies) do
  4292. if v:FindFirstChildOfClass('Humanoid') and v:FindFirstChild('Head') then
  4293. v:FindFirstChildOfClass('Humanoid').WalkToPoint = v.Head.Position
  4294. end
  4295. end
  4296. end
  4297. end)
  4298. coru2()
  4299. wait()
  4300. end
  4301. end)
  4302.  
  4303.  
  4304. Kidnap.Name = "Kidnap"
  4305. Kidnap.Parent = GuiFrame
  4306. Kidnap.BackgroundColor3 = Color3.new(0, 0, 0)
  4307. Kidnap.Position = UDim2.new(0, 221, 0, 173)
  4308. Kidnap.Size = UDim2.new(0, 160, 0, 50)
  4309. Kidnap.Font = Enum.Font.SciFi
  4310. Kidnap.FontSize = Enum.FontSize.Size48
  4311. Kidnap.Text = "Kidnap"
  4312. Kidnap.TextColor3 = Color3.new(0, 1, 1)
  4313. Kidnap.TextSize = 40
  4314.  
  4315. Kidnap.MouseButton1Down:connect(function()
  4316. --CLOWN VAN BY DMS
  4317. --its bad
  4318. --first the victim gets kidnapped in a van
  4319. --then they get r3ped
  4320. --then the get killed
  4321. --then the body is dumped on the street
  4322. Victim = TextBox.Text
  4323. o1 = Instance.new("Model")
  4324. o2 = Instance.new("Part")
  4325. o3 = Instance.new("CylinderMesh")
  4326. o4 = Instance.new("Part")
  4327. o5 = Instance.new("SpecialMesh")
  4328. o6 = Instance.new("Part")
  4329. o7 = Instance.new("SpecialMesh")
  4330. o8 = Instance.new("Part")
  4331. o9 = Instance.new("BlockMesh")
  4332. o10 = Instance.new("Part")
  4333. o11 = Instance.new("BlockMesh")
  4334. o12 = Instance.new("Part")
  4335. o13 = Instance.new("Part")
  4336. o14 = Instance.new("BlockMesh")
  4337. o15 = Instance.new("Part")
  4338. o16 = Instance.new("SpecialMesh")
  4339. o17 = Instance.new("Part")
  4340. o18 = Instance.new("SpecialMesh")
  4341. o19 = Instance.new("Part")
  4342. o20 = Instance.new("SpecialMesh")
  4343. o21 = Instance.new("Sound")
  4344. o22 = Instance.new("Part")
  4345. o23 = Instance.new("BlockMesh")
  4346. o24 = Instance.new("Part")
  4347. o25 = Instance.new("SpecialMesh")
  4348. o26 = Instance.new("Part")
  4349. o27 = Instance.new("BlockMesh")
  4350. o28 = Instance.new("Part")
  4351. o29 = Instance.new("SpecialMesh")
  4352. o30 = Instance.new("Part")
  4353. o31 = Instance.new("BlockMesh")
  4354. o32 = Instance.new("Part")
  4355. o33 = Instance.new("BlockMesh")
  4356. o34 = Instance.new("Part")
  4357. o35 = Instance.new("BlockMesh")
  4358. o36 = Instance.new("Part")
  4359. o37 = Instance.new("BlockMesh")
  4360. o38 = Instance.new("Part")
  4361. o39 = Instance.new("Part")
  4362. o40 = Instance.new("BlockMesh")
  4363. o41 = Instance.new("Part")
  4364. o42 = Instance.new("BlockMesh")
  4365. o43 = Instance.new("Part")
  4366. o44 = Instance.new("BlockMesh")
  4367. o45 = Instance.new("Part")
  4368. o46 = Instance.new("SpecialMesh")
  4369. o47 = Instance.new("Part")
  4370. o48 = Instance.new("BlockMesh")
  4371. o49 = Instance.new("Part")
  4372. o50 = Instance.new("BlockMesh")
  4373. o51 = Instance.new("Part")
  4374. o52 = Instance.new("BlockMesh")
  4375. o53 = Instance.new("Part")
  4376. o54 = Instance.new("SpecialMesh")
  4377. o55 = Instance.new("Part")
  4378. o56 = Instance.new("SpecialMesh")
  4379. o57 = Instance.new("Part")
  4380. o58 = Instance.new("BlockMesh")
  4381. o59 = Instance.new("Part")
  4382. o60 = Instance.new("BlockMesh")
  4383. o61 = Instance.new("Part")
  4384. o62 = Instance.new("BlockMesh")
  4385. o63 = Instance.new("Part")
  4386. o64 = Instance.new("Part")
  4387. o65 = Instance.new("Part")
  4388. o66 = Instance.new("BlockMesh")
  4389. o67 = Instance.new("Part")
  4390. o68 = Instance.new("BlockMesh")
  4391. o69 = Instance.new("Part")
  4392. o70 = Instance.new("BlockMesh")
  4393. o71 = Instance.new("Part")
  4394. o72 = Instance.new("BlockMesh")
  4395. o73 = Instance.new("Part")
  4396. o74 = Instance.new("SpecialMesh")
  4397. o75 = Instance.new("Decal")
  4398. o76 = Instance.new("Part")
  4399. o77 = Instance.new("Part")
  4400. o78 = Instance.new("BlockMesh")
  4401. o79 = Instance.new("Part")
  4402. o80 = Instance.new("SpecialMesh")
  4403. o81 = Instance.new("Decal")
  4404. o82 = Instance.new("Part")
  4405. o83 = Instance.new("SpecialMesh")
  4406. o84 = Instance.new("Humanoid")
  4407. o85 = Instance.new("Part")
  4408. o86 = Instance.new("Part")
  4409. o87 = Instance.new("Part")
  4410. o88 = Instance.new("Decal")
  4411. o89 = Instance.new("Motor6D")
  4412. o90 = Instance.new("Motor6D")
  4413. o91 = Instance.new("Motor6D")
  4414. o92 = Instance.new("Motor6D")
  4415. o93 = Instance.new("Motor6D")
  4416. o94 = Instance.new("Part")
  4417. o95 = Instance.new("Part")
  4418. o96 = Instance.new("Part")
  4419. o97 = Instance.new("Part")
  4420. o98 = Instance.new("Part")
  4421. o99 = Instance.new("Decal")
  4422. o100 = Instance.new("Motor6D")
  4423. o101 = Instance.new("Motor6D")
  4424. o102 = Instance.new("Motor6D")
  4425. o103 = Instance.new("Part")
  4426. o104 = Instance.new("Part")
  4427. o105 = Instance.new("Part")
  4428. o106 = Instance.new("Part")
  4429. o107 = Instance.new("Part")
  4430. o108 = Instance.new("CylinderMesh")
  4431. o109 = Instance.new("Part")
  4432. o110 = Instance.new("CylinderMesh")
  4433. o111 = Instance.new("Part")
  4434. o112 = Instance.new("CylinderMesh")
  4435. o113 = Instance.new("Part")
  4436. o114 = Instance.new("CylinderMesh")
  4437. o115 = Instance.new("Part")
  4438. o116 = Instance.new("CylinderMesh")
  4439. o117 = Instance.new("Part")
  4440. o118 = Instance.new("CylinderMesh")
  4441. o119 = Instance.new("Part")
  4442. o120 = Instance.new("CylinderMesh")
  4443. o121 = Instance.new("Part")
  4444. o122 = Instance.new("SpecialMesh")
  4445. o123 = Instance.new("Part")
  4446. o1.Name = " "
  4447. o1.Parent = workspace
  4448. o2.Parent = o1
  4449. o2.Position = Vector3.new(95.3486252, 1.50001001, 18.4564877)
  4450. o2.Rotation = Vector3.new(-90, 1.20620803e-006, -180)
  4451. o2.Anchored = true
  4452. o2.FormFactor = Enum.FormFactor.Symmetric
  4453. o2.Size = Vector3.new(2.39999986, 1.31000006, 2.39999986)
  4454. o2.CFrame = CFrame.new(95.3486252, 1.50001001, 18.4564877, -1, 2.98044895e-008, 2.10523012e-008, 2.10523012e-008, 7.54615499e-008, 1, 2.9804486e-008, 1, -7.54615499e-008)
  4455. o3.Parent = o2
  4456. o4.Parent = o1
  4457. o4.BrickColor = BrickColor.new("Institutional white")
  4458. o4.Position = Vector3.new(96.3181839, 7.00000668, 9.31151104)
  4459. o4.Rotation = Vector3.new(90, 89.9314728, -90)
  4460. o4.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  4461. o4.Velocity = Vector3.new(-0.000346515269, 0.00201798417, -0.00195027643)
  4462. o4.Anchored = true
  4463. o4.FormFactor = Enum.FormFactor.Plate
  4464. o4.Size = Vector3.new(1, 2.4000001, 2)
  4465. o4.CFrame = CFrame.new(96.3181839, 7.00000668, 9.31151104, 0, 3.96052044e-008, 0.999999285, 0, 1, -3.97634246e-008, -1, 0, 0)
  4466. o4.BackSurface = Enum.SurfaceType.Weld
  4467. o4.BottomSurface = Enum.SurfaceType.Weld
  4468. o4.LeftSurface = Enum.SurfaceType.Weld
  4469. o4.TopSurface = Enum.SurfaceType.Weld
  4470. o4.Color = Color3.new(0.972549, 0.972549, 0.972549)
  4471. o5.Parent = o4
  4472. o5.MeshType = Enum.MeshType.Wedge
  4473. o6.Parent = o1
  4474. o6.Material = Enum.Material.SmoothPlastic
  4475. o6.BrickColor = BrickColor.new("Really black")
  4476. o6.Transparency = 0.5
  4477. o6.Position = Vector3.new(96.3181839, 7.00000668, 13.8115101)
  4478. o6.Rotation = Vector3.new(90, 89.9440536, -90)
  4479. o6.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  4480. o6.Velocity = Vector3.new(0.000965324172, 0.00135755131, -0.00195027643)
  4481. o6.Anchored = true
  4482. o6.FormFactor = Enum.FormFactor.Plate
  4483. o6.Size = Vector3.new(8, 2.4000001, 1.99999976)
  4484. o6.CFrame = CFrame.new(96.3181839, 7.00000668, 13.8115101, 0, 3.96315798e-008, 0.999999523, 0, 1, -3.97370599e-008, -1, 0, 0)
  4485. o6.BackSurface = Enum.SurfaceType.Weld
  4486. o6.BottomSurface = Enum.SurfaceType.Weld
  4487. o6.LeftSurface = Enum.SurfaceType.Weld
  4488. o6.RightSurface = Enum.SurfaceType.Weld
  4489. o6.TopSurface = Enum.SurfaceType.Weld
  4490. o6.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4491. o7.Parent = o6
  4492. o7.MeshType = Enum.MeshType.Wedge
  4493. o8.Parent = o1
  4494. o8.BrickColor = BrickColor.new("Br. yellowish orange")
  4495. o8.Position = Vector3.new(92.2182083, 4.00000715, 9.61151409)
  4496. o8.Rotation = Vector3.new(-0, 0, -2.26619136e-006)
  4497. o8.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  4498. o8.Velocity = Vector3.new(-0.000475873821, 0.00227026758, -0.00119533995)
  4499. o8.Anchored = true
  4500. o8.FormFactor = Enum.FormFactor.Custom
  4501. o8.Size = Vector3.new(0.200000003, 0.800000012, 0.799999714)
  4502. o8.CFrame = CFrame.new(92.2182083, 4.00000715, 9.61151409, 0.999998808, 3.95524538e-008, 0, -3.98161575e-008, 1, 0, 0, 0, 1)
  4503. o8.BackSurface = Enum.SurfaceType.Weld
  4504. o8.BottomSurface = Enum.SurfaceType.Weld
  4505. o8.FrontSurface = Enum.SurfaceType.Weld
  4506. o8.LeftSurface = Enum.SurfaceType.Weld
  4507. o8.RightSurface = Enum.SurfaceType.Weld
  4508. o8.TopSurface = Enum.SurfaceType.Weld
  4509. o8.Color = Color3.new(0.886275, 0.607843, 0.25098)
  4510. o9.Parent = o8
  4511. o10.Parent = o1
  4512. o10.BrickColor = BrickColor.new("Institutional white")
  4513. o10.Position = Vector3.new(105.317894, 8.40004158, 9.31151295)
  4514. o10.Rotation = Vector3.new(-0, 0, -2.21330401e-006)
  4515. o10.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  4516. o10.Velocity = Vector3.new(-0.000245332019, 0.00136755884, -0.00436839834)
  4517. o10.Anchored = true
  4518. o10.CanCollide = false
  4519. game.Players[Victim].Character.Humanoid.WalkSpeed = 0
  4520. game.Players[Victim].Character.Humanoid.JumpPower = 0
  4521. o10.FormFactor = Enum.FormFactor.Plate
  4522. o10.Size = Vector3.new(14, 0.400000006, 1)
  4523. o10.CFrame = CFrame.new(105.317894, 8.40004158, 9.31151295, 0.999999762, 3.86294303e-008, 0, -3.86821704e-008, 1, 0, 0, 0, 1)
  4524. o10.BackSurface = Enum.SurfaceType.Weld
  4525. o10.BottomSurface = Enum.SurfaceType.Weld
  4526. o10.FrontSurface = Enum.SurfaceType.Weld
  4527. o10.LeftSurface = Enum.SurfaceType.Weld
  4528. o10.RightSurface = Enum.SurfaceType.Weld
  4529. o10.TopSurface = Enum.SurfaceType.Weld
  4530. o10.Color = Color3.new(0.972549, 0.972549, 0.972549)
  4531. o11.Parent = o10
  4532. o12.Name = "DOOR"
  4533. o12.Parent = o1
  4534. o12.BrickColor = BrickColor.new("Institutional white")
  4535. o12.Position = Vector3.new(103.708466, 5.81500626, 9.31151104)
  4536. o12.Rotation = Vector3.new(-0, 0, -4.43210411e-006)
  4537. o12.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  4538. o12.Velocity = Vector3.new(-0.000432157307, 0.00148387556, -0.00427860441)
  4539. o12.Anchored = true
  4540. o12.CanCollide = false
  4541. o12.FormFactor = Enum.FormFactor.Plate
  4542. o12.Size = Vector3.new(5.22000027, 4.82999992, 1)
  4543. o12.CFrame = CFrame.new(103.708466, 5.81500626, 9.31151104, 1, 7.73548052e-008, 0, -7.73548052e-008, 1, 0, 0, 0, 1)
  4544. o12.BottomSurface = Enum.SurfaceType.Weld
  4545. o12.LeftSurface = Enum.SurfaceType.Weld
  4546. o12.RightSurface = Enum.SurfaceType.Weld
  4547. o12.TopSurface = Enum.SurfaceType.Weld
  4548. o12.Color = Color3.new(0.972549, 0.972549, 0.972549)
  4549. o13.Parent = o1
  4550. o13.BrickColor = BrickColor.new("White")
  4551. o13.Position = Vector3.new(109.818169, 5.80000877, 9.31151104)
  4552. o13.Rotation = Vector3.new(-0, 0, -2.25410599e-006)
  4553. o13.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  4554. o13.Velocity = Vector3.new(-0.00043324125, 0.00104231632, -0.006061906)
  4555. o13.Anchored = true
  4556. o13.FormFactor = Enum.FormFactor.Plate
  4557. o13.Size = Vector3.new(7, 4.80000019, 1)
  4558. o13.CFrame = CFrame.new(109.818169, 5.80000877, 9.31151104, 0.999996901, 3.9341451e-008, 0, -4.00270856e-008, 1, 0, 0, 0, 1)
  4559. o13.BackSurface = Enum.SurfaceType.Weld
  4560. o13.BottomSurface = Enum.SurfaceType.Weld
  4561. o13.FrontSurface = Enum.SurfaceType.Weld
  4562. o13.LeftSurface = Enum.SurfaceType.Weld
  4563. o13.RightSurface = Enum.SurfaceType.Weld
  4564. o13.TopSurface = Enum.SurfaceType.Weld
  4565. o13.Color = Color3.new(0.94902, 0.952941, 0.952941)
  4566. o14.Parent = o13
  4567. o15.Parent = o1
  4568. o15.BrickColor = BrickColor.new("Institutional white")
  4569. o15.Position = Vector3.new(97.817894, 8.40000725, 13.8115139)
  4570. o15.Rotation = Vector3.new(90, 89.960434, -90)
  4571. o15.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  4572. o15.Velocity = Vector3.new(0.00106650498, 0.00124916411, -0.00218200427)
  4573. o15.Anchored = true
  4574. o15.CanCollide = false
  4575. o15.FormFactor = Enum.FormFactor.Plate
  4576. o15.Size = Vector3.new(10, 0.400000006, 1)
  4577. o15.CFrame = CFrame.new(97.817894, 8.40000725, 13.8115139, 0, 3.86294303e-008, 0.999999762, 0, 1, -3.86821704e-008, -1, 0, 0)
  4578. o15.BackSurface = Enum.SurfaceType.Weld
  4579. o15.BottomSurface = Enum.SurfaceType.Weld
  4580. o15.TopSurface = Enum.SurfaceType.Weld
  4581. o15.Color = Color3.new(0.972549, 0.972549, 0.972549)
  4582. o16.Parent = o15
  4583. o16.MeshType = Enum.MeshType.Wedge
  4584. o17.Parent = o1
  4585. o17.BrickColor = BrickColor.new("Institutional white")
  4586. o17.Position = Vector3.new(96.3181839, 7.00000668, 18.3115101)
  4587. o17.Rotation = Vector3.new(90, 89.9314728, -90)
  4588. o17.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  4589. o17.Velocity = Vector3.new(0.00227716356, 0.000697118347, -0.00195027643)
  4590. o17.Anchored = true
  4591. o17.FormFactor = Enum.FormFactor.Plate
  4592. o17.Size = Vector3.new(1, 2.4000001, 2)
  4593. o17.CFrame = CFrame.new(96.3181839, 7.00000668, 18.3115101, 0, 3.96052044e-008, 0.999999285, 0, 1, -3.97634246e-008, -1, 0, 0)
  4594. o17.BackSurface = Enum.SurfaceType.Weld
  4595. o17.BottomSurface = Enum.SurfaceType.Weld
  4596. o17.RightSurface = Enum.SurfaceType.Weld
  4597. o17.TopSurface = Enum.SurfaceType.Weld
  4598. o17.Color = Color3.new(0.972549, 0.972549, 0.972549)
  4599. o18.Parent = o17
  4600. o18.MeshType = Enum.MeshType.Wedge
  4601. o19.Parent = o1
  4602. o19.BrickColor = BrickColor.new("Institutional white")
  4603. o19.Position = Vector3.new(93.8181839, 5.20000744, 13.8115101)
  4604. o19.Rotation = Vector3.new(90, 89.8573456, -90)
  4605. o19.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  4606. o19.Velocity = Vector3.new(0.000835234998, 0.00153823046, -0.00148565089)
  4607. o19.Anchored = true
  4608. o19.FormFactor = Enum.FormFactor.Plate
  4609. o19.Size = Vector3.new(10, 1.20000005, 3)
  4610. o19.CFrame = CFrame.new(93.8181839, 5.20000744, 13.8115101, 0, 3.77325726e-008, 0.999996901, 0, 1, -3.84182002e-008, -1, 0, 0)
  4611. o19.BackSurface = Enum.SurfaceType.Weld
  4612. o19.BottomSurface = Enum.SurfaceType.Weld
  4613. o19.TopSurface = Enum.SurfaceType.Weld
  4614. o19.Color = Color3.new(0.972549, 0.972549, 0.972549)
  4615. o20.Parent = o19
  4616. o20.MeshType = Enum.MeshType.Wedge
  4617. o21.Parent = o19
  4618. o21.SoundId = "rbxassetid://532147820"
  4619. o21.Looped = true
  4620. o22.Parent = o1
  4621. o22.BrickColor = BrickColor.new("Institutional white")
  4622. o22.Position = Vector3.new(96.3182907, 4.60000753, 9.31151104)
  4623. o22.Rotation = Vector3.new(-0, 0, -2.23446773e-006)
  4624. o22.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  4625. o22.Velocity = Vector3.new(-0.000519967522, 0.00201797695, -0.00230253674)
  4626. o22.Anchored = true
  4627. o22.FormFactor = Enum.FormFactor.Plate
  4628. o22.Size = Vector3.new(2, 2.4000001, 1)
  4629. o22.CFrame = CFrame.new(96.3182907, 4.60000753, 9.31151104, 0.999993801, 3.8998575e-008, 0, -4.03698408e-008, 1, 0, 0, 0, 1)
  4630. o22.BackSurface = Enum.SurfaceType.Weld
  4631. o22.BottomSurface = Enum.SurfaceType.Weld
  4632. o22.FrontSurface = Enum.SurfaceType.Weld
  4633. o22.LeftSurface = Enum.SurfaceType.Weld
  4634. o22.RightSurface = Enum.SurfaceType.Weld
  4635. o22.TopSurface = Enum.SurfaceType.Weld
  4636. o22.Color = Color3.new(0.972549, 0.972549, 0.972549)
  4637. o23.Parent = o22
  4638. o24.Parent = o1
  4639. o24.BrickColor = BrickColor.new("Institutional white")
  4640. o24.Position = Vector3.new(113.817245, 6.80000734, 18.3115101)
  4641. o24.Rotation = Vector3.new(-0, -90, 0)
  4642. o24.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  4643. o24.Velocity = Vector3.new(0.00226270943, -0.000567569688, -0.00708095264)
  4644. o24.Anchored = true
  4645. o24.FormFactor = Enum.FormFactor.Plate
  4646. o24.Size = Vector3.new(1, 2.79999995, 1)
  4647. o24.CFrame = CFrame.new(113.817245, 6.80000734, 18.3115101, 0, 5.54578605e-008, -1, 0, 1, 5.54578605e-008, 1, 0, 0)
  4648. o24.BackSurface = Enum.SurfaceType.Weld
  4649. o24.BottomSurface = Enum.SurfaceType.Weld
  4650. o24.TopSurface = Enum.SurfaceType.Weld
  4651. o24.Color = Color3.new(0.972549, 0.972549, 0.972549)
  4652. o25.Parent = o24
  4653. o25.MeshType = Enum.MeshType.Wedge
  4654. o26.Parent = o1
  4655. o26.BrickColor = BrickColor.new("Institutional white")
  4656. o26.Position = Vector3.new(93.0181885, 2.60000825, 13.8115101)
  4657. o26.Rotation = Vector3.new(-0, 0, -2.27223404e-006)
  4658. o26.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  4659. o26.Velocity = Vector3.new(0.000647328445, 0.00159604801, -0.00163401756)
  4660. o26.Anchored = true
  4661. o26.FormFactor = Enum.FormFactor.Plate
  4662. o26.Size = Vector3.new(1.39999998, 1.60000002, 10)
  4663. o26.CFrame = CFrame.new(93.0181885, 2.60000825, 13.8115101, 0.999999762, 3.96579551e-008, 0, -3.97106952e-008, 1, 0, 0, 0, 1)
  4664. o26.BackSurface = Enum.SurfaceType.Weld
  4665. o26.BottomSurface = Enum.SurfaceType.Weld
  4666. o26.FrontSurface = Enum.SurfaceType.Weld
  4667. o26.LeftSurface = Enum.SurfaceType.Weld
  4668. o26.RightSurface = Enum.SurfaceType.Weld
  4669. o26.TopSurface = Enum.SurfaceType.Weld
  4670. o26.Color = Color3.new(0.972549, 0.972549, 0.972549)
  4671. o27.Parent = o26
  4672. o28.Parent = o1
  4673. o28.BrickColor = BrickColor.new("Institutional white")
  4674. o28.Position = Vector3.new(113.818176, 6.80000877, 9.31151104)
  4675. o28.Rotation = Vector3.new(-90, -89.7982635, -90)
  4676. o28.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  4677. o28.Velocity = Vector3.new(-0.000360969483, 0.000753228669, -0.00708122458)
  4678. o28.Anchored = true
  4679. o28.FormFactor = Enum.FormFactor.Plate
  4680. o28.Size = Vector3.new(1, 2.79999995, 1)
  4681. o28.CFrame = CFrame.new(113.818176, 6.80000877, 9.31151104, 0, 3.89985715e-008, -0.999993801, 0, 1, 4.03698408e-008, 1, 0, 0)
  4682. o28.BackSurface = Enum.SurfaceType.Weld
  4683. o28.BottomSurface = Enum.SurfaceType.Weld
  4684. o28.TopSurface = Enum.SurfaceType.Weld
  4685. o28.Color = Color3.new(0.972549, 0.972549, 0.972549)
  4686. o29.Parent = o28
  4687. o29.MeshType = Enum.MeshType.Wedge
  4688. o30.Parent = o1
  4689. o30.BrickColor = BrickColor.new("Institutional white")
  4690. o30.Position = Vector3.new(96.3181992, 4.60000753, 18.3115101)
  4691. o30.Rotation = Vector3.new(-0, 0, -2.26770203e-006)
  4692. o30.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  4693. o30.Velocity = Vector3.new(0.00210371148, 0.000697117415, -0.0023025109)
  4694. o30.Anchored = true
  4695. o30.FormFactor = Enum.FormFactor.Plate
  4696. o30.Size = Vector3.new(2, 2.4000001, 1)
  4697. o30.CFrame = CFrame.new(96.3181992, 4.60000753, 18.3115101, 0.999999046, 3.95788291e-008, 0, -3.97897928e-008, 1, 0, 0, 0, 1)
  4698. o30.BackSurface = Enum.SurfaceType.Weld
  4699. o30.BottomSurface = Enum.SurfaceType.Weld
  4700. o30.FrontSurface = Enum.SurfaceType.Weld
  4701. o30.LeftSurface = Enum.SurfaceType.Weld
  4702. o30.RightSurface = Enum.SurfaceType.Weld
  4703. o30.TopSurface = Enum.SurfaceType.Weld
  4704. o30.Color = Color3.new(0.972549, 0.972549, 0.972549)
  4705. o31.Parent = o30
  4706. o32.Parent = o1
  4707. o32.BrickColor = BrickColor.new("Dark stone grey")
  4708. o32.Position = Vector3.new(95.8181839, 4.60000753, 13.8115101)
  4709. o32.Rotation = Vector3.new(90, 89.960434, -90)
  4710. o32.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  4711. o32.Velocity = Vector3.new(0.000791871978, 0.00139368721, -0.00215674727)
  4712. o32.Anchored = true
  4713. o32.FormFactor = Enum.FormFactor.Plate
  4714. o32.Size = Vector3.new(8, 2.4000001, 1)
  4715. o32.CFrame = CFrame.new(95.8181839, 4.60000753, 13.8115101, 0, 3.96579551e-008, 0.999999762, 0, 1, -3.97106952e-008, -1, 0, 0)
  4716. o32.BottomSurface = Enum.SurfaceType.Weld
  4717. o32.TopSurface = Enum.SurfaceType.Weld
  4718. o32.Color = Color3.new(0.388235, 0.372549, 0.384314)
  4719. o33.Parent = o32
  4720. o33.Offset = Vector3.new(0, 0, 0.5)
  4721. o33.Scale = Vector3.new(1, 1, 2)
  4722. o34.Parent = o1
  4723. o34.BrickColor = BrickColor.new("Institutional white")
  4724. o34.Position = Vector3.new(93.8181992, 4.00000715, 13.8115101)
  4725. o34.Rotation = Vector3.new(-0, 0, -2.26770203e-006)
  4726. o34.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  4727. o34.Velocity = Vector3.new(0.000748508843, 0.00153822941, -0.00166177051)
  4728. o34.Anchored = true
  4729. o34.FormFactor = Enum.FormFactor.Plate
  4730. o34.Size = Vector3.new(3, 1.20000005, 10)
  4731. o34.CFrame = CFrame.new(93.8181992, 4.00000715, 13.8115101, 0.999999046, 3.95788291e-008, 0, -3.97897928e-008, 1, 0, 0, 0, 1)
  4732. o34.BackSurface = Enum.SurfaceType.Weld
  4733. o34.BottomSurface = Enum.SurfaceType.Weld
  4734. o34.FrontSurface = Enum.SurfaceType.Weld
  4735. o34.LeftSurface = Enum.SurfaceType.Weld
  4736. o34.RightSurface = Enum.SurfaceType.Weld
  4737. o34.TopSurface = Enum.SurfaceType.Weld
  4738. o34.Color = Color3.new(0.972549, 0.972549, 0.972549)
  4739. o35.Parent = o34
  4740. o36.Parent = o1
  4741. o36.BrickColor = BrickColor.new("Br. yellowish orange")
  4742. o36.Position = Vector3.new(92.2181854, 4.00000715, 18.211504)
  4743. o36.Rotation = Vector3.new(-0, 0, -2.2601489e-006)
  4744. o36.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  4745. o36.Velocity = Vector3.new(0.00203119451, 0.00100810977, -0.00119533355)
  4746. o36.Anchored = true
  4747. o36.FormFactor = Enum.FormFactor.Custom
  4748. o36.Size = Vector3.new(0.200000003, 0.800000012, 0.799999714)
  4749. o36.CFrame = CFrame.new(92.2181854, 4.00000715, 18.211504, 0.999997854, 3.94469524e-008, 0, -3.99216233e-008, 1, 0, 0, 0, 1)
  4750. o36.BackSurface = Enum.SurfaceType.Weld
  4751. o36.BottomSurface = Enum.SurfaceType.Weld
  4752. o36.FrontSurface = Enum.SurfaceType.Weld
  4753. o36.LeftSurface = Enum.SurfaceType.Weld
  4754. o36.RightSurface = Enum.SurfaceType.Weld
  4755. o36.TopSurface = Enum.SurfaceType.Weld
  4756. o36.Color = Color3.new(0.886275, 0.607843, 0.25098)
  4757. o37.Parent = o36
  4758. o38.Parent = o1
  4759. o38.BrickColor = BrickColor.new("Institutional white")
  4760. o38.Position = Vector3.new(99.0602112, 4.60000706, 18.3115101)
  4761. o38.Rotation = Vector3.new(-0, 0, -4.84935117e-006)
  4762. o38.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  4763. o38.Velocity = Vector3.new(0.00210371148, 0.000498947338, -0.0031018618)
  4764. o38.Anchored = true
  4765. o38.CanCollide = false
  4766. o38.FormFactor = Enum.FormFactor.Plate
  4767. o38.Size = Vector3.new(3.48000026, 2.4000001, 1)
  4768. o38.CFrame = CFrame.new(99.0602112, 4.60000706, 18.3115101, 1, 8.46371435e-008, 0, -8.46371435e-008, 1, 0, 0, 0, 1)
  4769. o38.BottomSurface = Enum.SurfaceType.Weld
  4770. o38.LeftSurface = Enum.SurfaceType.Weld
  4771. o38.RightSurface = Enum.SurfaceType.Weld
  4772. o38.TopSurface = Enum.SurfaceType.Weld
  4773. o38.Color = Color3.new(0.972549, 0.972549, 0.972549)
  4774. o39.Parent = o1
  4775. o39.BrickColor = BrickColor.new("Really red")
  4776. o39.Position = Vector3.new(113.818176, 4.80000877, 9.31151104)
  4777. o39.Rotation = Vector3.new(-0, 0, -2.2344675e-006)
  4778. o39.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  4779. o39.Velocity = Vector3.new(-0.000505513046, 0.000753228669, -0.00737475045)
  4780. o39.Anchored = true
  4781. o39.FormFactor = Enum.FormFactor.Plate
  4782. o39.Size = Vector3.new(1, 1.20000005, 1)
  4783. o39.CFrame = CFrame.new(113.818176, 4.80000877, 9.31151104, 0.999993801, 3.89985715e-008, 0, -4.03698408e-008, 1, 0, 0, 0, 1)
  4784. o39.BackSurface = Enum.SurfaceType.Weld
  4785. o39.BottomSurface = Enum.SurfaceType.Weld
  4786. o39.FrontSurface = Enum.SurfaceType.Weld
  4787. o39.LeftSurface = Enum.SurfaceType.Weld
  4788. o39.RightSurface = Enum.SurfaceType.Weld
  4789. o39.TopSurface = Enum.SurfaceType.Weld
  4790. o39.Color = Color3.new(1, 0, 0)
  4791. o40.Parent = o39
  4792. o41.Parent = o1
  4793. o41.BrickColor = BrickColor.new("Institutional white")
  4794. o41.Position = Vector3.new(113.818054, 3.80000734, 9.31151104)
  4795. o41.Rotation = Vector3.new(-0, 0, -2.23295706e-006)
  4796. o41.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  4797. o41.Velocity = Vector3.new(-0.000577784958, 0.000753237749, -0.00752147706)
  4798. o41.Anchored = true
  4799. o41.FormFactor = Enum.FormFactor.Plate
  4800. o41.Size = Vector3.new(1, 0.800000012, 1)
  4801. o41.CFrame = CFrame.new(113.818054, 3.80000734, 9.31151104, 0.999993563, 3.89721997e-008, 0, -4.03962055e-008, 1, 0, 0, 0, 1)
  4802. o41.BackSurface = Enum.SurfaceType.Weld
  4803. o41.BottomSurface = Enum.SurfaceType.Weld
  4804. o41.FrontSurface = Enum.SurfaceType.Weld
  4805. o41.LeftSurface = Enum.SurfaceType.Weld
  4806. o41.RightSurface = Enum.SurfaceType.Weld
  4807. o41.TopSurface = Enum.SurfaceType.Weld
  4808. o41.Color = Color3.new(0.972549, 0.972549, 0.972549)
  4809. o42.Parent = o41
  4810. o43.Parent = o1
  4811. o43.BrickColor = BrickColor.new("Institutional white")
  4812. o43.Position = Vector3.new(105.317894, 8.40000725, 13.8115139)
  4813. o43.Rotation = Vector3.new(-0, 0, -2.21481446e-006)
  4814. o43.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  4815. o43.Velocity = Vector3.new(0.00106650498, 0.000707125873, -0.00436840346)
  4816. o43.Anchored = true
  4817. o43.CanCollide = false
  4818. o43.FormFactor = Enum.FormFactor.Plate
  4819. o43.Size = Vector3.new(14, 0.400000006, 8)
  4820. o43.CFrame = CFrame.new(105.317894, 8.40000725, 13.8115139, 1, 3.86558057e-008, 0, -3.86558057e-008, 1, 0, 0, 0, 1)
  4821. o43.BackSurface = Enum.SurfaceType.Weld
  4822. o43.BottomSurface = Enum.SurfaceType.Weld
  4823. o43.FrontSurface = Enum.SurfaceType.Weld
  4824. o43.LeftSurface = Enum.SurfaceType.Weld
  4825. o43.RightSurface = Enum.SurfaceType.Weld
  4826. o43.TopSurface = Enum.SurfaceType.Weld
  4827. o43.Color = Color3.new(0.972549, 0.972549, 0.972549)
  4828. o44.Parent = o43
  4829. o45.Parent = o1
  4830. o45.BrickColor = BrickColor.new("Really black")
  4831. o45.Position = Vector3.new(113.818176, 6.80000782, 11.311511)
  4832. o45.Rotation = Vector3.new(-90, -89.9314728, -90)
  4833. o45.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  4834. o45.Velocity = Vector3.new(0.000222070201, 0.000459702482, -0.00708122645)
  4835. o45.Anchored = true
  4836. o45.CanCollide = false
  4837. o45.FormFactor = Enum.FormFactor.Plate
  4838. o45.Size = Vector3.new(3, 2.79999995, 1)
  4839. o45.CFrame = CFrame.new(113.818176, 6.80000782, 11.311511, 0, 3.96052044e-008, -0.999999285, 0, 1, 3.97634281e-008, 1, 0, 0)
  4840. o45.BackSurface = Enum.SurfaceType.Weld
  4841. o45.BottomSurface = Enum.SurfaceType.Weld
  4842. o45.TopSurface = Enum.SurfaceType.Weld
  4843. o45.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4844. o46.Parent = o45
  4845. o46.MeshType = Enum.MeshType.Wedge
  4846. o47.Parent = o1
  4847. o47.BrickColor = BrickColor.new("Institutional white")
  4848. o47.Position = Vector3.new(103.118179, 2.40000772, 13.8115101)
  4849. o47.Rotation = Vector3.new(-0, 0, -2.27223404e-006)
  4850. o47.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  4851. o47.Velocity = Vector3.new(0.000632874086, 0.000866103393, -0.0046077203)
  4852. o47.Anchored = true
  4853. o47.FormFactor = Enum.FormFactor.Plate
  4854. o47.Size = Vector3.new(12.3999996, 1.20000005, 10)
  4855. o47.CFrame = CFrame.new(103.118179, 2.40000772, 13.8115101, 0.999999762, 3.96579551e-008, 0, -3.97106952e-008, 1, 0, 0, 0, 1)
  4856. o47.BackSurface = Enum.SurfaceType.Weld
  4857. o47.BottomSurface = Enum.SurfaceType.Weld
  4858. o47.FrontSurface = Enum.SurfaceType.Weld
  4859. o47.LeftSurface = Enum.SurfaceType.Weld
  4860. o47.RightSurface = Enum.SurfaceType.Weld
  4861. o47.TopSurface = Enum.SurfaceType.Weld
  4862. o47.Color = Color3.new(0.972549, 0.972549, 0.972549)
  4863. o48.Parent = o47
  4864. o49.Parent = o1
  4865. o49.BrickColor = BrickColor.new("White")
  4866. o49.Position = Vector3.new(104.018181, 3.20000815, 13.8115101)
  4867. o49.Rotation = Vector3.new(-0, 0, -2.27374471e-006)
  4868. o49.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  4869. o49.Velocity = Vector3.new(0.000690691522, 0.000801058719, -0.00475267787)
  4870. o49.Anchored = true
  4871. o49.FormFactor = Enum.FormFactor.Plate
  4872. o49.Size = Vector3.new(20.6000004, 0.400000006, 10)
  4873. o49.CFrame = CFrame.new(104.018181, 3.20000815, 13.8115101, 1, 3.96843305e-008, 0, -3.96843305e-008, 1, 0, 0, 0, 1)
  4874. o49.BackSurface = Enum.SurfaceType.Weld
  4875. o49.BottomSurface = Enum.SurfaceType.Weld
  4876. o49.FrontSurface = Enum.SurfaceType.Weld
  4877. o49.LeftSurface = Enum.SurfaceType.Weld
  4878. o49.RightSurface = Enum.SurfaceType.Weld
  4879. o49.TopSurface = Enum.SurfaceType.Weld
  4880. o49.Color = Color3.new(0.94902, 0.952941, 0.952941)
  4881. o50.Parent = o49
  4882. o51.Parent = o1
  4883. o51.BrickColor = BrickColor.new("Institutional white")
  4884. o51.Position = Vector3.new(107.167747, 5.80000782, 18.3115101)
  4885. o51.Rotation = Vector3.new(-0, 0, -3.14727777e-006)
  4886. o51.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  4887. o51.Velocity = Vector3.new(0.00219043763, -8.69987416e-005, -0.00528925471)
  4888. o51.Anchored = true
  4889. o51.FormFactor = Enum.FormFactor.Plate
  4890. o51.Size = Vector3.new(12.3000002, 4.80000019, 1)
  4891. o51.CFrame = CFrame.new(107.167747, 5.80000782, 18.3115101, 1, 5.49303607e-008, 0, -5.49303607e-008, 1, 0, 0, 0, 1)
  4892. o51.BackSurface = Enum.SurfaceType.Weld
  4893. o51.BottomSurface = Enum.SurfaceType.Weld
  4894. o51.FrontSurface = Enum.SurfaceType.Weld
  4895. o51.LeftSurface = Enum.SurfaceType.Weld
  4896. o51.RightSurface = Enum.SurfaceType.Weld
  4897. o51.TopSurface = Enum.SurfaceType.Weld
  4898. o51.Color = Color3.new(0.972549, 0.972549, 0.972549)
  4899. o52.Parent = o51
  4900. o53.Parent = o1
  4901. o53.BrickColor = BrickColor.new("Institutional white")
  4902. o53.Position = Vector3.new(113.818176, 6.80000782, 13.8115101)
  4903. o53.Rotation = Vector3.new(-90, -89.9314728, -90)
  4904. o53.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  4905. o53.Velocity = Vector3.new(0.000950869871, 9.27953006e-005, -0.00708122645)
  4906. o53.Anchored = true
  4907. o53.CanCollide = false
  4908. o53.FormFactor = Enum.FormFactor.Plate
  4909. o53.Size = Vector3.new(2, 2.79999995, 1)
  4910. o53.CFrame = CFrame.new(113.818176, 6.80000782, 13.8115101, 0, 3.96052044e-008, -0.999999285, 0, 1, 3.97634281e-008, 1, 0, 0)
  4911. o53.BackSurface = Enum.SurfaceType.Weld
  4912. o53.BottomSurface = Enum.SurfaceType.Weld
  4913. o53.TopSurface = Enum.SurfaceType.Weld
  4914. o53.Color = Color3.new(0.972549, 0.972549, 0.972549)
  4915. o54.Parent = o53
  4916. o54.MeshType = Enum.MeshType.Wedge
  4917. o55.Parent = o1
  4918. o55.BrickColor = BrickColor.new("Really black")
  4919. o55.Position = Vector3.new(113.818176, 6.80000782, 16.3115101)
  4920. o55.Rotation = Vector3.new(-90, -89.9314728, -90)
  4921. o55.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  4922. o55.Velocity = Vector3.new(0.0016796696, -0.000274111895, -0.00708122645)
  4923. o55.Anchored = true
  4924. o55.CanCollide = false
  4925. o55.FormFactor = Enum.FormFactor.Plate
  4926. o55.Size = Vector3.new(3, 2.79999995, 1)
  4927. o55.CFrame = CFrame.new(113.818176, 6.80000782, 16.3115101, 0, 3.96052044e-008, -0.999999285, 0, 1, 3.97634281e-008, 1, 0, 0)
  4928. o55.BackSurface = Enum.SurfaceType.Weld
  4929. o55.BottomSurface = Enum.SurfaceType.Weld
  4930. o55.TopSurface = Enum.SurfaceType.Weld
  4931. o55.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4932. o56.Parent = o55
  4933. o56.MeshType = Enum.MeshType.Wedge
  4934. o57.Parent = o1
  4935. o57.BrickColor = BrickColor.new("Institutional white")
  4936. o57.Position = Vector3.new(113.818176, 4.40000582, 13.8115101)
  4937. o57.Rotation = Vector3.new(-0, 0, -2.27223404e-006)
  4938. o57.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  4939. o57.Velocity = Vector3.new(0.000777417503, 9.27956426e-005, -0.00743345637)
  4940. o57.Anchored = true
  4941. o57.CanCollide = false
  4942. o57.FormFactor = Enum.FormFactor.Plate
  4943. o57.Size = Vector3.new(1, 2, 8)
  4944. o57.CFrame = CFrame.new(113.818176, 4.40000582, 13.8115101, 0.999999762, 3.96579551e-008, 0, -3.97106952e-008, 1, 0, 0, 0, 1)
  4945. o57.BackSurface = Enum.SurfaceType.Weld
  4946. o57.BottomSurface = Enum.SurfaceType.Weld
  4947. o57.FrontSurface = Enum.SurfaceType.Weld
  4948. o57.LeftSurface = Enum.SurfaceType.Weld
  4949. o57.RightSurface = Enum.SurfaceType.Weld
  4950. o57.TopSurface = Enum.SurfaceType.Weld
  4951. o57.Color = Color3.new(0.972549, 0.972549, 0.972549)
  4952. o58.Parent = o57
  4953. o59.Parent = o1
  4954. o59.BrickColor = BrickColor.new("Institutional white")
  4955. o59.Position = Vector3.new(113.818176, 3.80000734, 18.3115101)
  4956. o59.Rotation = Vector3.new(-0, 0, -2.27223404e-006)
  4957. o59.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  4958. o59.Velocity = Vector3.new(0.00204589404, -0.000567637384, -0.00752151385)
  4959. o59.Anchored = true
  4960. o59.FormFactor = Enum.FormFactor.Plate
  4961. o59.Size = Vector3.new(1, 0.800000012, 1)
  4962. o59.CFrame = CFrame.new(113.818176, 3.80000734, 18.3115101, 0.999999762, 3.96579551e-008, 0, -3.97106952e-008, 1, 0, 0, 0, 1)
  4963. o59.BackSurface = Enum.SurfaceType.Weld
  4964. o59.BottomSurface = Enum.SurfaceType.Weld
  4965. o59.FrontSurface = Enum.SurfaceType.Weld
  4966. o59.LeftSurface = Enum.SurfaceType.Weld
  4967. o59.RightSurface = Enum.SurfaceType.Weld
  4968. o59.TopSurface = Enum.SurfaceType.Weld
  4969. o59.Color = Color3.new(0.972549, 0.972549, 0.972549)
  4970. o60.Parent = o59
  4971. o61.Parent = o1
  4972. o61.BrickColor = BrickColor.new("Institutional white")
  4973. o61.Position = Vector3.new(105.317894, 8.40000725, 18.3115101)
  4974. o61.Rotation = Vector3.new(-0, 0, -2.21330401e-006)
  4975. o61.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  4976. o61.Velocity = Vector3.new(0.00237834454, 4.6692905e-005, -0.00436840346)
  4977. o61.Anchored = true
  4978. o61.CanCollide = false
  4979. o61.FormFactor = Enum.FormFactor.Plate
  4980. o61.Size = Vector3.new(14, 0.400000006, 1)
  4981. o61.CFrame = CFrame.new(105.317894, 8.40000725, 18.3115101, 0.999999762, 3.86294303e-008, 0, -3.86821704e-008, 1, 0, 0, 0, 1)
  4982. o61.BackSurface = Enum.SurfaceType.Weld
  4983. o61.BottomSurface = Enum.SurfaceType.Weld
  4984. o61.FrontSurface = Enum.SurfaceType.Weld
  4985. o61.LeftSurface = Enum.SurfaceType.Weld
  4986. o61.RightSurface = Enum.SurfaceType.Weld
  4987. o61.TopSurface = Enum.SurfaceType.Weld
  4988. o61.Color = Color3.new(0.972549, 0.972549, 0.972549)
  4989. o62.Parent = o61
  4990. o63.Parent = o1
  4991. o63.BrickColor = BrickColor.new("Institutional white")
  4992. o63.Position = Vector3.new(97.8181839, 5.79500866, 9.31151104)
  4993. o63.Rotation = Vector3.new(-0, 0, -2.36894834e-006)
  4994. o63.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  4995. o63.Velocity = Vector3.new(-0.000433602603, 0.00190957636, -0.00256440602)
  4996. o63.Anchored = true
  4997. o63.CanCollide = false
  4998. o63.FormFactor = Enum.FormFactor.Plate
  4999. o63.Size = Vector3.new(1, 4.80999994, 1)
  5000. o63.CFrame = CFrame.new(97.8181839, 5.79500866, 9.31151104, 1, 4.13459489e-008, 0, -4.13459489e-008, 1, 0, 0, 0, 1)
  5001. o63.BottomSurface = Enum.SurfaceType.Weld
  5002. o63.LeftSurface = Enum.SurfaceType.Weld
  5003. o63.RightSurface = Enum.SurfaceType.Weld
  5004. o63.TopSurface = Enum.SurfaceType.Weld
  5005. o63.Color = Color3.new(0.972549, 0.972549, 0.972549)
  5006. o64.Parent = o1
  5007. o64.BrickColor = BrickColor.new("Institutional white")
  5008. o64.Position = Vector3.new(97.8178101, 7.00000858, 18.3115101)
  5009. o64.Rotation = Vector3.new(-0, 0, -2.14529973e-006)
  5010. o64.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  5011. o64.Velocity = Vector3.new(0.00227716402, 0.00058873737, -0.00238744705)
  5012. o64.Anchored = true
  5013. o64.CanCollide = false
  5014. o64.FormFactor = Enum.FormFactor.Plate
  5015. o64.Size = Vector3.new(1, 2.4000001, 1)
  5016. o64.CFrame = CFrame.new(97.8178101, 7.00000858, 18.3115101, 0.999999762, 3.74425326e-008, 0, -3.74952727e-008, 1, 0, 0, 0, 1)
  5017. o64.BottomSurface = Enum.SurfaceType.Weld
  5018. o64.LeftSurface = Enum.SurfaceType.Weld
  5019. o64.RightSurface = Enum.SurfaceType.Weld
  5020. o64.TopSurface = Enum.SurfaceType.Weld
  5021. o64.Color = Color3.new(0.972549, 0.972549, 0.972549)
  5022. o65.Parent = o1
  5023. o65.BrickColor = BrickColor.new("Institutional white")
  5024. o65.Position = Vector3.new(113.418167, 2.40000749, 13.8115101)
  5025. o65.Rotation = Vector3.new(-0, 0, -2.27223404e-006)
  5026. o65.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  5027. o65.Velocity = Vector3.new(0.000632874086, 0.000121704477, -0.0076103732)
  5028. o65.Anchored = true
  5029. o65.FormFactor = Enum.FormFactor.Plate
  5030. o65.Size = Vector3.new(1.80000007, 1.20000005, 10)
  5031. o65.CFrame = CFrame.new(113.418167, 2.40000749, 13.8115101, 0.999999762, 3.96579551e-008, 0, -3.97106952e-008, 1, 0, 0, 0, 1)
  5032. o65.BackSurface = Enum.SurfaceType.Weld
  5033. o65.BottomSurface = Enum.SurfaceType.Weld
  5034. o65.FrontSurface = Enum.SurfaceType.Weld
  5035. o65.LeftSurface = Enum.SurfaceType.Weld
  5036. o65.RightSurface = Enum.SurfaceType.Weld
  5037. o65.TopSurface = Enum.SurfaceType.Weld
  5038. o65.Color = Color3.new(0.972549, 0.972549, 0.972549)
  5039. o66.Parent = o65
  5040. o67.Parent = o1
  5041. o67.BrickColor = BrickColor.new("Really red")
  5042. o67.Position = Vector3.new(113.817245, 4.80000687, 18.3115101)
  5043. o67.Rotation = Vector3.new(-0, 0, -3.17145691e-006)
  5044. o67.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  5045. o67.Velocity = Vector3.new(0.00211816584, -0.000567570096, -0.0073744799)
  5046. o67.Anchored = true
  5047. o67.FormFactor = Enum.FormFactor.Plate
  5048. o67.Size = Vector3.new(1, 1.20000005, 1)
  5049. o67.CFrame = CFrame.new(113.817245, 4.80000687, 18.3115101, 1, 5.53523627e-008, 0, -5.53523627e-008, 1, 0, 0, 0, 1)
  5050. o67.BackSurface = Enum.SurfaceType.Weld
  5051. o67.BottomSurface = Enum.SurfaceType.Weld
  5052. o67.FrontSurface = Enum.SurfaceType.Weld
  5053. o67.LeftSurface = Enum.SurfaceType.Weld
  5054. o67.RightSurface = Enum.SurfaceType.Weld
  5055. o67.TopSurface = Enum.SurfaceType.Weld
  5056. o67.Color = Color3.new(1, 0, 0)
  5057. o68.Parent = o67
  5058. o69.Parent = o1
  5059. o69.BrickColor = BrickColor.new("Institutional white")
  5060. o69.Position = Vector3.new(112.817894, 8.40000725, 13.8115139)
  5061. o69.Rotation = Vector3.new(-0, 0, -2.21330401e-006)
  5062. o69.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  5063. o69.Velocity = Vector3.new(0.00106650498, 0.000165087578, -0.00655480288)
  5064. o69.Anchored = true
  5065. o69.CanCollide = false
  5066. o69.FormFactor = Enum.FormFactor.Plate
  5067. o69.Size = Vector3.new(1, 0.400000006, 10)
  5068. o69.CFrame = CFrame.new(112.817894, 8.40000725, 13.8115139, 0.999999762, 3.86294303e-008, 0, -3.86821704e-008, 1, 0, 0, 0, 1)
  5069. o69.BackSurface = Enum.SurfaceType.Weld
  5070. o69.BottomSurface = Enum.SurfaceType.Weld
  5071. o69.FrontSurface = Enum.SurfaceType.Weld
  5072. o69.LeftSurface = Enum.SurfaceType.Weld
  5073. o69.RightSurface = Enum.SurfaceType.Weld
  5074. o69.TopSurface = Enum.SurfaceType.Weld
  5075. o69.Color = Color3.new(0.972549, 0.972549, 0.972549)
  5076. o70.Parent = o69
  5077. o71.Parent = o1
  5078. o71.BrickColor = BrickColor.new("Really black")
  5079. o71.Position = Vector3.new(92.2181854, 3.8000083, 13.8115101)
  5080. o71.Rotation = Vector3.new(-0, 0, -2.2601489e-006)
  5081. o71.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  5082. o71.Velocity = Vector3.new(0.0007340546, 0.00165386556, -0.00122468593)
  5083. o71.Anchored = true
  5084. o71.FormFactor = Enum.FormFactor.Custom
  5085. o71.Size = Vector3.new(0.200000003, 0.800000012, 6)
  5086. o71.CFrame = CFrame.new(92.2181854, 3.8000083, 13.8115101, 0.999997854, 3.94469524e-008, 0, -3.99216233e-008, 1, 0, 0, 0, 1)
  5087. o71.BackSurface = Enum.SurfaceType.Weld
  5088. o71.BottomSurface = Enum.SurfaceType.Weld
  5089. o71.FrontSurface = Enum.SurfaceType.Weld
  5090. o71.LeftSurface = Enum.SurfaceType.Weld
  5091. o71.RightSurface = Enum.SurfaceType.Weld
  5092. o71.TopSurface = Enum.SurfaceType.Weld
  5093. o71.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5094. o72.Parent = o71
  5095. o73.Name = "Head"
  5096. o73.Parent = o1
  5097. o73.Material = Enum.Material.SmoothPlastic
  5098. o73.BrickColor = BrickColor.new("Institutional white")
  5099. o73.Position = Vector3.new(99.207077, 7.026577, 15.2047167)
  5100. o73.Rotation = Vector3.new(5.49961514e-005, 89.0444794, -5.50190998e-005)
  5101. o73.Anchored = true
  5102. o73.FormFactor = Enum.FormFactor.Symmetric
  5103. o73.Size = Vector3.new(2, 1, 1)
  5104. o73.CFrame = CFrame.new(99.207077, 7.026577, 15.2047167, 0.0166787934, 1.60160507e-008, 0.999860942, -5.34079281e-010, 1, -1.60093698e-008, -0.999861002, -2.66988043e-010, 0.0166787915)
  5105. o73.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5106. o73.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5107. o73.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5108. o73.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5109. o73.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5110. o73.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5111. o73.Color = Color3.new(0.972549, 0.972549, 0.972549)
  5112. o74.Parent = o73
  5113. o74.Scale = Vector3.new(1.25, 1.25, 1.25)
  5114. o75.Name = "face"
  5115. o75.Parent = o73
  5116. o75.Texture = "rbxasset://textures/face.png"
  5117. o76.Parent = o1
  5118. o76.BrickColor = BrickColor.new("Institutional white")
  5119. o76.Position = Vector3.new(99.6954269, 5.81500673, 9.31151104)
  5120. o76.Rotation = Vector3.new(-0, 0, -8.82515178e-006)
  5121. o76.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  5122. o76.Velocity = Vector3.new(-0.000432157307, 0.00177390513, -0.00310872309)
  5123. o76.Anchored = true
  5124. o76.CanCollide = false
  5125. o76.FormFactor = Enum.FormFactor.Plate
  5126. o76.Size = Vector3.new(2.76000023, 4.82999992, 1)
  5127. o76.CFrame = CFrame.new(99.6954269, 5.81500673, 9.31151104, 1, 1.54027958e-007, 0, -1.54027958e-007, 1, 0, 0, 0, 1)
  5128. o76.BottomSurface = Enum.SurfaceType.Weld
  5129. o76.LeftSurface = Enum.SurfaceType.Weld
  5130. o76.RightSurface = Enum.SurfaceType.Weld
  5131. o76.TopSurface = Enum.SurfaceType.Weld
  5132. o76.Color = Color3.new(0.972549, 0.972549, 0.972549)
  5133. o77.Parent = o1
  5134. o77.BrickColor = BrickColor.new("Institutional white")
  5135. o77.Position = Vector3.new(100.909996, 5.80000877, 14.2915134)
  5136. o77.Rotation = Vector3.new(-0, 0, -7.89941078e-006)
  5137. o77.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005)
  5138. o77.Velocity = Vector3.new(0.0010185279, 0.000955246738, -0.00346499542)
  5139. o77.Anchored = true
  5140. o77.FormFactor = Enum.FormFactor.Plate
  5141. o77.Size = Vector3.new(0.200000003, 4.80000019, 9.0199995)
  5142. o77.CFrame = CFrame.new(100.909996, 5.80000877, 14.2915134, 1, 1.37870728e-007, 0, -1.37870728e-007, 1, 0, 0, 0, 1)
  5143. o77.BackSurface = Enum.SurfaceType.Weld
  5144. o77.BottomSurface = Enum.SurfaceType.Weld
  5145. o77.FrontSurface = Enum.SurfaceType.Weld
  5146. o77.LeftSurface = Enum.SurfaceType.Weld
  5147. o77.RightSurface = Enum.SurfaceType.Weld
  5148. o77.TopSurface = Enum.SurfaceType.Weld
  5149. o77.Color = Color3.new(0.972549, 0.972549, 0.972549)
  5150. o78.Parent = o77
  5151. o79.Name = "Head"
  5152. o79.Parent = o1
  5153. o79.Material = Enum.Material.SmoothPlastic
  5154. o79.BrickColor = BrickColor.new("Institutional white")
  5155. o79.Position = Vector3.new(103.10894, 7.49666739, 15.2047167)
  5156. o79.Rotation = Vector3.new(-1.53054156e-008, -0.95580709, -1.83469444e-006)
  5157. o79.Anchored = true
  5158. o79.FormFactor = Enum.FormFactor.Symmetric
  5159. o79.Size = Vector3.new(2, 1, 1)
  5160. o79.CFrame = CFrame.new(103.10894, 7.49666739, 15.2047167, 0.999860883, 3.20170024e-008, -0.0166812073, -3.20170024e-008, 1, 2.67092765e-010, 0.0166812055, 2.67026595e-010, 0.999860942)
  5161. o79.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5162. o79.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5163. o79.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5164. o79.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5165. o79.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5166. o79.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5167. o79.Color = Color3.new(0.972549, 0.972549, 0.972549)
  5168. o80.Parent = o79
  5169. o80.Scale = Vector3.new(1.25, 1.25, 1.25)
  5170. o81.Name = "face"
  5171. o81.Parent = o79
  5172. o81.Texture = "rbxasset://textures/face.png"
  5173. o82.Name = "Handle"
  5174. o82.Parent = o1
  5175. o82.Material = Enum.Material.SmoothPlastic
  5176. o82.Position = Vector3.new(103.10894, 7.34666729, 15.2047167)
  5177. o82.Rotation = Vector3.new(-1.53054156e-008, -0.95580709, -1.83469444e-006)
  5178. o82.Anchored = true
  5179. o82.CanCollide = false
  5180. o82.FormFactor = Enum.FormFactor.Symmetric
  5181. o82.Size = Vector3.new(2, 2, 2)
  5182. o82.CFrame = CFrame.new(103.10894, 7.34666729, 15.2047167, 0.999860883, 3.20170024e-008, -0.0166812073, -3.20170024e-008, 1, 2.67092765e-010, 0.0166812055, 2.67026595e-010, 0.999860942)
  5183. o82.BottomSurface = Enum.SurfaceType.Smooth
  5184. o82.TopSurface = Enum.SurfaceType.Smooth
  5185. o83.Parent = o82
  5186. o83.MeshId = "http://www.roblox.com/asset/?id=15393031"
  5187. o83.TextureId = "http://www.roblox.com/asset/?id=15393013"
  5188. o83.MeshType = Enum.MeshType.FileMesh
  5189. o84.Parent = o1
  5190. o84.NameOcclusion = Enum.NameOcclusion.NoOcclusion
  5191. o84.RightLeg = o94
  5192. o84.LeftLeg = o96
  5193. o84.Torso = o87
  5194. o84.Health = 0
  5195. o84.MaxHealth = 0
  5196. o85.Name = "TPPART"
  5197. o85.Parent = o1
  5198. o85.Transparency = 1
  5199. o85.Position = Vector3.new(104.155182, 4.24109221, 12.6003485)
  5200. o85.Rotation = Vector3.new(-0, 0, -3.5910773e-006)
  5201. o85.Anchored = true
  5202. o85.CanCollide = false
  5203. o85.Size = Vector3.new(4, 1, 2)
  5204. o85.CFrame = CFrame.new(104.155182, 4.24109221, 12.6003485, 1, 6.26761221e-008, 0, -6.26761221e-008, 1, 0, 0, 0, 1)
  5205. o86.Name = "TPPART2"
  5206. o86.Parent = o1
  5207. o86.Transparency = 1
  5208. o86.Position = Vector3.new(104.155182, 5.40188599, 6.32408237)
  5209. o86.Rotation = Vector3.new(-0, 0, -3.5910773e-006)
  5210. o86.Anchored = true
  5211. o86.CanCollide = false
  5212. o86.Size = Vector3.new(4, 1, 2)
  5213. o86.CFrame = CFrame.new(104.155182, 5.40188599, 6.32408237, 1, 6.26761221e-008, 0, -6.26761221e-008, 1, 0, 0, 0, 1)
  5214. o87.Name = "Torso"
  5215. o87.Parent = o1
  5216. o87.Material = Enum.Material.SmoothPlastic
  5217. o87.BrickColor = BrickColor.new("Navy blue")
  5218. o87.Position = Vector3.new(99.207077, 5.526577, 15.2047167)
  5219. o87.Rotation = Vector3.new(5.49961514e-005, 89.0444794, -5.50190998e-005)
  5220. o87.Anchored = true
  5221. o87.FormFactor = Enum.FormFactor.Symmetric
  5222. o87.Size = Vector3.new(2, 2, 1)
  5223. o87.CFrame = CFrame.new(99.207077, 5.526577, 15.2047167, 0.0166787934, 1.60160507e-008, 0.999860942, -5.34079281e-010, 1, -1.60093698e-008, -0.999861002, -2.66988043e-010, 0.0166787915)
  5224. o87.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5225. o87.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5226. o87.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5227. o87.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5228. o87.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5229. o87.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5230. o87.Color = Color3.new(0, 0.12549, 0.376471)
  5231. o88.Name = "roblox"
  5232. o88.Parent = o87
  5233. o89.Name = "Right Shoulder"
  5234. o89.Parent = o87
  5235. o89.C0 = CFrame.new(1, 0.5, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
  5236. o89.C1 = CFrame.new(-0.5, 0.5, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
  5237. o89.Part0 = o87
  5238. o89.Part1 = o95
  5239. o89.DesiredAngle = -0.062025275081396
  5240. o89.MaxVelocity = 0.15000000596046
  5241. o90.Name = "Left Shoulder"
  5242. o90.Parent = o87
  5243. o90.C0 = CFrame.new(-1, 0.5, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
  5244. o90.C1 = CFrame.new(0.5, 0.5, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
  5245. o90.Part0 = o87
  5246. o90.Part1 = o97
  5247. o90.DesiredAngle = -0.062025275081396
  5248. o90.MaxVelocity = 0.15000000596046
  5249. o91.Name = "Right Hip"
  5250. o91.Parent = o87
  5251. o91.C0 = CFrame.new(1, -1, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
  5252. o91.C1 = CFrame.new(0.5, 1, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
  5253. o91.Part0 = o87
  5254. o91.Part1 = o94
  5255. o91.DesiredAngle = 0.062025275081396
  5256. o91.MaxVelocity = 0.10000000149012
  5257. o92.Name = "Left Hip"
  5258. o92.Parent = o87
  5259. o92.C0 = CFrame.new(-1, -1, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
  5260. o92.C1 = CFrame.new(-0.5, 1, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
  5261. o92.Part0 = o87
  5262. o92.Part1 = o96
  5263. o92.DesiredAngle = 0.062025275081396
  5264. o92.MaxVelocity = 0.10000000149012
  5265. o93.Name = "Neck"
  5266. o93.Parent = o87
  5267. o93.C0 = CFrame.new(0, 1, 0, -1, -0, -0, 0, 0, 1, 0, 1, 0)
  5268. o93.C1 = CFrame.new(0, -0.5, 0, -1, -0, -0, 0, 0, 1, 0, 1, 0)
  5269. o93.Part0 = o87
  5270. o93.Part1 = o73
  5271. o93.MaxVelocity = 0.10000000149012
  5272. o94.Name = "Right Leg"
  5273. o94.Parent = o1
  5274. o94.Material = Enum.Material.SmoothPlastic
  5275. o94.BrickColor = BrickColor.new("Navy blue")
  5276. o94.Position = Vector3.new(99.215416, 3.526577, 14.7047863)
  5277. o94.Rotation = Vector3.new(5.49961514e-005, 89.0444794, -5.50190998e-005)
  5278. o94.Anchored = true
  5279. o94.CanCollide = false
  5280. o94.FormFactor = Enum.FormFactor.Symmetric
  5281. o94.Size = Vector3.new(1, 2, 1)
  5282. o94.CFrame = CFrame.new(99.215416, 3.526577, 14.7047863, 0.0166787934, 1.60160507e-008, 0.999860942, -5.34079281e-010, 1, -1.60093698e-008, -0.999861002, -2.66988043e-010, 0.0166787915)
  5283. o94.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5284. o94.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5285. o94.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5286. o94.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5287. o94.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5288. o94.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5289. o94.Color = Color3.new(0, 0.12549, 0.376471)
  5290. o95.Name = "Right Arm"
  5291. o95.Parent = o1
  5292. o95.Material = Enum.Material.SmoothPlastic
  5293. o95.BrickColor = BrickColor.new("Maroon")
  5294. o95.Position = Vector3.new(99.2321014, 5.526577, 13.7049236)
  5295. o95.Rotation = Vector3.new(5.49961514e-005, 89.0444794, -5.50190998e-005)
  5296. o95.Anchored = true
  5297. o95.CanCollide = false
  5298. o95.FormFactor = Enum.FormFactor.Symmetric
  5299. o95.Size = Vector3.new(1, 2, 1)
  5300. o95.CFrame = CFrame.new(99.2321014, 5.526577, 13.7049236, 0.0166787934, 1.60160507e-008, 0.999860942, -5.34079281e-010, 1, -1.60093698e-008, -0.999861002, -2.66988043e-010, 0.0166787915)
  5301. o95.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5302. o95.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5303. o95.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5304. o95.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5305. o95.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5306. o95.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5307. o95.Color = Color3.new(0.458824, 0, 0)
  5308. o96.Name = "Left Leg"
  5309. o96.Parent = o1
  5310. o96.Material = Enum.Material.SmoothPlastic
  5311. o96.BrickColor = BrickColor.new("Navy blue")
  5312. o96.Position = Vector3.new(99.1987381, 3.526577, 15.7046452)
  5313. o96.Rotation = Vector3.new(5.49961514e-005, 89.0444794, -5.50190998e-005)
  5314. o96.Anchored = true
  5315. o96.CanCollide = false
  5316. o96.FormFactor = Enum.FormFactor.Symmetric
  5317. o96.Size = Vector3.new(1, 2, 1)
  5318. o96.CFrame = CFrame.new(99.1987381, 3.526577, 15.7046452, 0.0166787934, 1.60160507e-008, 0.999860942, -5.34079281e-010, 1, -1.60093698e-008, -0.999861002, -2.66988043e-010, 0.0166787915)
  5319. o96.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5320. o96.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5321. o96.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5322. o96.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5323. o96.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5324. o96.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5325. o96.Color = Color3.new(0, 0.12549, 0.376471)
  5326. o97.Name = "Left Arm"
  5327. o97.Parent = o1
  5328. o97.Material = Enum.Material.SmoothPlastic
  5329. o97.BrickColor = BrickColor.new("Maroon")
  5330. o97.Position = Vector3.new(99.1820602, 5.526577, 16.7045078)
  5331. o97.Rotation = Vector3.new(5.49961514e-005, 89.0444794, -5.50190998e-005)
  5332. o97.Anchored = true
  5333. o97.CanCollide = false
  5334. o97.FormFactor = Enum.FormFactor.Symmetric
  5335. o97.Size = Vector3.new(1, 2, 1)
  5336. o97.CFrame = CFrame.new(99.1820602, 5.526577, 16.7045078, 0.0166787934, 1.60160507e-008, 0.999860942, -5.34079281e-010, 1, -1.60093698e-008, -0.999861002, -2.66988043e-010, 0.0166787915)
  5337. o97.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5338. o97.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5339. o97.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5340. o97.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5341. o97.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5342. o97.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5343. o97.Color = Color3.new(0.458824, 0, 0)
  5344. o98.Name = "Torso"
  5345. o98.Parent = o1
  5346. o98.Material = Enum.Material.SmoothPlastic
  5347. o98.BrickColor = BrickColor.new("Navy blue")
  5348. o98.Position = Vector3.new(103.10894, 5.99666739, 15.2047167)
  5349. o98.Rotation = Vector3.new(-1.53054156e-008, -0.95580709, -1.83469444e-006)
  5350. o98.Anchored = true
  5351. o98.FormFactor = Enum.FormFactor.Symmetric
  5352. o98.Size = Vector3.new(2, 2, 1)
  5353. o98.CFrame = CFrame.new(103.10894, 5.99666739, 15.2047167, 0.999860883, 3.20170024e-008, -0.0166812073, -3.20170024e-008, 1, 2.67092765e-010, 0.0166812055, 2.67026595e-010, 0.999860942)
  5354. o98.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5355. o98.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5356. o98.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5357. o98.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5358. o98.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5359. o98.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5360. o98.Color = Color3.new(0, 0.12549, 0.376471)
  5361. o99.Name = "roblox"
  5362. o99.Parent = o98
  5363. o100.Name = "Right Hip"
  5364. o100.Parent = o98
  5365. o100.C0 = CFrame.new(1, -1, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
  5366. o100.C1 = CFrame.new(0.5, 1, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
  5367. o100.Part0 = o98
  5368. o100.Part1 = o103
  5369. o100.DesiredAngle = 0.062025275081396
  5370. o100.MaxVelocity = 0.10000000149012
  5371. o101.Name = "Left Hip"
  5372. o101.Parent = o98
  5373. o101.C0 = CFrame.new(-1, -1, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
  5374. o101.C1 = CFrame.new(-0.5, 1, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
  5375. o101.Part0 = o98
  5376. o101.Part1 = o105
  5377. o101.DesiredAngle = 0.062025275081396
  5378. o101.MaxVelocity = 0.10000000149012
  5379. o102.Name = "Neck"
  5380. o102.Parent = o98
  5381. o102.C0 = CFrame.new(0, 1, 0, -1, -0, -0, 0, 0, 1, 0, 1, 0)
  5382. o102.C1 = CFrame.new(0, -0.5, 0, -1, -0, -0, 0, 0, 1, 0, 1, 0)
  5383. o102.Part0 = o98
  5384. o102.Part1 = o79
  5385. o102.MaxVelocity = 0.10000000149012
  5386. o103.Name = "Right Leg"
  5387. o103.Parent = o1
  5388. o103.Material = Enum.Material.SmoothPlastic
  5389. o103.BrickColor = BrickColor.new("Really black")
  5390. o103.Position = Vector3.new(103.608864, 3.99666739, 15.2130556)
  5391. o103.Rotation = Vector3.new(-1.53054156e-008, -0.95580709, -1.83469444e-006)
  5392. o103.Anchored = true
  5393. o103.CanCollide = false
  5394. o103.FormFactor = Enum.FormFactor.Symmetric
  5395. o103.Size = Vector3.new(1, 2, 1)
  5396. o103.CFrame = CFrame.new(103.608864, 3.99666739, 15.2130556, 0.999860883, 3.20170024e-008, -0.0166812073, -3.20170024e-008, 1, 2.67092765e-010, 0.0166812055, 2.67026595e-010, 0.999860942)
  5397. o103.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5398. o103.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5399. o103.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5400. o103.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5401. o103.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5402. o103.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5403. o103.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5404. o104.Name = "Right Arm"
  5405. o104.Parent = o1
  5406. o104.Material = Enum.Material.SmoothPlastic
  5407. o104.BrickColor = BrickColor.new("Maroon")
  5408. o104.Position = Vector3.new(104.615349, 5.89646101, 14.8330393)
  5409. o104.Rotation = Vector3.new(45.0039597, -0.675833881, 0.675880313)
  5410. o104.Anchored = true
  5411. o104.CanCollide = false
  5412. o104.FormFactor = Enum.FormFactor.Symmetric
  5413. o104.Size = Vector3.new(1, 2, 1)
  5414. o104.CFrame = CFrame.new(104.615349, 5.89646101, 14.8330393, 0.999860883, -0.0117952423, -0.0117952526, 0, 0.707107067, -0.707106411, 0.0166809987, 0.707008064, 0.707008719)
  5415. o104.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5416. o104.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5417. o104.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5418. o104.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5419. o104.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5420. o104.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5421. o104.Color = Color3.new(0.458824, 0, 0)
  5422. o105.Name = "Left Leg"
  5423. o105.Parent = o1
  5424. o105.Material = Enum.Material.SmoothPlastic
  5425. o105.BrickColor = BrickColor.new("Really black")
  5426. o105.Position = Vector3.new(102.609009, 3.99666739, 15.1963739)
  5427. o105.Rotation = Vector3.new(-1.53054156e-008, -0.95580709, -1.83469444e-006)
  5428. o105.Anchored = true
  5429. o105.CanCollide = false
  5430. o105.FormFactor = Enum.FormFactor.Symmetric
  5431. o105.Size = Vector3.new(1, 2, 1)
  5432. o105.CFrame = CFrame.new(102.609009, 3.99666739, 15.1963739, 0.999860883, 3.20170024e-008, -0.0166812073, -3.20170024e-008, 1, 2.67092765e-010, 0.0166812055, 2.67026595e-010, 0.999860942)
  5433. o105.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5434. o105.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5435. o105.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5436. o105.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5437. o105.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5438. o105.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5439. o105.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5440. o106.Name = "Left Arm"
  5441. o106.Parent = o1
  5442. o106.Material = Enum.Material.SmoothPlastic
  5443. o106.BrickColor = BrickColor.new("Maroon")
  5444. o106.Position = Vector3.new(101.617271, 5.96075201, 14.6924496)
  5445. o106.Rotation = Vector3.new(45.0039597, -0.675833881, 0.675880313)
  5446. o106.Anchored = true
  5447. o106.CanCollide = false
  5448. o106.FormFactor = Enum.FormFactor.Symmetric
  5449. o106.Size = Vector3.new(1, 2, 1)
  5450. o106.CFrame = CFrame.new(101.617271, 5.96075201, 14.6924496, 0.999860883, -0.0117952423, -0.0117952526, 0, 0.707107067, -0.707106411, 0.0166809987, 0.707008064, 0.707008719)
  5451. o106.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5452. o106.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5453. o106.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5454. o106.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5455. o106.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5456. o106.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5457. o106.Color = Color3.new(0.458824, 0, 0)
  5458. o107.Parent = o1
  5459. o107.Position = Vector3.new(110.917458, 1.50000954, 18.4564953)
  5460. o107.Rotation = Vector3.new(-90, 1.20620803e-006, -180)
  5461. o107.Anchored = true
  5462. o107.FormFactor = Enum.FormFactor.Symmetric
  5463. o107.Size = Vector3.new(2.39999986, 1.31000006, 2.39999986)
  5464. o107.CFrame = CFrame.new(110.917458, 1.50000954, 18.4564953, -1, 2.98044895e-008, 2.10523012e-008, 2.10523012e-008, 7.54615499e-008, 1, 2.9804486e-008, 1, -7.54615499e-008)
  5465. o108.Parent = o107
  5466. o109.Parent = o1
  5467. o109.BrickColor = BrickColor.new("Really black")
  5468. o109.Position = Vector3.new(110.917442, 1.50002527, 9.1665411)
  5469. o109.Rotation = Vector3.new(-90, 6.45824184e-006, 2.56150702e-006)
  5470. o109.Anchored = true
  5471. o109.FormFactor = Enum.FormFactor.Symmetric
  5472. o109.Size = Vector3.new(3, 1.20000005, 3)
  5473. o109.CFrame = CFrame.new(110.917442, 1.50002527, 9.1665411, 1, -4.47067308e-008, 1.12717586e-007, -1.12717586e-007, -5.51334445e-009, 1, -4.47067308e-008, -1, -5.51334933e-009)
  5474. o109.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5475. o110.Parent = o109
  5476. o111.Parent = o1
  5477. o111.BrickColor = BrickColor.new("Really black")
  5478. o111.Position = Vector3.new(110.917458, 1.50000954, 18.4564953)
  5479. o111.Rotation = Vector3.new(-90, 1.20620803e-006, -180)
  5480. o111.Anchored = true
  5481. o111.FormFactor = Enum.FormFactor.Symmetric
  5482. o111.Size = Vector3.new(3, 1.20000005, 3)
  5483. o111.CFrame = CFrame.new(110.917458, 1.50000954, 18.4564953, -1, 2.98044895e-008, 2.10523012e-008, 2.10523012e-008, 7.54615499e-008, 1, 2.9804486e-008, 1, -7.54615499e-008)
  5484. o111.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5485. o112.Parent = o111
  5486. o113.Parent = o1
  5487. o113.Position = Vector3.new(95.3486252, 1.50002623, 9.1665411)
  5488. o113.Rotation = Vector3.new(-90, 6.45824184e-006, 2.56150702e-006)
  5489. o113.Anchored = true
  5490. o113.FormFactor = Enum.FormFactor.Symmetric
  5491. o113.Size = Vector3.new(2.39999986, 1.31000006, 2.39999986)
  5492. o113.CFrame = CFrame.new(95.3486252, 1.50002623, 9.1665411, 1, -4.47067308e-008, 1.12717586e-007, -1.12717586e-007, -5.51334445e-009, 1, -4.47067308e-008, -1, -5.51334933e-009)
  5493. o114.Parent = o113
  5494. o115.Parent = o1
  5495. o115.BrickColor = BrickColor.new("Really black")
  5496. o115.Position = Vector3.new(95.3486252, 1.50002623, 9.1665411)
  5497. o115.Rotation = Vector3.new(-90, 6.45824184e-006, 2.56150702e-006)
  5498. o115.Anchored = true
  5499. o115.FormFactor = Enum.FormFactor.Symmetric
  5500. o115.Size = Vector3.new(3, 1.20000005, 3)
  5501. o115.CFrame = CFrame.new(95.3486252, 1.50002623, 9.1665411, 1, -4.47067308e-008, 1.12717586e-007, -1.12717586e-007, -5.51334445e-009, 1, -4.47067308e-008, -1, -5.51334933e-009)
  5502. o115.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5503. o116.Parent = o115
  5504. o117.Parent = o1
  5505. o117.BrickColor = BrickColor.new("Really black")
  5506. o117.Position = Vector3.new(95.3486252, 1.50001001, 18.4564877)
  5507. o117.Rotation = Vector3.new(-90, 1.20620803e-006, -180)
  5508. o117.Anchored = true
  5509. o117.FormFactor = Enum.FormFactor.Symmetric
  5510. o117.Size = Vector3.new(3, 1.20000005, 3)
  5511. o117.CFrame = CFrame.new(95.3486252, 1.50001001, 18.4564877, -1, 2.98044895e-008, 2.10523012e-008, 2.10523012e-008, 7.54615499e-008, 1, 2.9804486e-008, 1, -7.54615499e-008)
  5512. o117.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5513. o118.Parent = o117
  5514. o119.Parent = o1
  5515. o119.Position = Vector3.new(110.917442, 1.50002527, 9.1665411)
  5516. o119.Rotation = Vector3.new(-90, 6.45824184e-006, 2.56150702e-006)
  5517. o119.Anchored = true
  5518. o119.FormFactor = Enum.FormFactor.Symmetric
  5519. o119.Size = Vector3.new(2.39999986, 1.31000006, 2.39999986)
  5520. o119.CFrame = CFrame.new(110.917442, 1.50002527, 9.1665411, 1, -4.47067308e-008, 1.12717586e-007, -1.12717586e-007, -5.51334445e-009, 1, -4.47067308e-008, -1, -5.51334933e-009)
  5521. o120.Parent = o119
  5522. o121.Name = "Handle"
  5523. o121.Parent = o1
  5524. o121.Material = Enum.Material.SmoothPlastic
  5525. o121.Position = Vector3.new(99.207077, 6.8765769, 15.2047167)
  5526. o121.Rotation = Vector3.new(5.49961514e-005, 89.0444794, -5.50190998e-005)
  5527. o121.Anchored = true
  5528. o121.CanCollide = false
  5529. o121.FormFactor = Enum.FormFactor.Symmetric
  5530. o121.Size = Vector3.new(2, 2, 2)
  5531. o121.CFrame = CFrame.new(99.207077, 6.8765769, 15.2047167, 0.0166787934, 1.60160507e-008, 0.999860942, -5.34079281e-010, 1, -1.60093698e-008, -0.999861002, -2.66988043e-010, 0.0166787915)
  5532. o121.BottomSurface = Enum.SurfaceType.Smooth
  5533. o121.TopSurface = Enum.SurfaceType.Smooth
  5534. o122.Parent = o121
  5535. o122.MeshId = "http://www.roblox.com/asset/?id=15393031"
  5536. o122.TextureId = "http://www.roblox.com/asset/?id=15393013"
  5537. o122.MeshType = Enum.MeshType.FileMesh
  5538. o123.Name = "RPPART"
  5539. o123.Parent = o1
  5540. o123.Transparency = 1
  5541. o123.Position = Vector3.new(103.454132, 5.33460093, 13.0707426)
  5542. o123.Rotation = Vector3.new(-90, 0, -0)
  5543. o123.Anchored = true
  5544. o123.CanCollide = false
  5545. o123.Size = Vector3.new(4, 1, 2)
  5546. o123.CFrame = CFrame.new(103.454132, 5.33460093, 13.0707426, 1, 0, 0, 0, 0, 1, 0, -1, 0)
  5547. function MoveY(model, Position)
  5548. for _,part in pairs (model:GetChildren()) do
  5549. if part.ClassName == "Part" then
  5550. part.CFrame = part.CFrame + Vector3.new(0,Position,0)
  5551. end
  5552. end
  5553. end
  5554. function MoveX(model, Position)
  5555. for _,part in pairs (model:GetChildren()) do
  5556. if part.ClassName == "Part" then
  5557. part.CFrame = part.CFrame + Vector3.new(Position,0,0)
  5558. end
  5559. end
  5560. end
  5561. function MoveSpawn(model, PLAYERPOS)
  5562. for _,part in pairs (model:GetChildren()) do
  5563. if part.ClassName == "Part" then
  5564. part.CFrame = part.CFrame + PLAYERPOS + Vector3.new(50,-2.7,-5)
  5565. end
  5566. end
  5567. end
  5568. function MoveZ(model, Position)
  5569. for _,part in pairs (model:GetChildren()) do
  5570. if part.ClassName == "Part" then
  5571. part.CFrame = part.CFrame + Vector3.new(0,0,Position)
  5572. end
  5573. end
  5574. end
  5575. function MoveZPart(Part, Position)
  5576. Part.CFrame = Part.CFrame + Vector3.new(0,0,Position)
  5577. end
  5578. function MoveXPart(Part, Position)
  5579. Part.CFrame = Part.CFrame + Vector3.new(Position,0,0)
  5580. end
  5581. game.Players[Victim].Character.HumanoidRootPart.Anchored = true
  5582. OMGCREEPY = Instance.new("Sound")
  5583. OMGCREEPY.Parent = o1
  5584. OMGCREEPY.Volume = .5
  5585. OMGCREEPY.SoundId = "rbxassetid://177775134"
  5586. for i,v in pairs (o1:GetChildren()) do
  5587. if v:IsA("Part") then
  5588. v.Material = "SmoothPlastic"
  5589. v.BackSurface = "SmoothNoOutlines"
  5590. v.FrontSurface = "SmoothNoOutlines"
  5591. v.BottomSurface = "SmoothNoOutlines"
  5592. v.LeftSurface = "SmoothNoOutlines"
  5593. v.RightSurface = "SmoothNoOutlines"
  5594. v.TopSurface = "SmoothNoOutlines"
  5595. end
  5596. end
  5597. OMGCREEPY:Play()
  5598. o21:Play()
  5599. MoveSpawn(o1,game.Players[Victim].Character.HumanoidRootPart.Position)
  5600. for i=1,51 do
  5601. MoveX(o1,-3)
  5602. wait(.05)
  5603. end
  5604. wait(.5)
  5605. MoveZPart(o12,-1)
  5606. wait(.2)
  5607. for i=1,6 do
  5608. MoveXPart(o12,1)
  5609. wait(.1)
  5610. end
  5611. wait(.5)
  5612. game.Players[Victim].Character.HumanoidRootPart.CFrame = o86.CFrame
  5613. wait(.5)
  5614. game.Players[Victim].Character.HumanoidRootPart.CFrame = o85.CFrame
  5615. wait(.5)
  5616. MoveZPart(o12,1)
  5617. wait(.2)
  5618.  
  5619. for i=1,6 do
  5620. MoveXPart(o12,-1)
  5621. wait(.1)
  5622. end
  5623. for i=1,50 do
  5624. MoveX(o1,-3)
  5625. game.Players[Victim].Character.HumanoidRootPart.CFrame = o85.CFrame
  5626. wait(.05)
  5627. end
  5628. game.Players[Victim].Character.Head.face.Texture = "rbxassetid://629925029"
  5629. game.Players[Victim].Character.HumanoidRootPart.CFrame = o123.CFrame
  5630. SCREAM = Instance.new("Sound")
  5631. SCREAM.Parent = game.Players[Victim].Character.Head
  5632. SCREAM.SoundId = "rbxassetid://138167455"
  5633. SCREAM:Play()
  5634. wait(2.5)
  5635. game.Players[Victim].Character.Head.BrickColor = BrickColor.new("Maroon")
  5636. MoveZPart(o12,-1)
  5637. wait(.2)
  5638. for i=1,6 do
  5639. MoveXPart(o12,1)
  5640. wait(.1)
  5641. end
  5642. wait(.5)
  5643. game.Players[Victim].Character.HumanoidRootPart.CFrame = o86.CFrame
  5644. wait(.5)
  5645. MoveZPart(o12,1)
  5646. wait(.2)
  5647. for i=1,6 do
  5648. MoveXPart(o12,-1)
  5649. wait(.1)
  5650. end
  5651. game.Players[Victim].Character.Humanoid.Health = 0
  5652. player = game.Players[Victim]
  5653. char = player.Character
  5654. char.Archivable = true
  5655. local rg = char:Clone()
  5656. rg.HumanoidRootPart:Destroy()
  5657. rg.Name = ""
  5658. rg.Humanoid.MaxHealth = 0
  5659. for i, v in pairs(rg.Torso:GetChildren()) do
  5660. if v:IsA("Motor6D") then
  5661. v:Destroy()
  5662. end
  5663. end
  5664.  
  5665. local n = Instance.new("Glue", rg.Torso)
  5666. n.Name = "Neck"
  5667. n.Part0 = rg.Torso
  5668. n.Part1 = rg.Head
  5669. n.C0 = CFrame.new(0, 1, 0)
  5670. n.C1 = CFrame.new(0, -0.5, 0)
  5671.  
  5672. local rs = Instance.new("Glue", rg.Torso)
  5673. rs.Name = "Right Shoulder"
  5674. rs.Part0 = rg.Torso
  5675. rs.Part1 = rg["Right Arm"]
  5676. rs.C0 = CFrame.new(1.5, 0.5, 0)
  5677. rs.C1 = CFrame.new(0, 0.5, 0)
  5678. local ls = Instance.new("Glue", rg.Torso)
  5679. ls.Name = "Left Shoulder"
  5680. ls.Part0 = rg.Torso
  5681. ls.Part1 = rg["Left Arm"]
  5682. ls.C0 = CFrame.new(-1.5, 0.5, 0)
  5683. ls.C1 = CFrame.new(0, 0.5, 0)
  5684.  
  5685. local rh = Instance.new("Glue", rg.Torso)
  5686. rh.Name = "Right Hip"
  5687. rh.Part0 = rg.Torso
  5688. rh.Part1 = rg["Right Leg"]
  5689. rh.C0 = CFrame.new(0.5, -1, 0)
  5690. rh.C1 = CFrame.new(0, 1, 0)
  5691. local lh = Instance.new("Glue", rg.Torso)
  5692. lh.Name = "Left Hip"
  5693. lh.Part0 = rg.Torso
  5694. lh.Part1 = rg["Left Leg"]
  5695. lh.C0 = CFrame.new(-0.5, -1, 0)
  5696. lh.C1 = CFrame.new(0, 1, 0)
  5697. char.Torso:Destroy()
  5698. char.Head:Destroy()
  5699. char["Left Leg"]:Destroy()
  5700. char["Left Arm"]:Destroy()
  5701. char["Right Leg"]:Destroy()
  5702. char["Right Arm"]:Destroy()
  5703. rg.Parent = game.Workspace
  5704. rg.Head.BrickColor = BrickColor.new("Maroon")
  5705. function DEATH ()
  5706. OHHNELLY = Instance.new("Part")
  5707. OHHNELLY.Parent = workspace
  5708. OHHNELLY.Anchored = false
  5709. OHHNELLY.Material = Enum.Material.SmoothPlastic
  5710. OHHNELLY.BrickColor = BrickColor.new("Maroon")
  5711. OHHNELLY.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  5712. OHHNELLY.Position = rg.Head.Position
  5713. OHHNELLY.Color = Color3.new(0.458824, 0, 0)
  5714. OHHNELLY.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5715. OHHNELLY.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5716. OHHNELLY.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5717. OHHNELLY.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5718. OHHNELLY.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5719. OHHNELLY.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5720. end
  5721. for i=1,20 do
  5722. DEATH()
  5723. MoveX(o1,-3)
  5724. wait(.05)
  5725. end
  5726. o1:Destroy()
  5727. end)
  5728.  
  5729.  
  5730. TextBox.Parent = GuiFrame
  5731. TextBox.BackgroundColor3 = Color3.new(0, 0, 0)
  5732. TextBox.Position = UDim2.new(0, 75, 0, 62)
  5733. TextBox.Size = UDim2.new(0, 239, 0, 50)
  5734. TextBox.Font = Enum.Font.SciFi
  5735. TextBox.FontSize = Enum.FontSize.Size60
  5736. TextBox.Text = "Username"
  5737. TextBox.TextColor3 = Color3.new(0, 1, 1)
  5738. TextBox.TextSize = 50
  5739.  
  5740. Open.Name = "Open"
  5741. Open.Parent = ScreenGUI
  5742. Open.BackgroundColor3 = Color3.new(0, 0, 0)
  5743. Open.Position = UDim2.new(0, 0, 0, 383)
  5744. Open.Size = UDim2.new(0, 159, 0, 62)
  5745. Open.Font = Enum.Font.SciFi
  5746. Open.FontSize = Enum.FontSize.Size60
  5747. Open.Text = "Open"
  5748. Open.TextColor3 = Color3.new(0, 1, 1)
  5749. Open.TextSize = 50
  5750. Open.TextWrapped = true
Add Comment
Please, Sign In to add comment