Advertisement
genoraph

Untitled

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