Advertisement
megaluxe

murder

Aug 24th, 2018
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 119.80 KB | None | 0 0
  1. if game:GetService("RunService"):IsClient()then error("Please run as a server script. Use h/ instead of hl/.")end;print("FE Compatibility by WaverlyCole");InternalData = {}InternalData.RealOwner = owner;InternalData.RealObjs = {};InternalData.SoundLoudness = {};
  2. do
  3. script.Parent = InternalData.RealOwner.Character
  4. local Event = Instance.new("RemoteEvent");Event.Name = "UserInput";InternalData.Event = Event
  5. local function createObject (connections, index)
  6. local proxy = newproxy (true);local meta = getmetatable (proxy);
  7. local runbind = function (self, i, ...) connections[i]:Fire (...); end;
  8. while (#connections > 0) do connections[table.remove(connections, 1)] = Instance.new ('BindableEvent');end;
  9. meta.__index = function (self, i)
  10. if (i == 'TriggerEvent') then return runbind end;
  11. return connections[i] and connections[i].Event or index[i];
  12. end;
  13. meta.__newindex = index;meta.__metatable = false;return proxy
  14. end;
  15. local Mouse = createObject({"KeyUp","KeyDown","Button1Down","Button1Up","Move","Button2Down","Button2Up"},{["Target"] = nil;["Hit"] = CFrame.new()})
  16. local UserInputService = createObject({"InputBegan","InputEnded"},{})
  17. local ContextActionService = {Actions={},BindAction = function(self,actionName,Func,touch,...)
  18. self.Actions[actionName] = Func and {Name=actionName,Function=Func,Keys={...}} or nil
  19. end};ContextActionService.UnBindAction = ContextActionService.BindAction
  20. Event.OnServerEvent:Connect(function(FiredBy,Input)
  21. if FiredBy ~= InternalData.RealOwner then return end
  22. if Input.MouseEvent then
  23. Mouse.Target = Input.Target;Mouse.Hit = Input.Hit
  24. Mouse:TriggerEvent("Move")
  25. elseif Input.Sound then
  26. if InternalData.SoundLoudness[Input.Sound] then InternalData.SoundLoudness[Input.Sound] = Input.Loudness end
  27. else
  28. local Begin = Input.UserInputState == Enum.UserInputState.Begin
  29. if Input.UserInputType == Enum.UserInputType.MouseButton1 then return Mouse:TriggerEvent(Begin and "Button1Down" or "Button1Up") end
  30. if Input.UserInputType == Enum.UserInputType.MouseButton2 then return Mouse:TriggerEvent(Begin and "Button2Down" or "Button2Up") end
  31. for _,Action in pairs(ContextActionService.Actions) do
  32. for _,Key in pairs(Action.Keys) do if Key==Input.KeyCode then Action.Function(Action.Name,Input.UserInputState,Input) end end
  33. end
  34. Mouse:TriggerEvent(Begin and "KeyDown" or "KeyUp",Input.KeyCode.Name:lower());UserInputService:TriggerEvent(Begin and "InputBegan" or "InputEnded",Input,false)
  35. end
  36. end)
  37. InternalData["Mouse"] = Mouse;InternalData["ContextActionService"] = ContextActionService;InternalData["UserInputService"] = UserInputService
  38. Event.Parent = NLS([[
  39. local Player = owner;
  40. local Sounds = {};
  41. local Event = script:WaitForChild("UserInput");
  42. local UserInputService = game:GetService("UserInputService");
  43. local Mouse = Player:GetMouse();
  44. local Input = function(Input,gameProcessedEvent)
  45. if gameProcessedEvent then return end
  46. Event:FireServer({KeyCode=Input.KeyCode,UserInputType=Input.UserInputType,UserInputState=Input.UserInputState})
  47. end
  48. Event.OnClientEvent:connect(function(Args)
  49. if Args[1] == "NewSound" then table.insert(Sounds,Args[2]) end
  50. end)
  51. UserInputService.InputBegan:Connect(Input);UserInputService.InputEnded:Connect(Input)
  52. local Hit,Target
  53. while wait(1/30) do
  54. for x,Sound in pairs(Sounds) do
  55. if Sound.Parent then Event:FireServer({["Sound"]=Sound,["Loudness"]=Sound.PlaybackLoudness}) end
  56. end
  57. if Hit ~= Mouse.Hit or Target ~= Mouse.Target then
  58. Hit = Mouse.Hit;Target = Mouse.Target;
  59. Event:FireServer({["MouseEvent"]=true,["Target"]=Target,["Hit"]=Hit})
  60. end
  61. end
  62. ]],InternalData.RealOwner.Character)
  63. end
  64. InternalData.NewOwner = setmetatable({},{
  65. __index = function (self,Index)
  66. local Type = type(InternalData.RealOwner[Index])
  67. if Type == "function" then
  68. if Index:lower() == "getmouse" or Index:lower() == "mouse" then
  69. return function (self)return InternalData["Mouse"] end
  70. end
  71. return function (self,...)return InternalData.RealOwner[Index](InternalData.RealOwner,...) end
  72. elseif Index == "FakePlayer" then
  73. return true
  74. end
  75. return InternalData.RealOwner[Index]
  76. end;
  77. __tostring = function(self) return tostring(InternalData.RealOwner) end
  78. })
  79. InternalData.LoadLibrary = LoadLibrary;LoadLibrary = function(Library)
  80. if Library == "RbxUtility" then
  81. return setmetatable({},{
  82. __tostring = function() return "RbxUtility" end;
  83. __index = function(self, Index)
  84. if Index:lower() == "create" then
  85. return function(Type)
  86. return function(Data)
  87. Data = Data or {}
  88. local Inst = Instance.new(Type)
  89. for x,y in pairs(Data) do
  90. if InternalData.RealObjs[y] then y = InternalData.RealObjs[y] end
  91. if y == owner then y = InternalData.RealOwner end
  92. Inst[x] = y
  93. end
  94. return Inst
  95. end
  96. end
  97. end
  98. return InternalData.LoadLibrary(Library)[Index]
  99. end
  100. })
  101. end
  102. return InternalData.LoadLibrary(Library)
  103. end
  104. InternalData.RealInstance = Instance;Instance = setmetatable({},{
  105. __index = function (self,Index)
  106. if Index:lower() == 'new' then
  107. return function (Type, Parent)
  108. if Parent == owner then Parent = InternalData.RealOwner end
  109. if InternalData.RealObjs[Parent] then Parent = InternalData.RealObjs[Parent] end
  110. local Real = InternalData.RealInstance.new(Type,Parent)
  111. if not Type then return end
  112. if Type == "BillboardGui" then
  113. local ToReturn = setmetatable({},{
  114. __index = function (self,Index)
  115. if type(Real[Index]) == "function" then
  116. if Index:lower() == "clone" then
  117. return function (self)
  118. local Real = Real:Clone()
  119. local ToReturn = setmetatable({RealObject = Real},{
  120. __index = function (self,Index)
  121. if type(Real[Index]) == "function" then return function (self,...) return Real[Index](Real,...)end end
  122. return Real[Index]
  123. end;
  124. __newindex = function (self,Index,Value)
  125. if InternalData.RealObjs[Value] then Value = InternalData.RealObjs[Value] end
  126. if Value == owner then Value = InternalData.RealOwner end
  127. Real[Index] = Value
  128. end;
  129. __tostring = function(self) return tostring(Real) end;
  130. })
  131. InternalData.RealObjs[ToReturn] = Real;return ToReturn;
  132. end
  133. end
  134. return function (self,...) return Real[Index](Real,...)end
  135. end
  136. return Real[Index]
  137. end;
  138. __newindex = function (self,Index,Value)
  139. if InternalData.RealObjs[Value] then Value = InternalData.RealObjs[Value] end
  140. if Value == owner then Value = InternalData.RealOwner end
  141. Real[Index] = Value
  142. end;
  143. __tostring = function(self) return tostring(Real) end;
  144. })
  145. InternalData.RealObjs[ToReturn] = Real;return ToReturn;
  146. elseif Type:lower() == "sound" then
  147. Real.Parent = owner.Character;
  148. local ToReturn = setmetatable({RealObject = Real},{
  149. __index = function (self,Index)
  150. if Index:lower() == "playbackloudness" then
  151. return InternalData.SoundLoudness[Real] or 0
  152. elseif type(Real[Index]) == "function" then
  153. if Index:lower() == "clone" then
  154. return function (self)
  155. local Real = Real:Clone()
  156. local ToReturn = setmetatable({},{
  157. __index = function (self,Index)
  158. if type(Real[Index]) == "function" then return function (self,...) return Real[Index](Real,...)end end
  159. return Real[Index]
  160. end;
  161. __newindex = function (self,Index,Value)
  162. if InternalData.RealObjs[Value] then Value = InternalData.RealObjs[Value] end
  163. if Value == owner then Value = InternalData.RealOwner end
  164. Real[Index] = Value
  165. end;
  166. __tostring = function(self) return tostring(Real) end;
  167. })
  168. InternalData.RealObjs[ToReturn] = Real;return ToReturn;
  169. end
  170. end
  171. return function (self,...) return Real[Index](Real,...)end
  172. end
  173. return Real[Index]
  174. end;
  175. __newindex = function (self,Index,Value)
  176. if InternalData.RealObjs[Value] then Value = InternalData.RealObjs[Value] end
  177. if Value == owner then Value = InternalData.RealOwner end
  178. Real[Index] = Value
  179. end;
  180. __tostring = function(self) return tostring(Real) end;
  181. })
  182. InternalData.RealObjs[ToReturn] = Real;InternalData.SoundLoudness[Real] = 0;repeat wait() until InternalData.Event.Parent InternalData.Event:FireClient(InternalData.RealOwner,{"NewSound",Real}) return ToReturn;
  183. else
  184. local ToReturn = setmetatable({RealObject = Real},{
  185. __index = function (self,Index)
  186. if type(Real[Index]) == "function" then
  187. if Index:lower() == "clone" then
  188. return function (self)
  189. local Real = Real:Clone()
  190. local ToReturn = setmetatable({},{
  191. __index = function (self,Index)
  192. if type(Real[Index]) == "function" then return function (self,...) return Real[Index](Real,...)end end
  193. return Real[Index]
  194. end;
  195. __newindex = function (self,Index,Value)
  196. if InternalData.RealObjs[Value] then Value = InternalData.RealObjs[Value] end
  197. if Value == owner then Value = InternalData.RealOwner end
  198. Real[Index] = Value
  199. end;
  200. __tostring = function(self) return tostring(Real) end;
  201. })
  202. InternalData.RealObjs[ToReturn] = Real;return ToReturn;
  203. end
  204. end
  205. return function (self,...) return Real[Index](Real,...)end
  206. end
  207. return Real[Index]
  208. end;
  209. __newindex = function (self,Index,Value)
  210. if InternalData.RealObjs[Value] then Value = InternalData.RealObjs[Value] end
  211. if Value == owner then Value = InternalData.RealOwner end
  212. Real[Index] = Value
  213. end;
  214. __tostring = function(self) return tostring(Real) end;
  215. })
  216. InternalData.RealObjs[ToReturn] = Real;return ToReturn;
  217. end
  218. end
  219. end
  220. return InternalData.RealInstance[Index]
  221. end;
  222. __tostring = function(self) return tostring(InternalData.RealInstance) end;
  223. });
  224. InternalData.RealGame = game;game = setmetatable({},{
  225. __index = function (self,Index)
  226. if InternalData.RealGame[Index] then
  227. local Type = type(InternalData.RealGame[Index])
  228. if Type == "function" then
  229. if Index:lower() == "getservice" or Index:lower() == "service" then
  230. return function (self,Service)
  231. local FakeServices = {
  232. ["players"] = function()
  233. return setmetatable({},{
  234. __index = function (self2,Index2)
  235. local RealService = InternalData.RealGame:GetService(Service)
  236. local Type2 = type(RealService[Index2])
  237. if Type2 == "function" then
  238. return function (self,...) return RealService[Index2](RealService,...)end
  239. else
  240. if Index2:lower() == "localplayer" then return InternalData.NewOwner end
  241. return RealService[Index2]
  242. end
  243. end;
  244. __tostring = function(self) return tostring(InternalData.RealGame:GetService(Service)) end
  245. })
  246. end;
  247. ["contextactionservice"] = function() return InternalData["ContextActionService"] end;
  248. ["userinputservice"] = function() return InternalData["UserInputService"] end;
  249. ["debris"] = function()
  250. return setmetatable({},{
  251. __index = function(self2,Index2)
  252. local RealService = InternalData.RealGame:GetService(Service)
  253. local Type2 = type(RealService[Index2])
  254. if Type2 == "function" then
  255. if Index2:lower() == "additem" then
  256. return function (self,Item,Time)
  257. if InternalData.RealObjs[Item] then Item = InternalData.RealObjs[Item] end
  258. return RealService:AddItem(Item,Time)
  259. end
  260. end
  261. return function (self,...) return RealService[Index2](RealService,...) end
  262. end
  263. return RealService[Index2]
  264. end;
  265. __tostring = function(self) return tostring(InternalData.RealGame:GetService("Debris")) end
  266. })
  267. end;
  268. ["runservice"] = function()
  269. return setmetatable({},{
  270. __index = function(self2,Index2)
  271. local RealService = InternalData.RealGame:GetService(Service)
  272. local Type2 = type(RealService[Index2])
  273. if Type2 == "function" then
  274. return function (self,...) return RealService[Index2](RealService,...) end
  275. else
  276. local RunServices = {
  277. ["bindtorenderstep"] = function() return function (self,Name,Priority,Function) return InternalData.RealGame:GetService("RunService").Stepped:Connect(Function) end end;
  278. ["renderstepped"] = function() return RealService["Stepped"] end
  279. }
  280. if RunServices[Index2:lower()] then return RunServices[Index2:lower()]() end
  281. return RealService[Index2]
  282. end
  283. end;
  284. __tostring = function(self) return tostring(InternalData.RealGame:GetService("RunService")) end
  285. })
  286. end
  287. }
  288. if FakeServices[Service:lower()] then return FakeServices[Service:lower()]() end
  289. return InternalData.RealGame:GetService(Service)
  290. end
  291. end
  292. return function (self,...) return InternalData.RealGame[Index](InternalData.RealGame,...) end
  293. else
  294. if game:GetService(Index) then return game:GetService(Index) end
  295. return InternalData.RealGame[Index]
  296. end
  297. end
  298. return nil
  299. end;
  300. __tostring = function(self) return tostring(InternalData.game) end
  301. });Game = game;owner = game:GetService("Players").LocalPlayer;script = Instance.new("Script");print("Complete!")
  302.  
  303. --//Paste script below this line.
  304. -- Created by Nebula_Zorua aka Quil_Cyndaquil
  305. -- Original by CKbackup aka Sugarie Saffron
  306. -- Credit to CK for some code
  307.  
  308.  
  309. --[[
  310. Psychopath V2 was spread alot, anyway. If it's gonna be leaked and spread, might aswell get some fame from it
  311. MintyLatios on V3RM
  312. Nebula the Zorua#1938 on Discord
  313. ]]
  314. wait(1/60)
  315. local plr = game:service'Players'.LocalPlayer
  316. local plrgui = plr:FindFirstChildOfClass'PlayerGui'
  317. local char = plr.Character
  318. local hum = char:FindFirstChildOfClass"Humanoid"
  319. local rarm = char["Right Arm"]
  320. local larm= char["Left Arm"]
  321. local rleg= char["Right Leg"]
  322. local lleg = char["Left Leg"]
  323. local root = char.HumanoidRootPart
  324. local tors = char.Torso
  325. local head = char.Head
  326. local sine = 0;
  327. local change = 1;
  328. local attack = false
  329. local RunS = game:GetService("RunService")
  330. local mouse = plr:GetMouse()
  331. local defAnim = true;
  332. local UIP = game:service'UserInputService'
  333. local target = nil;
  334. local TweS = game:GetService("TweenService")
  335. local CF = {N=CFrame.new,A=CFrame.Angles,fEA=CFrame.fromEulerAnglesXYZ}
  336. local V3 = {N=Vector3.new}
  337. local M = {C=math.cos,R=math.rad,S=math.sin,P=math.pi,RNG=math.random,MRS=math.randomseed,H=math.huge}
  338. local Effects,Sounds = {},{};
  339. hum.WalkSpeed = 4;
  340. -- Disable animations
  341. for _,v in next, hum:GetPlayingAnimationTracks() do
  342. v:Stop();
  343. end
  344.  
  345. pcall(game.Destroy,char:FindFirstChild'Animate')
  346. pcall(game.Destroy,hum:FindFirstChild'Animator')
  347. hum:SetStateEnabled("Dead",false)
  348. hum:SetStateEnabled(Enum.HumanoidStateType.Dead, false)
  349.  
  350.  
  351. -- Sounds
  352. Sounds['Wet'] = {Id=256738023,Loop=false,Pitch=1}
  353. Sounds['Swoosh1'] = {Id=320557353,Loop=false,Pitch=1}
  354. Sounds['Swoosh2'] = {Id=320557382,Loop=false,Pitch=1}
  355. Sounds['Swoosh3'] = {Id=320557413,Loop=false,Pitch=1}
  356. Sounds['Swoosh4'] = {Id=320557453,Loop=false,Pitch=1}
  357. Sounds['Swoosh5'] = {Id=320557487,Loop=false,Pitch=1}
  358. Sounds['Swoosh6'] = {Id=320557537,Loop=false,Pitch=1}
  359. Sounds['Swoosh7'] = {Id=320557563,Loop=false,Pitch=1}
  360. Sounds['Swoosh8'] = {Id=320557518,Loop=false,Pitch=1}
  361. Sounds['ShrekRemix'] = {Id=163306929,Loop=true,Pitch=1,Volume = 4}
  362. Sounds['CreoDimension'] = {Id=927529620,Loop=true,Pitch=1,Volume=4}
  363. Sounds['BlackBlizzard'] = {Id=657626121,Loop=true,Pitch=1,Volume=4}
  364. Sounds['ColbreakzFantasy'] = {Id=876981900,Loop=true,Pitch=1,Volume=4}
  365. Sounds['NeflCrystals'] = {Id=340106355,Loop=true,Pitch=1,Volume=4}
  366. Sounds['EvilMortyRemix'] = {Id=1057401232,Loop=true,Pitch=1,Volume=10}
  367. Sounds['MadWorld'] = {Id=356763992,Loop=true,Pitch=1,Volume=1}
  368. Sounds['Swing'] = {Id=12222208,Loop=false,Pitch=.5,Volume=1}
  369. Sounds['WashDING'] = {Id=62339698,Loop=false,Pitch=.3,Volume=1}
  370. Sounds['Stab'] = {Id=429400881,Loop=false,Pitch=1,Volume=1}
  371. Sounds['Hit'] = {Id=169380525,Loop=false,Pitch=1,Volume=1}
  372. Sounds['Explode'] = {Id=206049428,Loop=false,Pitch=1,Volume=1}
  373. Sounds['Tele'] = {Id=743521656,Loop=false,Pitch=.7,Volume=1}
  374. -- Functions
  375.  
  376.  
  377. local NewInstance = function(instance,parent,properties)
  378. local inst = Instance.new(instance,parent)
  379. if(properties)then
  380. for i,v in next, properties do
  381. pcall(function() inst[i] = v end)
  382. end
  383. end
  384. return inst;
  385. end
  386.  
  387. function clerp(a, b, t)
  388. local qa = {
  389. QuaternionFromCFrame(a)
  390. }
  391. local qb = {
  392. QuaternionFromCFrame(b)
  393. }
  394. local ax, ay, az = a.x, a.y, a.z
  395. local bx, by, bz = b.x, b.y, b.z
  396. local _t = 1 - t
  397. return QuaternionToCFrame(_t * ax + t * bx, _t * ay + t * by, _t * az + t * bz, QuaternionSlerp(qa, qb, t))
  398. end
  399. function QuaternionFromCFrame(cf)
  400. local mx, my, mz, m00, m01, m02, m10, m11, m12, m20, m21, m22 = cf:components()
  401. local trace = m00 + m11 + m22
  402. if trace > 0 then
  403. local s = math.sqrt(1 + trace)
  404. local recip = 0.5 / s
  405. return (m21 - m12) * recip, (m02 - m20) * recip, (m10 - m01) * recip, s * 0.5
  406. else
  407. local i = 0
  408. if m00 < m11 then
  409. i = 1
  410. end
  411. if m22 > (i == 0 and m00 or m11) then
  412. i = 2
  413. end
  414. if i == 0 then
  415. local s = math.sqrt(m00 - m11 - m22 + 1)
  416. local recip = 0.5 / s
  417. return 0.5 * s, (m10 + m01) * recip, (m20 + m02) * recip, (m21 - m12) * recip
  418. elseif i == 1 then
  419. local s = math.sqrt(m11 - m22 - m00 + 1)
  420. local recip = 0.5 / s
  421. return (m01 + m10) * recip, 0.5 * s, (m21 + m12) * recip, (m02 - m20) * recip
  422. elseif i == 2 then
  423. local s = math.sqrt(m22 - m00 - m11 + 1)
  424. local recip = 0.5 / s
  425. return (m02 + m20) * recip, (m12 + m21) * recip, 0.5 * s, (m10 - m01) * recip
  426. end
  427. end
  428. end
  429. function QuaternionToCFrame(px, py, pz, x, y, z, w)
  430. local xs, ys, zs = x + x, y + y, z + z
  431. local wx, wy, wz = w * xs, w * ys, w * zs
  432. local xx = x * xs
  433. local xy = x * ys-- Created by Nebula_Zorua aka Quil_Cyndaquil
  434. local xz = x * zs
  435. local yy = y * ys
  436. local yz = y * zs
  437. local zz = z * zs
  438. 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))
  439. end
  440. function QuaternionSlerp(a, b, t)
  441. local cosTheta = a[1] * b[1] + a[2] * b[2] + a[3] * b[3] + a[4] * b[4]
  442. local startInterp, finishInterp
  443. if cosTheta >= 1.0E-4 then
  444. if 1 - cosTheta > 1.0E-4 then
  445. local theta = math.acos(cosTheta)
  446. local invSinTheta = 1 / math.sin(theta)
  447. startInterp = math.sin((1 - t) * theta) * invSinTheta
  448. finishInterp = math.sin(t * theta) * invSinTheta
  449. else
  450. startInterp = 1 - t
  451. finishInterp = t
  452. end
  453. elseif 1 + cosTheta > 1.0E-4 then
  454. local theta = math.acos(-cosTheta)
  455. local invSinTheta = 1 / math.sin(theta)
  456. startInterp = math.sin((t - 1) * theta) * invSinTheta
  457. finishInterp = math.sin(t * theta) * invSinTheta
  458. else
  459. startInterp = t - 1
  460. finishInterp = t
  461. end
  462. 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
  463. end
  464.  
  465. local sndFromData = function(data,parent)
  466. if(typeof(data) == 'table')then
  467. local snd = NewInstance("Sound",parent or char,{SoundId = "rbxassetid://"..data.Id,Looped=data.Loop or false,Pitch = data.Pitch or 1,Volume = data.Volume or 1})
  468. return snd;
  469. else
  470. return error('Argument passed into sndFromData must be a table!',1)
  471. end
  472. end
  473.  
  474. function UnbindLoops()
  475. pcall(RunS.UnbindFromRenderStep,RunS,"N_Effects")
  476. pcall(RunS.UnbindFromRenderStep,RunS,"N_Animations")
  477. end;
  478.  
  479. UnbindLoops() -- Just so if the loops already exist from previously running a script using this template, there's no errors
  480.  
  481. -- Build
  482. New = function(Object, Parent, Name, Data)
  483. local Object = Instance.new(Object)
  484. for Index, Value in pairs(Data or {}) do
  485. Object[Index] = Value
  486. end
  487. Object.Parent = Parent
  488. Object.Name = Name
  489. return Object
  490. end
  491.  
  492. local crosshair = Instance.new("BillboardGui",char)
  493. crosshair.Size = UDim2.new(10,0,10,0)
  494. crosshair.Enabled = false
  495.  
  496. local imgl = Instance.new("ImageLabel",crosshair)
  497. imgl.Position = UDim2.new(0,0,0,0)
  498. imgl.Size = UDim2.new(1,0,1,0)
  499. imgl.Image = "rbxassetid://233522684"
  500. imgl.BackgroundTransparency = 1
  501. imgl.ImageColor3 = Color3.new(.6,0,0)
  502. local img2 = Instance.new("ImageLabel",crosshair)
  503. img2.Position = UDim2.new(0,0,0,0)
  504. img2.Size = UDim2.new(1,0,1,0)
  505. img2.Image = "rbxassetid://233522684"
  506. img2.BackgroundTransparency = 1
  507. img2.ImageColor3 = Color3.new(.6,0,0)
  508.  
  509. local Music = sndFromData(Sounds.MadWorld,tors)
  510. Music:Play()
  511.  
  512. local Knife = New("Model",char,"Knife",{})
  513. handle = New("Part",Knife,"handle",{BrickColor = BrickColor.new("Really black"),FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(1, 1.15999961, 1),CFrame = CFrame.new(23.1399994, 1.06502271, -61.9699974, 1, 0, 0, 0, 1, 0, 0, 0, 1),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  514. Mesh = New("CylinderMesh",handle,"Mesh",{Scale = Vector3.new(0.300000012, 1, 0.300000012),})
  515. local Swing = sndFromData(Sounds.Swing,handle)
  516. local Tele = sndFromData(Sounds.Tele,handle)
  517. local Stab = sndFromData(Sounds.Stab,Hitbox)
  518. local WashDING = sndFromData(Sounds.WashDING,handle)
  519. local Explos = sndFromData(Sounds.Explode,handle)
  520. local Hit = sndFromData(Sounds.Hit,handle)
  521.  
  522. idk = New("Part",Knife,"idk",{BrickColor = BrickColor.new("Really black"),FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(1, 1, 1),CFrame = CFrame.new(23.1399994, 1.26002204, -61.9699974, 1, 0, 0, 0, 1, 0, 0, 0, 1),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  523. Mesh = New("SpecialMesh",idk,"Mesh",{Scale = Vector3.new(0.360000014, 0.209999993, 0.360000014),})
  524. mot = New("Weld",idk,"mot",{Part0 = idk,Part1 = handle,C1 = CFrame.new(0, 0.194999337, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  525. K1 = New("Part",Knife,"K1",{BrickColor = BrickColor.new("Crimson"),Reflectance = 0.10000000149012,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(1, 1, 1),CFrame = CFrame.new(23.1399994, 2.90501189, -62.0449982, 1, 0, 0, 0, 1, 0, 0, 0, 1),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.592157, 0, 0),})
  526. Mesh = New("SpecialMesh",K1,"Mesh",{Scale = Vector3.new(0.0250000004, 0.25, 0.100000001),MeshType = Enum.MeshType.Wedge,})
  527. mot = New("Weld",K1,"mot",{Part0 = K1,Part1 = handle,C1 = CFrame.new(0, 1.83998919, -0.0750007629, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  528. K2 = New("Part",Knife,"K2",{BrickColor = BrickColor.new("Crimson"),Reflectance = 0.10000000149012,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(1, 1, 1),CFrame = CFrame.new(23.1399994, 2.85501194, -61.9699974, 1, 0, 0, 0, 1, 0, 0, 0, 1),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.592157, 0, 0),})
  529. Mesh = New("BlockMesh",K2,"Mesh",{Scale = Vector3.new(0.0250000004, 0.349999994, 0.0500000007),})
  530. mot = New("Weld",K2,"mot",{Part0 = K2,Part1 = handle,C1 = CFrame.new(0, 1.78998923, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  531. K3 = New("Part",Knife,"K3",{BrickColor = BrickColor.new("Crimson"),Reflectance = 0.10000000149012,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(1, 1, 1),CFrame = CFrame.new(23.1399994, 2.90501189, -61.8950005, -1, 0, -0, -0, 1, -0, -0, 0, -1),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.592157, 0, 0),})
  532. Mesh = New("SpecialMesh",K3,"Mesh",{Scale = Vector3.new(0.0250000004, 0.25, 0.100000001),MeshType = Enum.MeshType.Wedge,})
  533. mot = New("Weld",K3,"mot",{Part0 = K3,Part1 = handle,C0 = CFrame.new(0, 0, 0, -1, -0, -0, 0, 1, 0, -0, -0, -1),C1 = CFrame.new(0, 1.83998919, 0.0749969482, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  534. K4 = New("Part",Knife,"K4",{BrickColor = BrickColor.new("Really red"),Reflectance = 0.10000000149012,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(1, 1, 1),CFrame = CFrame.new(23.1399994, 2.50501299, -61.9699974, 1, 0, 0, 0, 1, 0, 0, 0, 1),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(1, 1, 1),})
  535. Mesh = New("BlockMesh",K4,"Mesh",{Scale = Vector3.new(0.0250000004, 0.0500000007, 0.0500000007),})
  536. mot = New("Weld",K4,"mot",{Part0 = K4,Part1 = handle,C1 = CFrame.new(0, 1.43999028, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  537. K5 = New("Part",Knife,"K5",{BrickColor = BrickColor.new("Really red"),Reflectance = 0.10000000149012,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(1, 1, 1),CFrame = CFrame.new(23.1399994, 2.40501499, -62.0449982, 1, 0, 0, 0, 1, 0, 0, 0, 1),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(1, 1, 1),})
  538. Mesh = New("BlockMesh",K5,"Mesh",{Scale = Vector3.new(0.0250000004, 0.75, 0.100000001),})
  539. mot = New("Weld",K5,"mot",{Part0 = K5,Part1 = handle,C1 = CFrame.new(0, 1.33999228, -0.0750007629, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  540. K6 = New("Part",Knife,"K6",{BrickColor = BrickColor.new("Really red"),Reflectance = 0.10000000149012,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(1, 1, 1),CFrame = CFrame.new(23.1399994, 2.30501699, -61.9699974, 1, 0, 0, 0, 1, 0, 0, 0, 1),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(1, 1, 1),})
  541. Mesh = New("BlockMesh",K6,"Mesh",{Scale = Vector3.new(0.0250000004, 0.0500000007, 0.0500000007),})
  542. mot = New("Weld",K6,"mot",{Part0 = K6,Part1 = handle,C1 = CFrame.new(0, 1.23999429, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  543. K7 = New("Part",Knife,"K7",{BrickColor = BrickColor.new("Really red"),Reflectance = 0.10000000149012,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(1, 1, 1),CFrame = CFrame.new(23.1399994, 2.0800221, -61.9699974, 1, 0, 0, 0, 1, 0, 0, 0, 1),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(1, 1, 1),})
  544. Mesh = New("BlockMesh",K7,"Mesh",{Scale = Vector3.new(0.0250000004, 0.100000001, 0.0500000007),})
  545. mot = New("Weld",K7,"mot",{Part0 = K7,Part1 = handle,C1 = CFrame.new(0, 1.01499939, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  546. K8 = New("Part",Knife,"K8",{BrickColor = BrickColor.new("Crimson"),Reflectance = 0.10000000149012,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(.25, .5, .5),CFrame = CFrame.new(23.1399994, 2.40501499, -61.8950005, 1, 0, 0, 0, 1, 0, 0, 0, 1),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.592157, 0, 0),})
  547. Mesh = New("BlockMesh",K8,"Mesh",{Scale = Vector3.new(0.1000000016, 1.5, 0.200000002),})
  548. mot = New("Weld",K8,"mot",{Part0 = K8,Part1 = handle,C1 = CFrame.new(0, 1.33999228, 0.0749969482, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  549. K9 = New("Part",Knife,"K9",{BrickColor = BrickColor.new("Really red"),Reflectance = 0.10000000149012,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(1, 1, 1),CFrame = CFrame.new(23.1399994, 2.005023, -61.9699974, 1, 0, 0, 0, 1, 0, 0, 0, 1),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(1, 1, 1),})
  550. Mesh = New("CylinderMesh",K9,"Mesh",{Scale = Vector3.new(0.25, 0.0500000007, 0.25),})
  551. mot = New("Weld",K9,"mot",{Part0 = K9,Part1 = handle,C1 = CFrame.new(0, 0.940000296, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  552. Part = New("Part",Knife,"Part",{BrickColor = BrickColor.new("Really black"),Reflectance = 0.10000000149012,FormFactor = Enum.FormFactor.Plate,Size = Vector3.new(1, 0.400000006, 1),CFrame = CFrame.new(23.1399994, 1.88002205, -62.2299995, 1, 0, 0, 0, -4.37113883e-08, -1, 0, 1, -4.37113883e-08),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  553. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(0.0500000007, 0.049999997, 0.100000001),})
  554. mot = New("Weld",Part,"mot",{Part0 = Part,Part1 = handle,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, -4.37113883e-08, 1, 0, -1, -4.37113883e-08),C1 = CFrame.new(0, 0.814999342, -0.260002136, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  555. Part = New("Part",Knife,"Part",{BrickColor = BrickColor.new("Really black"),Reflectance = 0.10000000149012,FormFactor = Enum.FormFactor.Plate,Size = Vector3.new(1, 0.400000006, 1),CFrame = CFrame.new(23.1399994, 1.85502005, -62.2600021, 1, 0, 0, 0, -4.37113883e-08, -1, 0, 1, -4.37113883e-08),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  556. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(0.0500000007, 0.099999994, 0.0500000007),})
  557. mot = New("Weld",Part,"mot",{Part0 = Part,Part1 = handle,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, -4.37113883e-08, 1, 0, -1, -4.37113883e-08),C1 = CFrame.new(0, 0.789997339, -0.29000473, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  558. Part = New("Part",Knife,"Part",{BrickColor = BrickColor.new("Really black"),Reflectance = 0.10000000149012,FormFactor = Enum.FormFactor.Plate,Size = Vector3.new(1, 0.400000006, 1),CFrame = CFrame.new(23.1399994, 1.88002205, -62.2100029, 1, 0, 0, 0, -4.37113883e-08, -1, 0, 1, -4.37113883e-08),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  559. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(0.0500000007, 0.049999997, 0.100000001),})
  560. mot = New("Weld",Part,"mot",{Part0 = Part,Part1 = handle,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, -4.37113883e-08, 1, 0, -1, -4.37113883e-08),C1 = CFrame.new(0, 0.814999342, -0.240005493, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  561. Part = New("Part",Knife,"Part",{BrickColor = BrickColor.new("Really black"),Reflectance = 0.10000000149012,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(1, 1, 1),CFrame = CFrame.new(23.1399994, 1.80502105, -61.9699974, 1, 0, 0, 0, 1, 0, 0, 0, 1),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  562. Mesh = New("CylinderMesh",Part,"Mesh",{Scale = Vector3.new(0.269999981, 0.349999994, 0.269999981),})
  563. mot = New("Weld",Part,"mot",{Part0 = Part,Part1 = handle,C1 = CFrame.new(0, 0.739998341, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  564. Part = New("Part",Knife,"Part",{BrickColor = BrickColor.new("Really black"),FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(1, 1, 1),CFrame = CFrame.new(23.1399994, 1.11002505, -62.1450005, -1, -0, -0, -0, -0, -1, -0, -1, -0),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  565. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(0.0500000007, 0.0500000007, 0.13499999),})
  566. mot = New("Weld",Part,"mot",{Part0 = Part,Part1 = handle,C0 = CFrame.new(0, 0, 0, -1, -0, -0, -0, -0, -1, -0, -1, -0),C1 = CFrame.new(0, 0.0450023413, -0.175003052, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  567. Part = New("Part",Knife,"Part",{BrickColor = BrickColor.new("Really black"),FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(1, 1, 1),CFrame = CFrame.new(23.1399994, 1.56002104, -61.9699974, 1, 0, 0, 0, 1, 0, 0, 0, 1),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  568. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.360000014, 0.209999993, 0.360000014),})
  569. mot = New("Weld",Part,"mot",{Part0 = Part,Part1 = handle,C1 = CFrame.new(0, 0.494998336, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  570. Part = New("Part",Knife,"Part",{BrickColor = BrickColor.new("Really black"),FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(1, 1, 1),CFrame = CFrame.new(23.1399994, 1.11002004, -61.7949982, 1, 0, -0, 0, 0, -1, 0, 1, -0),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  571. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(0.0500000007, 0.0500000007, 0.13499999),})
  572. mot = New("Weld",Part,"mot",{Part0 = Part,Part1 = handle,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 0, 1, -0, -1, -0),C1 = CFrame.new(0, 0.0449973345, 0.174999237, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  573. Part = New("Part",Knife,"Part",{BrickColor = BrickColor.new("Really black"),FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(1, 1, 1),CFrame = CFrame.new(23.1399994, 1.56002104, -61.7949982, 1, 0, -0, 0, 0, -1, 0, 1, -0),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  574. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(0.0500000007, 0.0500000007, 0.13499999),})
  575. mot = New("Weld",Part,"mot",{Part0 = Part,Part1 = handle,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 0, 1, -0, -1, -0),C1 = CFrame.new(0, 0.494998336, 0.174999237, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  576. Part = New("Part",Knife,"Part",{BrickColor = BrickColor.new("Really black"),FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(1, 1, 1),CFrame = CFrame.new(23.1399994, 1.56002104, -62.1450005, -1, -0, -0, -0, -0, -1, -0, -1, -0),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  577. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(0.0500000007, 0.0500000007, 0.13499999),})
  578. mot = New("Weld",Part,"mot",{Part0 = Part,Part1 = handle,C0 = CFrame.new(0, 0, 0, -1, -0, -0, -0, -0, -1, -0, -1, -0),C1 = CFrame.new(0, 0.494998336, -0.175003052, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  579. Part = New("Part",Knife,"Part",{BrickColor = BrickColor.new("Really black"),FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(1, 1, 1),CFrame = CFrame.new(23.1399994, 1.95552194, -61.9699974, 1, 0, 0, 0, 1, 0, 0, 0, 1),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  580. Mesh = New("CylinderMesh",Part,"Mesh",{Scale = Vector3.new(0.24000001, 0.0500000007, 0.24000001),})
  581. mot = New("Weld",Part,"mot",{Part0 = Part,Part1 = handle,C1 = CFrame.new(0, 0.890499234, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  582. Part = New("Part",Knife,"Part",{BrickColor = BrickColor.new("Really black"),Reflectance = 0.10000000149012,FormFactor = Enum.FormFactor.Plate,Size = Vector3.new(1, 0.400000006, 1),CFrame = CFrame.new(23.1399994, 1.88002205, -61.7500038, 1, 0, 0, 0, -4.37113883e-08, -1, 0, 1, -4.37113883e-08),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  583. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(0.0500000007, 0.049999997, 0.100000001),})
  584. mot = New("Weld",Part,"mot",{Part0 = Part,Part1 = handle,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, -4.37113883e-08, 1, 0, -1, -4.37113883e-08),C1 = CFrame.new(0, 0.814999342, 0.219993591, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  585. Part = New("Part",Knife,"Part",{BrickColor = BrickColor.new("Really black"),Reflectance = 0.10000000149012,FormFactor = Enum.FormFactor.Plate,Size = Vector3.new(1, 0.400000006, 1),CFrame = CFrame.new(23.1399994, 1.90501904, -62.1199989, 1, 0, 0, 0, -4.37113883e-08, -1, 0, 1, -4.37113883e-08),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  586. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(0.0500000007, 0.399999976, 0.150000006),})
  587. mot = New("Weld",Part,"mot",{Part0 = Part,Part1 = handle,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, -4.37113883e-08, 1, 0, -1, -4.37113883e-08),C1 = CFrame.new(0, 0.839996338, -0.150001526, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  588. Part = New("Part",Knife,"Part",{BrickColor = BrickColor.new("Really black"),FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(1, 1, 1),CFrame = CFrame.new(23.1399994, 0.960023999, -62.1450005, -1, -0, -0, -0, -0, -1, -0, -1, -0),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  589. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(0.0500000007, 0.0500000007, 0.13499999),})
  590. mot = New("Weld",Part,"mot",{Part0 = Part,Part1 = handle,C0 = CFrame.new(0, 0, 0, -1, -0, -0, -0, -0, -1, -0, -1, -0),C1 = CFrame.new(0, -0.104998708, -0.175003052, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  591. Part = New("Part",Knife,"Part",{BrickColor = BrickColor.new("Really black"),Reflectance = 0.10000000149012,FormFactor = Enum.FormFactor.Plate,Size = Vector3.new(1, 0.400000006, 1),CFrame = CFrame.new(23.1399994, 1.95502305, -62.2100029, -1, -0, -0, -0, -0, -1, -0, -1, -0),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  592. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.0500000007, 0.049999997, 0.0500000007),MeshType = Enum.MeshType.Wedge,})
  593. mot = New("Weld",Part,"mot",{Part0 = Part,Part1 = handle,C0 = CFrame.new(0, 0, 0, -1, -0, -0, -0, -0, -1, -0, -1, -0),C1 = CFrame.new(0, 0.890000343, -0.240005493, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  594. Part = New("Part",Knife,"Part",{BrickColor = BrickColor.new("Really black"),FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(1, 1, 1),CFrame = CFrame.new(23.1399994, 0.500020981, -61.9699974, 1, 0, 0, 0, 1, 0, 0, 0, 1),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  595. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(0.100000001, 0.100000001, 0.200000003),})
  596. mot = New("Weld",Part,"mot",{Part0 = Part,Part1 = handle,C1 = CFrame.new(0, -0.565001726, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  597. Part = New("Part",Knife,"Part",{BrickColor = BrickColor.new("Really black"),FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(1, 1, 1),CFrame = CFrame.new(23.1399994, 0.960023999, -61.9699974, 1, 0, 0, 0, 1, 0, 0, 0, 1),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  598. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.360000014, 0.209999993, 0.360000014),})
  599. mot = New("Weld",Part,"mot",{Part0 = Part,Part1 = handle,C1 = CFrame.new(0, -0.104998708, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  600. Part = New("Part",Knife,"Part",{BrickColor = BrickColor.new("Really black"),FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(1, 1, 1),CFrame = CFrame.new(23.1399994, 0.960023999, -61.7949982, 1, 0, -0, 0, 0, -1, 0, 1, -0),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  601. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(0.0500000007, 0.0500000007, 0.13499999),})
  602. mot = New("Weld",Part,"mot",{Part0 = Part,Part1 = handle,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 0, 1, -0, -1, -0),C1 = CFrame.new(0, -0.104998708, 0.174999237, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  603. Part = New("Part",Knife,"Part",{BrickColor = BrickColor.new("Really black"),FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(1, 1, 1),CFrame = CFrame.new(23.1399994, 1.41002405, -61.7949982, 1, 0, -0, 0, 0, -1, 0, 1, -0),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  604. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(0.0500000007, 0.0500000007, 0.13499999),})
  605. mot = New("Weld",Part,"mot",{Part0 = Part,Part1 = handle,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 0, 1, -0, -1, -0),C1 = CFrame.new(0, 0.34500134, 0.174999237, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  606. Part = New("Part",Knife,"Part",{BrickColor = BrickColor.new("Really black"),Reflectance = 0.10000000149012,FormFactor = Enum.FormFactor.Plate,Size = Vector3.new(1, 0.400000006, 1),CFrame = CFrame.new(23.1399994, 1.90501904, -62.2600021, -1, -0, -0, -0, -0, -1, -0, -1, -0),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  607. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.0500000007, 0.099999994, 0.0500000007),MeshType = Enum.MeshType.Wedge,})
  608. mot = New("Weld",Part,"mot",{Part0 = Part,Part1 = handle,C0 = CFrame.new(0, 0, 0, -1, -0, -0, -0, -0, -1, -0, -1, -0),C1 = CFrame.new(0, 0.839996338, -0.29000473, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  609. Part = New("Part",Knife,"Part",{BrickColor = BrickColor.new("Really black"),FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(1, 1, 1),CFrame = CFrame.new(23.1399994, 1.41002405, -61.9699974, 1, 0, 0, 0, 1, 0, 0, 0, 1),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  610. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.360000014, 0.209999993, 0.360000014),})
  611. mot = New("Weld",Part,"mot",{Part0 = Part,Part1 = handle,C1 = CFrame.new(0, 0.34500134, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  612. Part = New("Part",Knife,"Part",{BrickColor = BrickColor.new("Really black"),FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(1, 1, 1),CFrame = CFrame.new(23.1399994, 1.26002204, -62.1450005, -1, -0, -0, -0, -0, -1, -0, -1, -0),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  613. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(0.0500000007, 0.0500000007, 0.13499999),})
  614. mot = New("Weld",Part,"mot",{Part0 = Part,Part1 = handle,C0 = CFrame.new(0, 0, 0, -1, -0, -0, -0, -0, -1, -0, -1, -0),C1 = CFrame.new(0, 0.194999337, -0.175003052, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  615. Part = New("Part",Knife,"Part",{BrickColor = BrickColor.new("Really black"),Reflectance = 0.10000000149012,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(1, 1, 1),CFrame = CFrame.new(23.1399994, 1.95501804, -61.7949982, 1, 0, 4.37113847e-08, 4.37113847e-08, -4.37113883e-08, -1, 1.91068525e-15, 1, -4.37113883e-08),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  616. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.0500000007, 0.100000001, 0.0500000007),MeshType = Enum.MeshType.Wedge,})
  617. mot = New("Weld",Part,"mot",{Part0 = Part,Part1 = handle,C0 = CFrame.new(0, 0, 0, 1, 4.37113847e-08, 1.91068525e-15, 0, -4.37113883e-08, 1, 4.37113847e-08, -1, -4.37113883e-08),C1 = CFrame.new(0, 0.889995337, 0.174999237, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  618. Part = New("Part",Knife,"Part",{BrickColor = BrickColor.new("Really black"),Reflectance = 0.10000000149012,FormFactor = Enum.FormFactor.Plate,Size = Vector3.new(1, 0.400000006, 1),CFrame = CFrame.new(23.1399994, 1.84001994, -61.8200035, 1, 0, 0, 0, 1, 0, 0, 0, 1),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  619. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(0.0500000007, 0.049999997, 0.150000006),})
  620. mot = New("Weld",Part,"mot",{Part0 = Part,Part1 = handle,C1 = CFrame.new(0, 0.774997234, 0.149993896, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  621. Part = New("Part",Knife,"Part",{BrickColor = BrickColor.new("Really black"),FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(1, 1, 1),CFrame = CFrame.new(23.1399994, 1.41002095, -62.1450005, -1, -0, -0, -0, -0, -1, -0, -1, -0),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  622. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(0.0500000007, 0.0500000007, 0.13499999),})
  623. mot = New("Weld",Part,"mot",{Part0 = Part,Part1 = handle,C0 = CFrame.new(0, 0, 0, -1, -0, -0, -0, -0, -1, -0, -1, -0),C1 = CFrame.new(0, 0.34499824, -0.175003052, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  624. Part = New("Part",Knife,"Part",{BrickColor = BrickColor.new("Really black"),FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(1, 1, 1),CFrame = CFrame.new(23.1399994, 1.11002505, -61.9699974, 1, 0, 0, 0, 1, 0, 0, 0, 1),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  625. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.360000014, 0.209999993, 0.360000014),})
  626. mot = New("Weld",Part,"mot",{Part0 = Part,Part1 = handle,C1 = CFrame.new(0, 0.0450023413, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  627. Part = New("Part",Knife,"Part",{BrickColor = BrickColor.new("Really black"),Reflectance = 0.10000000149012,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(1, 1, 1),CFrame = CFrame.new(23.1399994, 1.88002205, -61.9699974, 1, 0, 0, 0, 1, 0, 0, 0, 1),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  628. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.300000012, 0.140000001, 0.300000012),})
  629. mot = New("Weld",Part,"mot",{Part0 = Part,Part1 = handle,C1 = CFrame.new(0, 0.814999342, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  630. Part = New("Part",Knife,"Part",{BrickColor = BrickColor.new("Really black"),FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(1, 1, 1),CFrame = CFrame.new(23.1399994, 1.26002204, -61.7949982, 1, 0, -0, 0, 0, -1, 0, 1, -0),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  631. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(0.0500000007, 0.0500000007, 0.13499999),})
  632. mot = New("Weld",Part,"mot",{Part0 = Part,Part1 = handle,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 0, 1, -0, -1, -0),C1 = CFrame.new(0, 0.194999337, 0.174999237, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  633. Hitbox = NewInstance("Part",Knife,{Name="Hitbox",Transparency=1,Size=Vector3.new(.5,1.5,.5),CanCollide=false})
  634. HitWeld = NewInstance("Weld",Knife,{Part0=Hitbox,Part1=K9,C0=CF.N(0,-.5,0)})
  635. for _,v in next, Knife:children() do
  636. if v:IsA'BasePart' then
  637. v.CanCollide = false
  638. end
  639. end
  640.  
  641. -- thanks shuggy
  642. local p1mit = Instance.new("ParticleEmitter",Hitbox)
  643. p1mit.Texture = "rbxasset://textures/particles/fire_main.dds"
  644. p1mit.Color = ColorSequence.new({ColorSequenceKeypoint.new(0,Color3.new(.6,0,0)),ColorSequenceKeypoint.new(1,Color3.new(.6,0,0))})
  645. p1mit.Size = NumberSequence.new({NumberSequenceKeypoint.new(0,1),NumberSequenceKeypoint.new(1,0)})
  646. p1mit.Lifetime = NumberRange.new(2)
  647. p1mit.Rate = 100
  648. p1mit.Enabled = false
  649. p1mit.Acceleration = Vector3.new(0,-5,0)
  650. p1mit.Rotation = NumberRange.new(0,359)
  651. p1mit.Speed = NumberRange.new(0)
  652.  
  653. local p2mit = Instance.new("ParticleEmitter",K8)
  654. p2mit.Texture = "http://www.roblox.com/asset/?id=243132757"
  655. p2mit.Color = ColorSequence.new({ColorSequenceKeypoint.new(0,Color3.new(.6,0,0)),ColorSequenceKeypoint.new(1,Color3.new(.6,0,0))})
  656. p2mit.Size = NumberSequence.new({NumberSequenceKeypoint.new(0,.1),NumberSequenceKeypoint.new(1,.1)})
  657. p2mit.Lifetime = NumberRange.new(1)
  658. p2mit.Rate = 10
  659. p2mit.Acceleration = Vector3.new(0,-10,0)
  660. p2mit.Speed = NumberRange.new(0)
  661.  
  662. -- Explosive Hitbox
  663. function ExHitbox(rad,pos,damage,env,toim)
  664. local E = Instance.new("Explosion")
  665. E.Position = pos
  666. E.Parent = workspace
  667. E.BlastRadius = rad
  668. E.BlastPressure = 0
  669. E.Visible = false
  670. E.Hit:connect(function(hit)
  671. if hit and hit.Parent and hit.Parent:FindFirstChildOfClass("Humanoid") and notWhitelisted(hit.Parent) and hit.Parent:FindFirstChildOfClass("Humanoid").Health > 0 and hit.Parent ~= char and not hit.Parent:FindFirstChild("HitMarkerPsycho2") then
  672. for _,ch in next, hit.Parent:children() do
  673. if ch:IsA'BasePart' then
  674. local efff = p1mit:Clone()
  675. efff.Enabled = true
  676. efff.Parent = ch
  677. delay(1,function()
  678. efff.Enabled = false
  679. end)
  680. end
  681. end
  682. hit.Parent:BreakJoints()
  683. if(target == hit.Parent)then
  684. target = nil
  685. end
  686. delay(2,function()
  687. WashDING:Play()
  688. --pcall(game.Destroy,duder:FindFirstChildOfClass"Humanoid")
  689. for _,v in next, hit.Parent:children() do
  690. if v:IsA"BasePart" then
  691. v.BrickColor = BrickColor.new"Really black"
  692. local bodpos = Instance.new("BodyPosition",v)
  693. bodpos.Position = v.Position + Vector3.new(math.random(-5,5),math.random(-5,5),math.random(-5,5))
  694. local emi = p1mit:Clone()
  695. emi.LightEmission = 1
  696. emi.Color = ColorSequence.new({ColorSequenceKeypoint.new(0,Color3.new(1,0,1)),ColorSequenceKeypoint.new(1,Color3.new(1,0,1))})
  697. emi.Parent = v
  698. emi.Enabled = true
  699. game:service'Debris':AddItem(v,1)
  700. end
  701. end
  702. end)
  703. end
  704. end)
  705. end
  706. -- Joints and Lerp
  707. local LS = NewInstance('Motor',char,{Part0=tors,Part1=larm,C0 = CF.N(-1.5,0.5,0),C1 = CF.N(0,.5,0)})
  708. local RS = NewInstance('Motor',char,{Part0=tors,Part1=rarm,C0 = CF.N(1.5,0.5,0),C1 = CF.N(0,.5,0)})
  709. local NK = NewInstance('Motor',char,{Part0=tors,Part1=head,C0 = CF.N(0,1.5,0)})
  710. local LH = NewInstance('Motor',char,{Part0=tors,Part1=lleg,C0 = CF.N(-.5,-1,0),C1 = CF.N(0,1,0)})
  711. local RH = NewInstance('Motor',char,{Part0=tors,Part1=rleg,C0 = CF.N(.5,-1,0),C1 = CF.N(0,1,0)})
  712. local RJ = NewInstance('Motor',char,{Part0=root,Part1=tors})
  713. local HW = NewInstance('Motor',char,{Part0=handle,Part1=rarm,C0=CF.N(0,0,-0.9)*CF.A(M.R(-90),0,0)})
  714.  
  715.  
  716. -- Default C0s
  717. local LSD=LS.C0
  718. local RSD=RS.C0
  719. local HD=NK.C0
  720. local TD=RJ.C0
  721. local LHD=LH.C0
  722. local RHD=RH.C0
  723.  
  724. -- Check State
  725. function CheckState(rPart)
  726. if(rPart.Velocity.y > .5 and hum:GetState() == Enum.HumanoidStateType.Freefall)then
  727. return 'Jump';
  728. elseif(rPart.Velocity.y < -.5 and hum:GetState() == Enum.HumanoidStateType.Freefall)then
  729. return 'Fall';
  730. elseif(math.abs(rPart.Velocity.x) > 2 or math.abs(rPart.Velocity.z) > 2 and hum:GetState() ~= Enum.HumanoidStateType.Freefall)then
  731. return 'Walk';
  732. end
  733. return 'Idle';
  734. end
  735. -- Effect Loop
  736. RunS:BindToRenderStep("N_Effects",Enum.RenderPriority.Character.Value + 2,function()
  737. for _,v in next, Effects do
  738. -- TODO: Add Effects
  739. end
  740. end)
  741.  
  742. -- Damage
  743. function fuckimUp(duder,suicide)
  744. if(duder == char or duder and notWhitelisted(duder))then
  745. local humR = duder:FindFirstChild"HumanoidRootPart"
  746. local huma = duder:FindFirstChildOfClass"Humanoid"
  747. local hed = duder:FindFirstChild"Head"
  748. NewInstance("BoolValue",duder,{Name = 'HitMarkerPsycho2',Value = true})
  749. if(humR) then
  750. humR:destroy()
  751. end
  752. if(huma)then
  753. huma:ChangeState(Enum.HumanoidStateType.Physics)
  754. huma.PlatformStand = true
  755. end
  756. if(humR or huma) then
  757. if(plr.UserId == 5719877)then
  758. delay(2,function()
  759. if(duder == target)then
  760. target = nil
  761. end
  762.  
  763. duder:BreakJoints()
  764. WashDING:Play()
  765. --pcall(game.Destroy,duder:FindFirstChildOfClass"Humanoid")
  766. for _,v in next, duder:children() do
  767. if v:IsA"BasePart" then
  768. v.BrickColor = BrickColor.new"Really black"
  769. local bodpos = Instance.new("BodyPosition",v)
  770. bodpos.Position = v.Position + Vector3.new(math.random(-5,5),math.random(-5,5),math.random(-5,5))
  771. local emi = p1mit:Clone()
  772. emi.LightEmission = 1
  773. emi.Color = ColorSequence.new({ColorSequenceKeypoint.new(0,Color3.new(1,0,1)),ColorSequenceKeypoint.new(1,Color3.new(1,0,1))})
  774. emi.Parent = v
  775. emi.Enabled = true
  776. game:service'Debris':AddItem(v,1)
  777. end
  778. end
  779. end)
  780. else
  781. duder:BreakJoints()
  782. end
  783. end
  784. end
  785. end
  786. local doingDamage = false;
  787. function notWhitelisted(char)
  788. local player = game:service'Players':GetPlayerFromCharacter(char)
  789. if(not player or player.UserId ~= 5719877)then
  790. return true;
  791. else
  792. return false
  793. end
  794. end
  795. Hitbox.Touched:connect(function(t)
  796. if(doingDamage and t and t.Parent)then
  797. local hum = t.Parent:FindFirstChildOfClass'Humanoid'
  798. local hed = t.Parent:FindFirstChild'Head'
  799. if(t.Parent ~= char and notWhitelisted(t.Parent))then
  800. if(hum and hum.Health > 0 and not t.Parent:FindFirstChild'HitMarkerPsycho2')then
  801. p1mit.Enabled = true
  802. Stab:Play()
  803. fuckimUp(t.Parent)
  804. wait(.5)
  805. p1mit.Enabled = false
  806. end
  807. end
  808. end
  809. end)
  810.  
  811. -- Animation Loop
  812. RunS:BindToRenderStep("N_Animations",Enum.RenderPriority.Character.Value + 1,function()
  813. sine=sine+change
  814. if(target and not target.Parent) then
  815. target = nil;
  816. end
  817. if(target)then
  818.  
  819. crosshair.Adornee = target:FindFirstChild("Torso") or target:FindFirstChild("UpperTorso")
  820. crosshair.Enabled = true
  821. else
  822. crosshair.Adornee = nil
  823. crosshair.Enabled = false
  824. end
  825. imgl.Rotation = imgl.Rotation + .5
  826. img2.Rotation = img2.Rotation + 1
  827. if(defAnim)then
  828. if(CheckState(root) == 'Idle')then
  829. -- Idle anim
  830. change = .4
  831. RJ.C0 = clerp(RJ.C0,CFrame.new(-5.24950416e-10, 0.00880719814 + 0.1 * M.C((sine/16)), -0.0192620046, 1, -5.46207275e-08, -2.3859938e-08, 5.96047016e-08, 0.916382849, 0.400302947, 0, -0.400302947, 0.916382849),0.3)
  832. LH.C0 = clerp(LH.C0,CFrame.new(-0.439705789, -1.07790816 - 0.1 * M.C((sine/16)), -0.0569904149, 0.998180926, 0.0602900609, 0, -0.0552487783, 0.914715886, -0.400302947, -0.0241342895, 0.399574757, 0.916382849),0.3)
  833. RH.C0 = clerp(RH.C0,CFrame.new(0.435047954, -1.07817423 - 0.1 * M.C((sine/16)), -0.0571066141, 0.997888863, -0.0649459437, 0, 0.0595153496, 0.914448261, -0.400302947, 0.0259980522, 0.399457842, 0.916382849),0.3)
  834. LS.C0 = clerp(LS.C0,CFrame.new(-1.43480825, 0.55835855 + 0.1 * M.C((sine/15)), -0.0398109257, 0.991467655, 0.130353153, -8.74227766e-08, -0.11945343, 0.908563972, -0.400302947, -0.0521806739, 0.396887422, 0.916382849),0.3)
  835. RS.C0 = clerp(RS.C0,CFrame.new(1.4348048, 0.574370086 + 0.1 * M.C((sine/15)), -0.0764713883, 0.991467655, -0.130353153, -8.74227766e-08, 0.119453356, 0.908563972, -0.400302947, 0.0521808304, 0.396887422, 0.916382849),0.3)
  836. NK.C0 = clerp(NK.C0,CFrame.new(7.62939453e-06, 1.48375905, 0.180511832, 1, 0, 0, 0, 0.972320139, -0.233652905, 0, 0.233652905, 0.972320139),0.3)
  837. elseif(CheckState(root) == 'Walk')then
  838. -- Walk anim
  839. change = .4
  840. RJ.C0 = clerp(RJ.C0,TD * CF.N(0,-.175 + .025 * M.C(sine / 3.5) + -M.S(sine/3.5)/7,0) *CF.A(-M.R(5-2.5*M.C(sine/3.5)),-M.R(10 * M.C(sine / 7)),0),.2)
  841. LH.C0 = clerp(LH.C0,CF.N(-.5, -0.925 + 0.5 * M.C(sine / 7) / 2, -0.5 * M.C(sine / 7) / 2) * CF.A(M.R(-15 + 15 * M.C(sine / 7)) + M.S(sine / 7) / 2.5, M.R(10 * M.C(sine / 7)), M.R(0)) * CF.A(M.R(0 - 2.5 * M.C(sine / 7)), M.R(0), M.R(0)),.2)
  842. RH.C0 = clerp(RH.C0,CF.N(.5, -0.925 - 0.5 * M.C(sine / 7) / 2, 0.5 * M.C(sine / 7) / 2) * CF.A(M.R(-15 - 15 * M.C(sine / 7)) + -M.S(sine / 7) / 2.5, M.R(10 * M.C(sine / 7)), M.R(0)) * CF.A(M.R(0 + 2.5 * M.C(sine / 7)), M.R(0), M.R(0)),.2)
  843. LS.C0 = clerp(LS.C0,CF.N(-1.5, 0.5, 0) * CF.A(math.rad(-15 * math.cos(sine / 7)) + -math.sin(sine / 7) / 2.5, math.rad(0), math.rad(-10)),.2)
  844. RS.C0 = clerp(RS.C0,CF.N(1.5, 0.5, 0) * CF.A(math.rad(15 * math.cos(sine / 7)) + math.sin(sine / 7) / 2.5, math.rad(0), math.rad(10)),.2)
  845. NK.C0 = clerp(NK.C0,HD * CF.A(-M.R(5-2.5*M.C(sine/3.5)),-M.R(10 * M.C(sine / 7)),0),.3)
  846. elseif(CheckState(root) == 'Jump')then
  847. -- Jump anim
  848. RJ.C0 = clerp(RJ.C0,CFrame.new(-2.79396772e-07, -0.0147315077, 0.23395279, 0.969569981, 1.983814e-07, -0.244814694, -0.055274941, 0.974177897, -0.218911409, 0.238492996, 0.225782022, 0.944533587),0.3)
  849. LH.C0 = clerp(LH.C0,CFrame.new(-0.392084569, -0.954436064, -0.61653775, 0.999153912, 0.03942471, 0.0120183825, -0.0384271443, 0.78557229, 0.61757654, 0.0149054974, -0.617515802, 0.786420643),0.3)
  850. RH.C0 = clerp(RH.C0,CFrame.new(0.348729372, -1.04786503, -0.040492028, 0.977275848, -0.203113332, -0.0606394261, 0.20805952, 0.864443302, 0.457658529, -0.040537402, -0.459874988, 0.887058496),0.3)
  851. LS.C0 = clerp(LS.C0,CFrame.new(-1.44504118, 0.496973127, 1.18328717e-05, 0.993945599, 0.109877929, 2.87592411e-06, -0.109877951, 0.993944764, 3.27825546e-07, -2.98023224e-06, -7.15255737e-07, 1.00000012),0.3)
  852. RS.C0 = clerp(RS.C0,CFrame.new(1.39924657, 0.43332082, -0.398957431, 0.884435654, -0.0910949931, -0.457684994, 0.0910960883, -0.928192616, 0.360777199, -0.457684755, -0.360777497, -0.81262815),0.3)
  853. NK.C0 = clerp(NK.C0,CFrame.new(5.47920445e-06, 1.55189562, -0.0611583591, 1.00000012, 1.86264515e-09, 3.97861004e-06, -1.28149986e-06, 0.951825619, 0.306641817, -3.81469727e-06, -0.306641847, 0.9518255),0.3)
  854. elseif(CheckState(root) == 'Fall')then
  855. -- Fall anim
  856. RJ.C0 = clerp(RJ.C0,CFrame.new(-2.79396772e-07, -0.0147315077, 0.23395279, 0.969569981, 1.983814e-07, -0.244814694, -0.055274941, 0.974177897, -0.218911409, 0.238492996, 0.225782022, 0.944533587),0.3)
  857. LH.C0 = clerp(LH.C0,CFrame.new(-0.392084569, -0.954436064, -0.61653775, 0.999153912, 0.03942471, 0.0120183825, -0.0384271443, 0.78557229, 0.61757654, 0.0149054974, -0.617515802, 0.786420643),0.3)
  858. RH.C0 = clerp(RH.C0,CFrame.new(0.348729372, -1.04786503, -0.040492028, 0.977275848, -0.203113332, -0.0606394261, 0.20805952, 0.864443302, 0.457658529, -0.040537402, -0.459874988, 0.887058496),0.3)
  859. LS.C0 = clerp(LS.C0,CFrame.new(-1.44504118, 0.496973127, 1.18328717e-05, 0.993945599, 0.109877929, 2.87592411e-06, -0.109877951, 0.993944764, 3.27825546e-07, -2.98023224e-06, -7.15255737e-07, 1.00000012),0.3)
  860. RS.C0 = clerp(RS.C0,CFrame.new(1.39924657, 0.43332082, -0.398957431, 0.884435654, -0.0910949931, -0.457684994, 0.0910960883, -0.928192616, 0.360777199, -0.457684755, -0.360777497, -0.81262815),0.3)
  861. NK.C0 = clerp(NK.C0,CFrame.new(5.47920445e-06, 1.55189562, -0.0611583591, 1.00000012, 1.86264515e-09, 3.97861004e-06, -1.28149986e-06, 0.951825619, 0.306641817, -3.81469727e-06, -0.306641847, 0.9518255),0.3)
  862. end
  863. end
  864. end)
  865.  
  866. -- Blood system
  867.  
  868. local Blood = {
  869. Parts = {}
  870. }
  871. function Blood.new(Color,Parent,CF)
  872.  
  873. local Part = Instance.new("Part",workspace)
  874. Part.Anchored = true;
  875. Part.CanCollide = false;
  876. Part.Name = "BloodPart"
  877. Part.BrickColor = BrickColor.new(Color)
  878. Part.Size = Vector3.new(1,.02,1)
  879. Part.CFrame = CF
  880. local Mesh = Instance.new("CylinderMesh",Part)
  881. Mesh.Scale = Vector3.new(.2,1,.2)
  882. coroutine.wrap(function()
  883. for i = .2, 1, .01 do
  884. Mesh.Scale = Vector3.new(i,1,i)
  885. wait()
  886. end
  887. end)()
  888. table.insert(Blood.Parts,{Mesh=Mesh,Part=Part,EndSize = Vector3.new(1,0,1)})
  889. end
  890.  
  891. function bleed(who,parts)
  892. for i = 1, parts do
  893. if who and (who:FindFirstChild"Torso" or who:FindFirstChild"UpperTorso") then
  894. local Part = Instance.new("Part",who)
  895. Part.Anchored = false;
  896. Part.CanCollide = false;
  897. Part.BrickColor = BrickColor.new("Maroon")
  898. Part.Size = Vector3.new(.1,.1,.1)
  899. Part.Name = "BloodPart"
  900. Part.CFrame = (who:FindFirstChild"Torso" or who:FindFirstChild"UpperTorso").CFrame
  901. Part.Velocity = (who:FindFirstChild"Torso" or who:FindFirstChild"UpperTorso").CFrame.lookVector * -5 + Vector3.new(math.random(-5,5),math.random(-5,15),math.random(-5,5))
  902. Part.Touched:connect(function(t)
  903. for i,v in next, Blood.Parts do
  904. if v.Part == t then
  905. v.EndSize = v.EndSize + Vector3.new(0.15,0,0.15)
  906. v.Part.Transparency = v.Part.Transparency - .1
  907. Part:destroy();
  908. return;
  909. end
  910. end
  911. if t.Parent and not t.Parent:IsA"Accessory" and t.Name ~= "Handle" and t.Name ~= "BloodPart" and t.Parent ~= who and not t.Parent:FindFirstChildOfClass"Humanoid" then
  912. Blood.new(tostring(Part.BrickColor),who,CFrame.new(Vector3.new(Part.Position.X,(t.Position.Y+(t.Size.Y/2))+0.02,Part.Position.Z)))
  913. Part:Destroy()
  914. end
  915. end)
  916. wait(math.random(0,0.5))
  917. end
  918. end
  919. end
  920.  
  921. RunS.RenderStepped:connect(function()
  922. for i,v in next, Blood.Parts do
  923. local oCF = v.Part.CFrame
  924. if v.Part.Size.x < v.EndSize.x then
  925. v.Part.Size = v.Part.Size + Vector3.new(.01,0,0)
  926. v.Part.CFrame = oCF
  927. end
  928. if v.Part.Size.z < v.EndSize.z then
  929. v.Part.Size = v.Part.Size + Vector3.new(0,0,.01)
  930. v.Part.CFrame = oCF
  931. end
  932. v.Part.Transparency = v.Part.Transparency+.01
  933. if v.Part.Transparency > 0.99 then
  934. v.Part:destroy()
  935. table.remove(Blood.Parts,i)
  936. end
  937. end
  938. end)
  939.  
  940. -- Keystroke system
  941. local lastKeypress = time();
  942. local Keystroke = ""
  943. local KeystrokeKeys = {
  944. [Enum.KeyCode.W] = true,
  945. [Enum.KeyCode.A] = true,
  946. [Enum.KeyCode.S] = true,
  947. [Enum.KeyCode.D] = true,
  948. [Enum.KeyCode.C] = true,
  949. [Enum.KeyCode.F] = true,
  950. [Enum.KeyCode.X] = true,
  951. }
  952.  
  953. local POIERTIERT=string.reverse"auroZ_alubeN yb "
  954. local Keystrokes = {
  955. ['DSC'] = {"Murder",function()
  956. attack = true;
  957. defAnim = false;
  958. doingDamage = true;
  959. hum.WalkSpeed = 0;
  960. local bf = Instance.new("BodyVelocity",tors)
  961. bf.P = 10000
  962. bf.MaxForce = Vector3.new(bf.P,bf.P,bf.P)
  963. bf.Velocity = Vector3.new(0,100,0) + root.CFrame.lookVector*5
  964. Swing:Play()
  965. for i = 0,.6,.1 do
  966. RunS.RenderStepped:wait()
  967. RJ.C0 = clerp(RJ.C0,CFrame.new(-3.81469727e-06, -2.27373892e-13, -3.81469727e-06, 0, -5.96047016e-08, 1, 0, 1, 5.96047016e-08, -1, 0, 0),.3)
  968. LH.C0 = clerp(LH.C0,CFrame.new(-0.823868632, -0.682021141, -0.65617919, 0.921954632, -0.3854222, -0.0380717181, 0.359884083, 0.816221595, 0.451957732, -0.14311932, -0.430386335, 0.891228676),.3)
  969. RH.C0 = clerp(RH.C0,CFrame.new(0.499992371, -1.00207138, -0.0348776802, 8.72385826e-08, -5.67204639e-09, -1, 0.0648806468, 0.997893035, 0, 0.997893035, -0.0648806468, 8.74227766e-08),.3)
  970. LS.C0 = clerp(LS.C0,CFrame.new(-1.43105853, 0.495226681, 0, 0.990452647, 0.137853965, 0, -0.13785395, 0.990452647, 0, 0, 0, 1),.3)
  971. RS.C0 = clerp(RS.C0,CFrame.new(1.3304708, 0.860174119, 0, -0.996696353, -0.0812105834, 0, 0.0812105834, -0.996696353, 0, 0, 0, 1),.3)
  972. NK.C0 = clerp(NK.C0,CFrame.new(7.62939453e-06, 1.49996305, -6.66982853e-13, 8.74227766e-08, 0, -1, 0, 1, 0, 1, 0, 8.74227766e-08),.3)
  973. HW.C0 = clerp(HW.C0,CF.N(0,0,-0.9)*CF.A(M.R(-90),M.R(90),0),.3)
  974. end
  975. wait(.4)
  976. doingDamage = false
  977. bf:destroy()
  978. wait(.5)
  979. HW.C0 = CF.N(0,0,-0.9)*CF.A(M.R(-90),0,0)
  980. attack = false
  981. defAnim = true
  982. hum.WalkSpeed = 4
  983. end},
  984. ['SAX'] = {"Suicide", function()
  985. defAnim = false
  986. attack = true
  987. hum.WalkSpeed = 0
  988. for i = 0, 1, 0.1 do
  989. RunS.RenderStepped:wait()
  990. RJ.C0 = clerp(RJ.C0,CFrame.new(0, 0, 0, 1, 0, 0, 0, 0.998328507, -0.0577778853, 0, 0.0577779375, 0.998329461),0.3)
  991. LH.C0 = clerp(LH.C0,CFrame.new(-0.500695527, -1.02626717, 0.00180635601, 0.998612463, 0.0526606515, 0, -0.0525365211, 0.996258616, 0.0686051771, 0.00361279165, -0.0685099587, 0.997643948),0.3)
  992. RH.C0 = clerp(RH.C0,CFrame.new(0.501874149, -1.04304862, 0.00393840671, 0.996255398, -0.0864589661, 0, 0.0860992745, 0.992110729, 0.0911102667, -0.0078772977, -0.0907690823, 0.995840847),0.3)
  993. LS.C0 = clerp(LS.C0,CFrame.new(-1.5, 0.499999493, 2.79396772e-08, 1, 0, 0, 0, 0.999998987, 5.58793545e-08, 0, 5.58793545e-08, 1),0.3)
  994. RS.C0 = clerp(RS.C0,CFrame.new(1.75982404, 1.2, -0.430691123, 0.602406263, 0.79818964, 1.77635684e-15, 0.0164101459, -0.0123849958, -0.999787629, -0.798021019, 0.602278948, -0.0205593333),0.3)
  995. NK.C0 = clerp(NK.C0,CFrame.new(0, 1.51961923, 0.171319962, 1, 0, 0, 0, 0.949712813, -0.313119233, 0, 0.31311965, 0.949713707),0.3)
  996. HW.C0 = clerp(HW.C0,CF.N(0,0,-0.9)*CF.A(0,M.R(90),M.R(-110)),0.3)
  997. end
  998. wait(1)
  999. for i = 0, 1, 0.1 do
  1000. RunS.RenderStepped:wait()
  1001. RJ.C0 = clerp(RJ.C0,CFrame.new(0, 0, 0, 1, 0, 0, 0, 0.961180508, -0.275916666, 0, 0.275916904, 0.961181462),0.3)
  1002. LH.C0 = clerp(LH.C0,CFrame.new(-0.500692129, -1.02626777, 0.00180545449, 0.998612463, 0.0511381514, 0.012571143, -0.0525365211, 0.951077759, 0.304448545, 0.00361278094, -0.304686397, 0.952445686),0.3)
  1003. RH.C0 = clerp(RH.C0,CFrame.new(0.50187248, -1.04304886, 0.00393918157, 0.996255398, -0.0847592726, -0.017059261, 0.0860992745, 0.954629838, 0.285073161, -0.00787728094, -0.285474271, 0.958353877),0.3)
  1004. LS.C0 = clerp(LS.C0,CFrame.new(-1.5, 0.499999493, 1.1920929e-07, 1, 0, 0, 0, 0.999998987, 2.38418579e-07, 0, 2.38418579e-07, 0.999999881),0.3)
  1005. RS.C0 = clerp(RS.C0,CFrame.new(1.36339891, 1.2, 0.821489096, 0.934176028, -0.356812716, 0, -0.00733572245, -0.019205749, -0.999787688, 0.356737286, 0.933978498, -0.0205595195),0.3)
  1006. NK.C0 = clerp(NK.C0,CFrame.new(0, 1.34209204, 0.41674614, 1, 0, 0, 0, 0.594659626, -0.803976476, 0, 0.80397743, 0.594659686),0.3)
  1007. end
  1008.  
  1009. fuckimUp(char)
  1010. coroutine.wrap(function()
  1011. for i = 1, 250 do
  1012. if char and (char:FindFirstChild"Torso" or char:FindFirstChild"UpperTorso") then
  1013. local Part = Instance.new("Part",char)
  1014. Part.Anchored = false;
  1015. Part.CanCollide = false;
  1016. Part.BrickColor = BrickColor.new("Maroon")
  1017. Part.Size = Vector3.new(.1,.1,.1)
  1018. Part.Name = "BloodPart"
  1019. Part.CFrame = (char:FindFirstChild"Torso" or char:FindFirstChild"UpperTorso").CFrame * CF.N(0,.5,0)
  1020. Part.Velocity = (char:FindFirstChild"Torso" or char:FindFirstChild"UpperTorso").CFrame.lookVector * 5 + Vector3.new(math.random(-5,5),math.random(-5,15),math.random(-5,5))
  1021. Part.Touched:connect(function(t)
  1022. for i,v in next, Blood.Parts do
  1023. if v.Part == t then
  1024. v.EndSize = v.EndSize + Vector3.new(0.15,0,0.15)
  1025. v.Part.Transparency = v.Part.Transparency - .1
  1026. Part:destroy();
  1027. return;
  1028. end
  1029. end
  1030. if t.Parent and not t.Parent:IsA"Accessory" and t.Name ~= "Handle" and t.Name ~= "BloodPart" and t.Parent ~= who and not t.Parent:FindFirstChildOfClass"Humanoid" then
  1031. Blood.new(tostring(Part.BrickColor),who,CFrame.new(Vector3.new(Part.Position.X,(t.Position.Y+(t.Size.Y/2))+0.02,Part.Position.Z)))
  1032. Part:Destroy()
  1033. end
  1034. end)
  1035. RunS.RenderStepped:wait(math.random(0,500))
  1036. end
  1037. end
  1038. end)()
  1039. end},
  1040. ['ADC'] = {"Teleport (Needs target)",function()
  1041. if(target and (target:FindFirstChild'Torso' or target:FindFirstChild'UpperTorso'))then
  1042. local copee = Instance.new("Model",char)
  1043. local copyBlacc
  1044. function copyBlacc(o)
  1045. for _,v in next, o:children() do
  1046. if v ~= copee then
  1047. if v:IsA'BasePart' then
  1048. local p = v:Clone()
  1049. p.CanCollide = false;
  1050. p.Parent = copee;
  1051. p.BrickColor = BrickColor.new'Really black'
  1052. p.Transparency = .25
  1053. p.Anchored = true;
  1054. for _,w in next, p:children() do
  1055. if w:IsA'Weld' or w:IsA'Motor' or w:IsA'Motor6D' or w:IsA'Decal' then
  1056. w:destroy()
  1057. elseif w:IsA'Sound' then
  1058. w:Stop()
  1059. end
  1060. end
  1061.  
  1062. delay(.5,function()
  1063. for i = .25, 1, .05 do
  1064. p.Transparency = i
  1065. wait()
  1066. end
  1067. p:destroy()
  1068. end)
  1069. end
  1070. copyBlacc(v)
  1071. end
  1072. end
  1073. end
  1074. copyBlacc(char)
  1075. Tele:play()
  1076. tors.CFrame = (target:FindFirstChild'Torso' or target:FindFirstChild'UpperTorso').CFrame * CF.N(0,0,3)
  1077. end
  1078. end},
  1079. ['WWC'] = {"Execute", function()
  1080. attack = true;
  1081. defAnim = false
  1082. doingDamage = true;
  1083. hum.WalkSpeed = 0;
  1084. local bf = Instance.new("BodyVelocity",tors)
  1085. bf.P = 10000
  1086. bf.MaxForce = Vector3.new(bf.P,bf.P,bf.P)
  1087. bf.Velocity = Vector3.new(0,100,0) + root.CFrame.lookVector*5
  1088. Swing:Play()
  1089.  
  1090. for i = 0, 1, .1 do
  1091. RunS.RenderStepped:wait()
  1092. RJ.C0 = clerp(RJ.C0,CFrame.new(2.95382852e-09, -0.0495569706, 0, 1, 5.96047016e-08, 0, 5.96047016e-08, -1, 0, 0, 0, -1),0.3)
  1093. LH.C0 = clerp(LH.C0,CFrame.new(-0.439710259, -0.771502852, 0.0159362853, 0.998181105, 0.0602864213, 1.11327529e-06, -0.0528240055, 0.874614716, 0.481932402, 0.0290530045, -0.481055856, 0.876208484),0.3)
  1094. RH.C0 = clerp(RH.C0,CFrame.new(0.435050339, -0.771755517, 0.0160810053, 0.997888744, -0.0649467707, -1.96350675e-06, 0.0569079854, 0.874360502, 0.481928617, -0.0312979929, -0.480911255, 0.876210511),0.3)
  1095. LS.C0 = clerp(LS.C0,CFrame.new(-1.31296778, 0.704204559, 0, 0.768626034, 0.639698505, 0, -0.639698505, 0.768626034, 0, 0, 0, 1),0.3)
  1096. RS.C0 = clerp(RS.C0,CFrame.new(1.49998093, 0.589664221, 0.0270539634, 1, 0, 8.74227766e-08, 0, -1, 0, 8.74227766e-08, 0, -1),0.3)
  1097. NK.C0 = clerp(NK.C0,CFrame.new(7.52460164e-06, 1.44622362, 0.141291916, 1, -8.74227766e-08, 0, 6.69697329e-08, 0.766044438, -0.642787576, 5.61942741e-08, 0.642787576, 0.766044438),0.3)
  1098. HW.C0 = clerp(HW.C0,CF.N(0,-0.9,0)*CF.A(M.R(180),0,0),.3)
  1099. end
  1100. wait(.4)
  1101. HW.C0 = CF.N(0,0,-0.9)*CF.A(M.R(-90),0,0)
  1102. bf:Destroy()
  1103. attack = false;
  1104. defAnim = true;
  1105. doingDamage = false;
  1106. hum.WalkSpeed = 4;
  1107. end},
  1108. ['ASC'] = {"Expunge (Needs target)",function()
  1109. if(target and target:FindFirstChild"Head")then
  1110. attack = true;
  1111. hum.WalkSpeed = 0;
  1112. defAnim = false;
  1113. for i = 0, 1, .1 do
  1114. RunS.RenderStepped:wait()
  1115. RJ.C0 = clerp(RJ.C0,CFrame.new(0, -0.187180996, -0.10326767, 1, 0, 0, 0, 0.773803711, -0.633424044, 0, 0.63342464, 0.773804426),0.3)
  1116. LH.C0 = clerp(LH.C0,CFrame.new(-0.500290036, -1.01524782, 0.00751250982, 0.999421835, 0.033031363, 0.00805905368, -0.0304989275, 0.766189039, 0.641890168, 0.0150277233, -0.641764224, 0.76675421),0.3)
  1117. RH.C0 = clerp(RH.C0,CFrame.new(0.475509018, -0.861975431, -0.283714294, 0.996011972, -0.0331884995, -0.0828173161, 0.0796517581, -0.0874354839, 0.992980123, -0.0401966311, -0.995616913, -0.0844425261),0.3)
  1118. LS.C0 = clerp(LS.C0,CFrame.new(-1.49369717, 0.579128742, 2.38418579e-07, 0.98739773, 0.158258319, 0, -0.158258229, 0.987397194, 4.47034836e-07, -7.4505806e-08, 4.76837158e-07, 0.999999702),0.3)
  1119. RS.C0 = clerp(RS.C0,CFrame.new(1.38931656, 0.835723341, 0.164994478, 0.718735337, -0.667915225, -0.193154588, -0.430468231, -0.645630956, 0.630758941, -0.5460006, -0.370202541, -0.751553535),0.3)
  1120. NK.C0 = clerp(NK.C0,CFrame.new(0, 1.44462776, 0.157159805, 1, 0, 0, 0, 0.994473934, -0.104978323, 0, 0.104979247, 0.994473994),0.3)
  1121. HW.C0 = clerp(HW.C0,CF.N(0,-0.9,0)*CF.A(M.R(180),0,0),.3)
  1122. end
  1123. wait(.35)
  1124. for i = 0, .9, .1 do
  1125. RunS.RenderStepped:wait()
  1126. RJ.C0 = clerp(RJ.C0,CFrame.new(0, -0.187180996, -0.10326767, 1, 0, 0, 0, 0.880446851, 0.474142969, 0, -0.474143445, 0.880447686),0.3)
  1127. LH.C0 = clerp(LH.C0,CFrame.new(-0.500290453, -1.01524782, 0.00751328468, 0.999421835, 0.0319818631, 0.0115403514, -0.0304989368, 0.693261623, 0.720039487, 0.0150277512, -0.719976187, 0.693835974),0.3)
  1128. RH.C0 = clerp(RH.C0,CFrame.new(0.501995325, -1.0398252, 0.020098567, 0.996011972, -0.0484807566, 0.074898608, 0.0796517804, 0.861393273, -0.501653314, -0.0401967093, 0.505617976, 0.861820459),0.3)
  1129. LS.C0 = clerp(LS.C0,CFrame.new(-1.49369717, 0.579128683, -2.08616257e-07, 0.98739773, 0.158258319, 0, -0.158258215, 0.987397075, -4.17232513e-07, 5.96046448e-08, -4.17232513e-07, 0.99999994),0.3)
  1130. RS.C0 = clerp(RS.C0,CFrame.new(1.38604546, 0.379266888, 0.0178210139, 0.850962341, 0.323909789, -0.413455516, -0.43621999, -0.00257843733, -0.899835527, -0.292531431, 0.94608438, 0.139102548),0.3)
  1131. NK.C0 = clerp(NK.C0,CFrame.new(0, 1.44462585, 0.157157898, 1, 0, 0, 0, 0.994473815, -0.104979187, 0, 0.104978442, 0.994474351),0.3)
  1132. end
  1133. for _,v in next, Knife:children() do
  1134. if v:IsA'BasePart' then
  1135. v.Transparency = 1
  1136. end
  1137. end
  1138. p2mit.Enabled = false
  1139. local FKnife = New("Model",target,"Knife",{})
  1140. local handle = New("Part",FKnife,"handle",{BrickColor = BrickColor.new("Really black"),FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(1, 1.15999961, 1),CFrame = CFrame.new(23.1399994, 1.06502271, -61.9699974, 1, 0, 0, 0, 1, 0, 0, 0, 1),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  1141. local Mesh = New("CylinderMesh",handle,"Mesh",{Scale = Vector3.new(0.300000012, 1, 0.300000012),})
  1142.  
  1143. local idk = New("Part",FKnife,"idk",{BrickColor = BrickColor.new("Really black"),FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(1, 1, 1),CFrame = CFrame.new(23.1399994, 1.26002204, -61.9699974, 1, 0, 0, 0, 1, 0, 0, 0, 1),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  1144. local Mesh = New("SpecialMesh",idk,"Mesh",{Scale = Vector3.new(0.360000014, 0.209999993, 0.360000014),})
  1145. local mot = New("Weld",idk,"mot",{Part0 = idk,Part1 = handle,C1 = CFrame.new(0, 0.194999337, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  1146. local K1 = New("Part",FKnife,"K1",{BrickColor = BrickColor.new("Crimson"),Reflectance = 0.10000000149012,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(1, 1, 1),CFrame = CFrame.new(23.1399994, 2.90501189, -62.0449982, 1, 0, 0, 0, 1, 0, 0, 0, 1),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.592157, 0, 0),})
  1147. local Mesh = New("SpecialMesh",K1,"Mesh",{Scale = Vector3.new(0.0250000004, 0.25, 0.100000001),MeshType = Enum.MeshType.Wedge,})
  1148. local mot = New("Weld",K1,"mot",{Part0 = K1,Part1 = handle,C1 = CFrame.new(0, 1.83998919, -0.0750007629, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  1149. local K2 = New("Part",FKnife,"K2",{BrickColor = BrickColor.new("Crimson"),Reflectance = 0.10000000149012,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(1, 1, 1),CFrame = CFrame.new(23.1399994, 2.85501194, -61.9699974, 1, 0, 0, 0, 1, 0, 0, 0, 1),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.592157, 0, 0),})
  1150. local Mesh = New("BlockMesh",K2,"Mesh",{Scale = Vector3.new(0.0250000004, 0.349999994, 0.0500000007),})
  1151. local mot = New("Weld",K2,"mot",{Part0 = K2,Part1 = handle,C1 = CFrame.new(0, 1.78998923, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  1152. local K3 = New("Part",FKnife,"K3",{BrickColor = BrickColor.new("Crimson"),Reflectance = 0.10000000149012,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(1, 1, 1),CFrame = CFrame.new(23.1399994, 2.90501189, -61.8950005, -1, 0, -0, -0, 1, -0, -0, 0, -1),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.592157, 0, 0),})
  1153. local Mesh = New("SpecialMesh",K3,"Mesh",{Scale = Vector3.new(0.0250000004, 0.25, 0.100000001),MeshType = Enum.MeshType.Wedge,})
  1154. local mot = New("Weld",K3,"mot",{Part0 = K3,Part1 = handle,C0 = CFrame.new(0, 0, 0, -1, -0, -0, 0, 1, 0, -0, -0, -1),C1 = CFrame.new(0, 1.83998919, 0.0749969482, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  1155. local K4 = New("Part",FKnife,"K4",{BrickColor = BrickColor.new("Really red"),Reflectance = 0.10000000149012,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(1, 1, 1),CFrame = CFrame.new(23.1399994, 2.50501299, -61.9699974, 1, 0, 0, 0, 1, 0, 0, 0, 1),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(1, 1, 1),})
  1156. local Mesh = New("BlockMesh",K4,"Mesh",{Scale = Vector3.new(0.0250000004, 0.0500000007, 0.0500000007),})
  1157. local mot = New("Weld",K4,"mot",{Part0 = K4,Part1 = handle,C1 = CFrame.new(0, 1.43999028, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  1158. local K5 = New("Part",FKnife,"K5",{BrickColor = BrickColor.new("Really red"),Reflectance = 0.10000000149012,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(1, 1, 1),CFrame = CFrame.new(23.1399994, 2.40501499, -62.0449982, 1, 0, 0, 0, 1, 0, 0, 0, 1),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(1, 1, 1),})
  1159. local Mesh = New("BlockMesh",K5,"Mesh",{Scale = Vector3.new(0.0250000004, 0.75, 0.100000001),})
  1160. local mot = New("Weld",K5,"mot",{Part0 = K5,Part1 = handle,C1 = CFrame.new(0, 1.33999228, -0.0750007629, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  1161. local K6 = New("Part",FKnife,"K6",{BrickColor = BrickColor.new("Really red"),Reflectance = 0.10000000149012,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(1, 1, 1),CFrame = CFrame.new(23.1399994, 2.30501699, -61.9699974, 1, 0, 0, 0, 1, 0, 0, 0, 1),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(1, 1, 1),})
  1162. local Mesh = New("BlockMesh",K6,"Mesh",{Scale = Vector3.new(0.0250000004, 0.0500000007, 0.0500000007),})
  1163. local mot = New("Weld",K6,"mot",{Part0 = K6,Part1 = handle,C1 = CFrame.new(0, 1.23999429, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  1164. local K7 = New("Part",FKnife,"K7",{BrickColor = BrickColor.new("Really red"),Reflectance = 0.10000000149012,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(1, 1, 1),CFrame = CFrame.new(23.1399994, 2.0800221, -61.9699974, 1, 0, 0, 0, 1, 0, 0, 0, 1),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(1, 1, 1),})
  1165. local Mesh = New("BlockMesh",K7,"Mesh",{Scale = Vector3.new(0.0250000004, 0.100000001, 0.0500000007),})
  1166. local mot = New("Weld",K7,"mot",{Part0 = K7,Part1 = handle,C1 = CFrame.new(0, 1.01499939, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  1167. local K8 = New("Part",FKnife,"K8",{BrickColor = BrickColor.new("Crimson"),Reflectance = 0.10000000149012,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(.25, .5, .5),CFrame = CFrame.new(23.1399994, 2.40501499, -61.8950005, 1, 0, 0, 0, 1, 0, 0, 0, 1),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.592157, 0, 0),})
  1168. local Mesh = New("BlockMesh",K8,"Mesh",{Scale = Vector3.new(0.1000000016, 1.5, 0.200000002),})
  1169. local mot = New("Weld",K8,"mot",{Part0 = K8,Part1 = handle,C1 = CFrame.new(0, 1.33999228, 0.0749969482, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  1170. local K9 = New("Part",FKnife,"K9",{BrickColor = BrickColor.new("Really red"),Reflectance = 0.10000000149012,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(1, 1, 1),CFrame = CFrame.new(23.1399994, 2.005023, -61.9699974, 1, 0, 0, 0, 1, 0, 0, 0, 1),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(1, 1, 1),})
  1171. local Mesh = New("CylinderMesh",K9,"Mesh",{Scale = Vector3.new(0.25, 0.0500000007, 0.25),})
  1172. local mot = New("Weld",K9,"mot",{Part0 = K9,Part1 = handle,C1 = CFrame.new(0, 0.940000296, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  1173. local Part = New("Part",FKnife,"Part",{BrickColor = BrickColor.new("Really black"),Reflectance = 0.10000000149012,FormFactor = Enum.FormFactor.Plate,Size = Vector3.new(1, 0.400000006, 1),CFrame = CFrame.new(23.1399994, 1.88002205, -62.2299995, 1, 0, 0, 0, -4.37113883e-08, -1, 0, 1, -4.37113883e-08),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  1174. local Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(0.0500000007, 0.049999997, 0.100000001),})
  1175. local mot = New("Weld",Part,"mot",{Part0 = Part,Part1 = handle,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, -4.37113883e-08, 1, 0, -1, -4.37113883e-08),C1 = CFrame.new(0, 0.814999342, -0.260002136, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  1176. local Part = New("Part",FKnife,"Part",{BrickColor = BrickColor.new("Really black"),Reflectance = 0.10000000149012,FormFactor = Enum.FormFactor.Plate,Size = Vector3.new(1, 0.400000006, 1),CFrame = CFrame.new(23.1399994, 1.85502005, -62.2600021, 1, 0, 0, 0, -4.37113883e-08, -1, 0, 1, -4.37113883e-08),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  1177. local Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(0.0500000007, 0.099999994, 0.0500000007),})
  1178. local mot = New("Weld",Part,"mot",{Part0 = Part,Part1 = handle,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, -4.37113883e-08, 1, 0, -1, -4.37113883e-08),C1 = CFrame.new(0, 0.789997339, -0.29000473, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  1179. local Part = New("Part",FKnife,"Part",{BrickColor = BrickColor.new("Really black"),Reflectance = 0.10000000149012,FormFactor = Enum.FormFactor.Plate,Size = Vector3.new(1, 0.400000006, 1),CFrame = CFrame.new(23.1399994, 1.88002205, -62.2100029, 1, 0, 0, 0, -4.37113883e-08, -1, 0, 1, -4.37113883e-08),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  1180. local Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(0.0500000007, 0.049999997, 0.100000001),})
  1181. local mot = New("Weld",Part,"mot",{Part0 = Part,Part1 = handle,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, -4.37113883e-08, 1, 0, -1, -4.37113883e-08),C1 = CFrame.new(0, 0.814999342, -0.240005493, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  1182. local Part = New("Part",FKnife,"Part",{BrickColor = BrickColor.new("Really black"),Reflectance = 0.10000000149012,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(1, 1, 1),CFrame = CFrame.new(23.1399994, 1.80502105, -61.9699974, 1, 0, 0, 0, 1, 0, 0, 0, 1),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  1183. local Mesh = New("CylinderMesh",Part,"Mesh",{Scale = Vector3.new(0.269999981, 0.349999994, 0.269999981),})
  1184. local mot = New("Weld",Part,"mot",{Part0 = Part,Part1 = handle,C1 = CFrame.new(0, 0.739998341, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  1185. local Part = New("Part",FKnife,"Part",{BrickColor = BrickColor.new("Really black"),FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(1, 1, 1),CFrame = CFrame.new(23.1399994, 1.11002505, -62.1450005, -1, -0, -0, -0, -0, -1, -0, -1, -0),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  1186. local Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(0.0500000007, 0.0500000007, 0.13499999),})
  1187. local mot = New("Weld",Part,"mot",{Part0 = Part,Part1 = handle,C0 = CFrame.new(0, 0, 0, -1, -0, -0, -0, -0, -1, -0, -1, -0),C1 = CFrame.new(0, 0.0450023413, -0.175003052, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  1188. local Part = New("Part",FKnife,"Part",{BrickColor = BrickColor.new("Really black"),FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(1, 1, 1),CFrame = CFrame.new(23.1399994, 1.56002104, -61.9699974, 1, 0, 0, 0, 1, 0, 0, 0, 1),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  1189. local Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.360000014, 0.209999993, 0.360000014),})
  1190. local mot = New("Weld",Part,"mot",{Part0 = Part,Part1 = handle,C1 = CFrame.new(0, 0.494998336, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  1191. local Part = New("Part",FKnife,"Part",{BrickColor = BrickColor.new("Really black"),FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(1, 1, 1),CFrame = CFrame.new(23.1399994, 1.11002004, -61.7949982, 1, 0, -0, 0, 0, -1, 0, 1, -0),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  1192. local Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(0.0500000007, 0.0500000007, 0.13499999),})
  1193. local mot = New("Weld",Part,"mot",{Part0 = Part,Part1 = handle,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 0, 1, -0, -1, -0),C1 = CFrame.new(0, 0.0449973345, 0.174999237, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  1194. local Part = New("Part",FKnife,"Part",{BrickColor = BrickColor.new("Really black"),FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(1, 1, 1),CFrame = CFrame.new(23.1399994, 1.56002104, -61.7949982, 1, 0, -0, 0, 0, -1, 0, 1, -0),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  1195. local Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(0.0500000007, 0.0500000007, 0.13499999),})
  1196. local mot = New("Weld",Part,"mot",{Part0 = Part,Part1 = handle,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 0, 1, -0, -1, -0),C1 = CFrame.new(0, 0.494998336, 0.174999237, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  1197. local Part = New("Part",FKnife,"Part",{BrickColor = BrickColor.new("Really black"),FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(1, 1, 1),CFrame = CFrame.new(23.1399994, 1.56002104, -62.1450005, -1, -0, -0, -0, -0, -1, -0, -1, -0),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  1198. local Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(0.0500000007, 0.0500000007, 0.13499999),})
  1199. local mot = New("Weld",Part,"mot",{Part0 = Part,Part1 = handle,C0 = CFrame.new(0, 0, 0, -1, -0, -0, -0, -0, -1, -0, -1, -0),C1 = CFrame.new(0, 0.494998336, -0.175003052, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  1200. local Part = New("Part",FKnife,"Part",{BrickColor = BrickColor.new("Really black"),FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(1, 1, 1),CFrame = CFrame.new(23.1399994, 1.95552194, -61.9699974, 1, 0, 0, 0, 1, 0, 0, 0, 1),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  1201. local Mesh = New("CylinderMesh",Part,"Mesh",{Scale = Vector3.new(0.24000001, 0.0500000007, 0.24000001),})
  1202. local mot = New("Weld",Part,"mot",{Part0 = Part,Part1 = handle,C1 = CFrame.new(0, 0.890499234, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  1203. local Part = New("Part",FKnife,"Part",{BrickColor = BrickColor.new("Really black"),Reflectance = 0.10000000149012,FormFactor = Enum.FormFactor.Plate,Size = Vector3.new(1, 0.400000006, 1),CFrame = CFrame.new(23.1399994, 1.88002205, -61.7500038, 1, 0, 0, 0, -4.37113883e-08, -1, 0, 1, -4.37113883e-08),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  1204. local Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(0.0500000007, 0.049999997, 0.100000001),})
  1205. local mot = New("Weld",Part,"mot",{Part0 = Part,Part1 = handle,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, -4.37113883e-08, 1, 0, -1, -4.37113883e-08),C1 = CFrame.new(0, 0.814999342, 0.219993591, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  1206. local Part = New("Part",FKnife,"Part",{BrickColor = BrickColor.new("Really black"),Reflectance = 0.10000000149012,FormFactor = Enum.FormFactor.Plate,Size = Vector3.new(1, 0.400000006, 1),CFrame = CFrame.new(23.1399994, 1.90501904, -62.1199989, 1, 0, 0, 0, -4.37113883e-08, -1, 0, 1, -4.37113883e-08),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  1207. local Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(0.0500000007, 0.399999976, 0.150000006),})
  1208. local mot = New("Weld",Part,"mot",{Part0 = Part,Part1 = handle,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, -4.37113883e-08, 1, 0, -1, -4.37113883e-08),C1 = CFrame.new(0, 0.839996338, -0.150001526, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  1209. local Part = New("Part",FKnife,"Part",{BrickColor = BrickColor.new("Really black"),FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(1, 1, 1),CFrame = CFrame.new(23.1399994, 0.960023999, -62.1450005, -1, -0, -0, -0, -0, -1, -0, -1, -0),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  1210. local Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(0.0500000007, 0.0500000007, 0.13499999),})
  1211. local mot = New("Weld",Part,"mot",{Part0 = Part,Part1 = handle,C0 = CFrame.new(0, 0, 0, -1, -0, -0, -0, -0, -1, -0, -1, -0),C1 = CFrame.new(0, -0.104998708, -0.175003052, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  1212. local Part = New("Part",FKnife,"Part",{BrickColor = BrickColor.new("Really black"),Reflectance = 0.10000000149012,FormFactor = Enum.FormFactor.Plate,Size = Vector3.new(1, 0.400000006, 1),CFrame = CFrame.new(23.1399994, 1.95502305, -62.2100029, -1, -0, -0, -0, -0, -1, -0, -1, -0),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  1213. local Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.0500000007, 0.049999997, 0.0500000007),MeshType = Enum.MeshType.Wedge,})
  1214. local mot = New("Weld",Part,"mot",{Part0 = Part,Part1 = handle,C0 = CFrame.new(0, 0, 0, -1, -0, -0, -0, -0, -1, -0, -1, -0),C1 = CFrame.new(0, 0.890000343, -0.240005493, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  1215. local Part = New("Part",FKnife,"Part",{BrickColor = BrickColor.new("Really black"),FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(1, 1, 1),CFrame = CFrame.new(23.1399994, 0.500020981, -61.9699974, 1, 0, 0, 0, 1, 0, 0, 0, 1),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  1216. local Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(0.100000001, 0.100000001, 0.200000003),})
  1217. local mot = New("Weld",Part,"mot",{Part0 = Part,Part1 = handle,C1 = CFrame.new(0, -0.565001726, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  1218. local Part = New("Part",FKnife,"Part",{BrickColor = BrickColor.new("Really black"),FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(1, 1, 1),CFrame = CFrame.new(23.1399994, 0.960023999, -61.9699974, 1, 0, 0, 0, 1, 0, 0, 0, 1),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  1219. local Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.360000014, 0.209999993, 0.360000014),})
  1220. local mot = New("Weld",Part,"mot",{Part0 = Part,Part1 = handle,C1 = CFrame.new(0, -0.104998708, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  1221. local Part = New("Part",FKnife,"Part",{BrickColor = BrickColor.new("Really black"),FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(1, 1, 1),CFrame = CFrame.new(23.1399994, 0.960023999, -61.7949982, 1, 0, -0, 0, 0, -1, 0, 1, -0),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  1222. local Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(0.0500000007, 0.0500000007, 0.13499999),})
  1223. local mot = New("Weld",Part,"mot",{Part0 = Part,Part1 = handle,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 0, 1, -0, -1, -0),C1 = CFrame.new(0, -0.104998708, 0.174999237, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  1224. local Part = New("Part",FKnife,"Part",{BrickColor = BrickColor.new("Really black"),FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(1, 1, 1),CFrame = CFrame.new(23.1399994, 1.41002405, -61.7949982, 1, 0, -0, 0, 0, -1, 0, 1, -0),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  1225. local Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(0.0500000007, 0.0500000007, 0.13499999),})
  1226. local mot = New("Weld",Part,"mot",{Part0 = Part,Part1 = handle,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 0, 1, -0, -1, -0),C1 = CFrame.new(0, 0.34500134, 0.174999237, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  1227. local Part = New("Part",FKnife,"Part",{BrickColor = BrickColor.new("Really black"),Reflectance = 0.10000000149012,FormFactor = Enum.FormFactor.Plate,Size = Vector3.new(1, 0.400000006, 1),CFrame = CFrame.new(23.1399994, 1.90501904, -62.2600021, -1, -0, -0, -0, -0, -1, -0, -1, -0),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  1228. local Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.0500000007, 0.099999994, 0.0500000007),MeshType = Enum.MeshType.Wedge,})
  1229. local mot = New("Weld",Part,"mot",{Part0 = Part,Part1 = handle,C0 = CFrame.new(0, 0, 0, -1, -0, -0, -0, -0, -1, -0, -1, -0),C1 = CFrame.new(0, 0.839996338, -0.29000473, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  1230. local Part = New("Part",FKnife,"Part",{BrickColor = BrickColor.new("Really black"),FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(1, 1, 1),CFrame = CFrame.new(23.1399994, 1.41002405, -61.9699974, 1, 0, 0, 0, 1, 0, 0, 0, 1),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  1231. local Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.360000014, 0.209999993, 0.360000014),})
  1232. local mot = New("Weld",Part,"mot",{Part0 = Part,Part1 = handle,C1 = CFrame.new(0, 0.34500134, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  1233. local Part = New("Part",FKnife,"Part",{BrickColor = BrickColor.new("Really black"),FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(1, 1, 1),CFrame = CFrame.new(23.1399994, 1.26002204, -62.1450005, -1, -0, -0, -0, -0, -1, -0, -1, -0),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  1234. local Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(0.0500000007, 0.0500000007, 0.13499999),})
  1235. local mot = New("Weld",Part,"mot",{Part0 = Part,Part1 = handle,C0 = CFrame.new(0, 0, 0, -1, -0, -0, -0, -0, -1, -0, -1, -0),C1 = CFrame.new(0, 0.194999337, -0.175003052, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  1236. local Part = New("Part",FKnife,"Part",{BrickColor = BrickColor.new("Really black"),Reflectance = 0.10000000149012,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(1, 1, 1),CFrame = CFrame.new(23.1399994, 1.95501804, -61.7949982, 1, 0, 4.37113847e-08, 4.37113847e-08, -4.37113883e-08, -1, 1.91068525e-15, 1, -4.37113883e-08),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  1237. local Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.0500000007, 0.100000001, 0.0500000007),MeshType = Enum.MeshType.Wedge,})
  1238. local mot = New("Weld",Part,"mot",{Part0 = Part,Part1 = handle,C0 = CFrame.new(0, 0, 0, 1, 4.37113847e-08, 1.91068525e-15, 0, -4.37113883e-08, 1, 4.37113847e-08, -1, -4.37113883e-08),C1 = CFrame.new(0, 0.889995337, 0.174999237, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  1239. local Part = New("Part",FKnife,"Part",{BrickColor = BrickColor.new("Really black"),Reflectance = 0.10000000149012,FormFactor = Enum.FormFactor.Plate,Size = Vector3.new(1, 0.400000006, 1),CFrame = CFrame.new(23.1399994, 1.84001994, -61.8200035, 1, 0, 0, 0, 1, 0, 0, 0, 1),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  1240. local Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(0.0500000007, 0.049999997, 0.150000006),})
  1241. local mot = New("Weld",Part,"mot",{Part0 = Part,Part1 = handle,C1 = CFrame.new(0, 0.774997234, 0.149993896, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  1242. local Part = New("Part",FKnife,"Part",{BrickColor = BrickColor.new("Really black"),FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(1, 1, 1),CFrame = CFrame.new(23.1399994, 1.41002095, -62.1450005, -1, -0, -0, -0, -0, -1, -0, -1, -0),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  1243. local Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(0.0500000007, 0.0500000007, 0.13499999),})
  1244. local mot = New("Weld",Part,"mot",{Part0 = Part,Part1 = handle,C0 = CFrame.new(0, 0, 0, -1, -0, -0, -0, -0, -1, -0, -1, -0),C1 = CFrame.new(0, 0.34499824, -0.175003052, 1, 0, 0, 0, 1, 0, 0, 0, 1),})-- Created by Nebula_Zorua aka Quil_Cyndaquil
  1245. local Part = New("Part",FKnife,"Part",{BrickColor = BrickColor.new("Really black"),FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(1, 1, 1),CFrame = CFrame.new(23.1399994, 1.11002505, -61.9699974, 1, 0, 0, 0, 1, 0, 0, 0, 1),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  1246. local Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.360000014, 0.209999993, 0.360000014),})
  1247. local mot = New("Weld",Part,"mot",{Part0 = Part,Part1 = handle,C1 = CFrame.new(0, 0.0450023413, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  1248. local Part = New("Part",FKnife,"Part",{BrickColor = BrickColor.new("Really black"),Reflectance = 0.10000000149012,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(1, 1, 1),CFrame = CFrame.new(23.1399994, 1.88002205, -61.9699974, 1, 0, 0, 0, 1, 0, 0, 0, 1),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  1249. local Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.300000012, 0.140000001, 0.300000012),})
  1250. local mot = New("Weld",Part,"mot",{Part0 = Part,Part1 = handle,C1 = CFrame.new(0, 0.814999342, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  1251. local Part = New("Part",FKnife,"Part",{BrickColor = BrickColor.new("Really black"),FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(1, 1, 1),CFrame = CFrame.new(23.1399994, 1.26002204, -61.7949982, 1, 0, -0, 0, 0, -1, 0, 1, -0),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  1252. local Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(0.0500000007, 0.0500000007, 0.13499999),})
  1253. local mot = New("Weld",Part,"mot",{Part0 = Part,Part1 = handle,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 0, 1, -0, -1, -0),C1 = CFrame.new(0, 0.194999337, 0.174999237, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  1254. local FHitbox = NewInstance("Part",FKnife,{Name="Hitbox",Transparency=1,Size=Vector3.new(.5,1.5,.5),CanCollide=false})
  1255. local HitWeld = NewInstance("Weld",FKnife,{Part0=FHitbox,Part1=K9,C0=CF.N(0,-.5,0)})
  1256. local Weldie = NewInstance("Weld",FKnife,{Part0=FHitbox,Part1=target.Head,C0=CF.N(0,0,0)*CF.A(M.R(-90),0,0)})
  1257. if(target:FindFirstChild"HumanoidRootPart")then
  1258. target:FindFirstChild"HumanoidRootPart":destroy()
  1259. end
  1260. sndFromData(Sounds.Stab,target.Head):Play()
  1261. HW.C0 = CF.N(0,0,-0.9)*CF.A(M.R(-90),0,0)
  1262. fuckimUp(target)
  1263. game:service'Debris':AddItem(FKnife,2)
  1264. wait(1)
  1265. defAnim = true;
  1266. hum.WalkSpeed = 4;
  1267. wait(2)
  1268. for _,v in next, Knife:children() do
  1269. if v:IsA'BasePart' and v.Name ~= "Hitbox" then
  1270. v.Transparency = 0
  1271. end
  1272. end
  1273. p2mit.Enabled = true
  1274. attack = false
  1275. end
  1276.  
  1277. end},
  1278. ['SSC'] = {"Reap (Needs target)", function()
  1279. if(target and (target:FindFirstChild"Torso" or target:FindFirstChild"UpperTorso") and target:FindFirstChildOfClass'Humanoid')then
  1280. attack = true;
  1281. defAnim = false
  1282.  
  1283. hum.WalkSpeed = 0;
  1284. local humR = target:FindFirstChild"Torso" or target:FindFirstChild"UpperTorso";
  1285. local tHum = target:FindFirstChildOfClass'Humanoid'
  1286. humR.Anchored = true
  1287. Tele:Play()
  1288. root.CFrame = crosshair.Adornee.CFrame * CFrame.new(0,0,2)
  1289. wait()
  1290. root.Anchored = true
  1291.  
  1292. for i = 0,1, .1 do
  1293. RunS.RenderStepped:wait()
  1294. RJ.C0 = clerp(RJ.C0,CFrame.new(0, 0, 0, 0.956821322, 0, 0.290676802, 0, 1, 0, -0.290676802, 0, 0.956821322),0.3)
  1295. LH.C0 = clerp(LH.C0,CFrame.new(-0.477012634, -1, -0.0614852905, 0.96243602, 0, -0.271508634, 0, 0.99999994, 0, 0.271508634, 0, 0.96243602),0.3)
  1296. RH.C0 = clerp(RH.C0,CFrame.new(0.499992371, -1, -1.90734863e-06, 1, 0, 0, 0, 0.99999994, 0, 0, 0, 1),0.3)
  1297. LS.C0 = clerp(LS.C0,CFrame.new(-1.23013222, 0.494285077, 0.0684918463, -0.0104723871, 0.958375633, 0.285318077, -0.999945104, -0.0100370301, -0.0029881252, 0, -0.285333812, 0.958428264),0.3)
  1298. RS.C0 = clerp(RS.C0,CFrame.new(1.4983182, 0.540897131, 1.90734863e-06, 0.996649325, -0.0817938596, 0, 0.0817938522, 0.996649206, 0, 0, 0, 1),0.3)
  1299. NK.C0 = clerp(NK.C0,CFrame.new(0, 1.5, 0, 0.964737833, 0, -0.263212979, 0, 1, 0, 0.263212979, 0, 0.964737833),0.3)
  1300. end
  1301. wait(.25)
  1302. for i = 0,1, .1 do
  1303. RunS.RenderStepped:wait()
  1304. RJ.C0 = clerp(RJ.C0,CFrame.new(0, 0, 0, 0.855320871, 0, -0.518098712, 0, 1, 0, 0.518098712, 0, 0.855320871),0.3)
  1305. LH.C0 = clerp(LH.C0,CFrame.new(-0.436271369, -1.01720285, 0.000173702836, 0.900149345, 0.0165427253, 0.435267389, -0.0903229713, 0.984647334, 0.149368778, -0.426113904, -0.173768863, 0.887823939),0.3)
  1306. RH.C0 = clerp(RH.C0,CFrame.new(0.469516754, -1, -0.0537796021, 0.96798408, 0, 0.251011789, 0, 0.99999994, 0, -0.251011789, 0, 0.96798408),0.3)
  1307. LS.C0 = clerp(LS.C0,CFrame.new(-1.21513224, 0.494127631, -0.310380697, -0.0104723871, -0.748085976, -0.663519263, -0.999945104, 0.00783467386, 0.00694901077, 0, 0.663555622, -0.748127103),0.3)
  1308. RS.C0 = clerp(RS.C0,CFrame.new(1.49832964, 0.540897131, 7.62939453e-06, 0.996649325, -0.0817938671, 0, 0.0817938522, 0.996649206, 0, 2.98023224e-08, 0, 1.00000012),0.3)
  1309. NK.C0 = clerp(NK.C0,CFrame.new(0, 1.5, 0, 0.88661164, 0, 0.462514818, 0, 1, 0, -0.462514818, 0, 0.88661164),0.3)
  1310. end
  1311. humR.Anchored = false
  1312. Hit:Play()
  1313. local grabWeld = NewInstance("Weld",target,{Part0=crosshair.Adornee,Part1=larm,C0 = CF.N(0,0,1)*CF.A(M.R(90),M.R(-90),0)})
  1314. wait(.35)
  1315. for i = 0,1, .1 do
  1316. RunS.RenderStepped:wait()
  1317. RJ.C0 = clerp(RJ.C0,CFrame.new(0, 0, 0, 0.855320871, 0, -0.518098712, 0, 1, 0, 0.518098712, 0, 0.855320871),0.3)
  1318. LH.C0 = clerp(LH.C0,CFrame.new(-0.436271369, -1.01720285, 0.000173702836, 0.900149345, 0.0165427253, 0.435267389, -0.0903229713, 0.984647334, 0.149368778, -0.426113904, -0.173768863, 0.887823939),0.3)
  1319. RH.C0 = clerp(RH.C0,CFrame.new(0.469516754, -1, -0.0537796021, 0.96798408, 0, 0.251011789, 0, 0.99999994, 0, -0.251011789, 0, 0.96798408),0.3)
  1320. LS.C0 = clerp(LS.C0,CFrame.new(-1.21513224, 0.494127631, -0.310380697, -0.0104723871, -0.748085976, -0.663519263, -0.999945104, 0.00783467386, 0.00694901077, 0, 0.663555622, -0.748127103),0.3)
  1321. RS.C0 = clerp(RS.C0,CFrame.new(1.49832964, 0.540897131, 7.62939453e-06, 0.996649325, -0.0817938671, 0, 0.0817938522, 0.996649206, 0, 2.98023224e-08, 0, 1.00000012),0.3)
  1322. NK.C0 = clerp(NK.C0,CFrame.new(0, 1.5, 0, 0.88661164, 0, 0.462514818, 0, 1, 0, -0.462514818, 0, 0.88661164),0.3)
  1323. end
  1324. for i = 0,1, .1 do
  1325. RunS.RenderStepped:wait()
  1326. RJ.C0 = clerp(RJ.C0,CFrame.new(0.0300216675, -0.159200191, -0.0495605469, 0.98284477, 0.0446235538, -0.178955063, -0.0929640532, 0.957876146, -0.271718413, 0.159291744, 0.283693433, 0.945591986),0.3)
  1327. LH.C0 = clerp(LH.C0,CFrame.new(-0.436273128, -1.01720357, 0.000174373388, 0.900149405, -0.13332513, 0.414675444, -0.0903229937, 0.874178708, 0.477129936, -0.426113933, -0.466942936, 0.774849117),0.3)
  1328. RH.C0 = clerp(RH.C0,CFrame.new(0.469515443, -0.999998987, -0.0537834466, 0.96798414, -0.0858510807, 0.235873923, -1.11758709e-08, 0.939692557, 0.342020124, -0.251011819, -0.331069976, 0.90960747),0.3)
  1329. LS.C0 = clerp(LS.C0,CFrame.new(-1.38005126, 0.692528725, -0.0273546875, -0.460558951, 0.26937741, -0.845766664, -0.516925097, -0.855984628, 0.00885769725, -0.721577406, 0.441277564, 0.533479333),0.3)
  1330. RS.C0 = clerp(RS.C0,CFrame.new(1.49832344, 0.540897846, 1.84774399e-06, 0.996649265, -0.0694693625, -0.0431768596, 0.0817938522, 0.846476555, 0.526105285, -1.49011612e-08, -0.527874112, 0.849322677),0.3)
  1331. NK.C0 = clerp(NK.C0,CFrame.new(0.0246429443, 1.46960163, 0.169906616, 0.989647865, 0.0492784269, 0.134791806, -2.79396772e-09, 0.939202964, -0.343362391, -0.143517256, 0.339807987, 0.929480135),0.3)
  1332. end
  1333. for i = 0,1, .125 do
  1334. RunS.RenderStepped:wait()
  1335. RJ.C0 = clerp(RJ.C0,CFrame.new(0.0123291016, -1.02708268, -0.26133728, 0.999296248, 0.0325236134, -0.0186862219, -0.0116649484, 0.742930889, 0.669266403, 0.0356495343, -0.668577433, 0.74278754),0.3)
  1336. LH.C0 = clerp(LH.C0,CFrame.new(-0.431340396, -0.201772869, -0.263952076, 0.995722234, 0.044337105, 0.0810638815, 0.0108161792, 0.815381825, -0.578822136, -0.0917613283, 0.577223003, 0.81141448),0.3)
  1337. RH.C0 = clerp(RH.C0,CFrame.new(0.484352946, -1.09096456, -0.216648728, 0.998606563, 0.0072258655, 0.052273076, -0.0204334725, 0.966252089, 0.256786019, -0.0486534759, -0.257496506, 0.965053558),0.3)
  1338. LS.C0 = clerp(LS.C0,CFrame.new(-1.342116, 0.438246489, -0.75979358, -0.417920053, -0.275685519, -0.865644395, -0.799399197, 0.564298153, 0.206223369, 0.431629002, 0.77818048, -0.456214428),0.3)
  1339. RS.C0 = clerp(RS.C0,CFrame.new(1.46181428, 0.669783592, -0.101903975, 0.995820224, -0.090196006, -0.0143710813, 0.0858982652, 0.871419907, 0.482958078, -0.031037705, -0.482174039, 0.875525534),0.3)
  1340. NK.C0 = clerp(NK.C0,CFrame.new(0.00538635254, 1.48682404, -0.116001129, 0.999287128, 0.00916025788, -0.0366211832, -0.0020734109, 0.981965601, 0.18904686, 0.0376924761, -0.188836306, 0.981284857),0.3)
  1341. end
  1342. grabWeld:destroy()
  1343. humR.Anchored = true
  1344. Explos:Play();
  1345. humR.CFrame = root.CFrame*CF.N(0,-2.5,-2.75)*CF.A(M.R(-90),0,0)
  1346. tHum.Health = (tHum.MaxHealth - tHum.MaxHealth / 4)
  1347.  
  1348. for i = 0,1, .125 do
  1349. RunS.RenderStepped:wait()
  1350. RJ.C0 = clerp(RJ.C0,CFrame.new(0.0123291016, -1.02708268, -0.26133728, 0.999296248, 0.0325236134, -0.0186862219, -0.0116649484, 0.742930889, 0.669266403, 0.0356495343, -0.668577433, 0.74278754),0.3)
  1351. LH.C0 = clerp(LH.C0,CFrame.new(-0.431340396, -0.201772869, -0.263952076, 0.995722234, 0.044337105, 0.0810638815, 0.0108161792, 0.815381825, -0.578822136, -0.0917613283, 0.577223003, 0.81141448),0.3)
  1352. RH.C0 = clerp(RH.C0,CFrame.new(0.484352946, -1.09096456, -0.216648728, 0.998606563, 0.0072258655, 0.052273076, -0.0204334725, 0.966252089, 0.256786019, -0.0486534759, -0.257496506, 0.965053558),0.3)
  1353. LS.C0 = clerp(LS.C0,CFrame.new(-1.342116, 0.438246489, -0.75979358, -0.417920053, -0.275685519, -0.865644395, -0.799399197, 0.564298153, 0.206223369, 0.431629002, 0.77818048, -0.456214428),0.3)
  1354. RS.C0 = clerp(RS.C0,CFrame.new(1.46181428, 0.669783592, -0.101903975, 0.995820224, -0.090196006, -0.0143710813, 0.0858982652, 0.871419907, 0.482958078, -0.031037705, -0.482174039, 0.875525534),0.3)
  1355. NK.C0 = clerp(NK.C0,CFrame.new(0.00538635254, 1.48682404, -0.116001129, 0.999287128, 0.00916025788, -0.0366211832, -0.0020734109, 0.981965601, 0.18904686, 0.0376924761, -0.188836306, 0.981284857),0.3)
  1356. end
  1357. for i = 0,1, .125 do
  1358. RunS.RenderStepped:wait()
  1359. RJ.C0 = clerp(RJ.C0,CFrame.new(0.0123291016, -1.02708268, -0.26133728, 0.999296248, 0.0278343949, -0.0251437258, -0.0116649484, 0.867700636, 0.496950299, 0.0356495343, -0.496307224, 0.867414713),0.3)
  1360. LH.C0 = clerp(LH.C0,CFrame.new(-0.431336582, -0.201770782, -0.263951957, 0.995722294, 0.0443371013, 0.0810638815, 0.0108161755, 0.815382004, -0.578822196, -0.0917613357, 0.577223122, 0.81141454),0.3)
  1361. RH.C0 = clerp(RH.C0,CFrame.new(0.484349132, -1.0909642, -0.216651857, 0.998606563, -0.0153456926, 0.0504895784, -0.0204334743, 0.769696355, 0.638082802, -0.0486534834, -0.638225496, 0.768310547),0.3)
  1362. LS.C0 = clerp(LS.C0,CFrame.new(-1.33671784, 0.426519781, -0.775336206, -0.428714514, -0.258579791, -0.865644395, -0.77595365, 0.596127331, 0.206223339, 0.462709129, 0.760110974, -0.456214428),0.3)
  1363. RS.C0 = clerp(RS.C0,CFrame.new(1.43819702, 0.534177065, -0.214692116, 0.948581874, -0.306421548, -0.0793604553, -0.185314879, -0.74087286, 0.645573974, -0.25661394, -0.597673416, -0.759563088),0.3)
  1364. NK.C0 = clerp(NK.C0,CFrame.new(0.00538253784, 1.48682594, -0.116001129, 0.999287188, 0.00916025229, -0.0366211943, -0.00207340717, 0.981965661, 0.189047009, 0.0376924798, -0.188836277, 0.981284916),0.3)
  1365. end
  1366.  
  1367. for i = 0,1, .125 do
  1368. RunS.RenderStepped:wait()
  1369. RJ.C0 = clerp(RJ.C0,CFrame.new(0.0143890381, -1.15330505, -0.360351563, 0.999296248, 0.0352461413, -0.0128323724, -0.0116649484, 0.617162466, 0.786749244, 0.0356495343, -0.786045849, 0.617139339),0.3)
  1370. LH.C0 = clerp(LH.C0,CFrame.new(-0.416190863, -0.0753989816, -0.0846971273, 0.995722234, 0.0688974708, 0.0615651682, 0.0108161755, 0.574816167, -0.818210959, -0.0917613208, 0.815376878, 0.57161212),0.3)
  1371. RH.C0 = clerp(RH.C0,CFrame.new(0.484352946, -1.09096074, -0.216652483, 0.998606622, 0.00722586736, 0.052273076, -0.0204334743, 0.966252089, 0.256786078, -0.0486534797, -0.257496446, 0.965053558),0.3)
  1372. LS.C0 = clerp(LS.C0,CFrame.new(-1.37835312, 0.753090024, -0.455202699, -0.377297908, -0.232604891, -0.896404564, -0.893014669, 0.3477633, 0.28563121, 0.245297521, 0.908270597, -0.338930011),0.3)
  1373. RS.C0 = clerp(RS.C0,CFrame.new(0.911013961, 0.573664188, -0.752605498, 0.890747786, 0.376967132, -0.253897727, -0.205285162, -0.164706171, -0.964743376, -0.405495197, 0.911464572, -0.0693260133),0.3)
  1374. NK.C0 = clerp(NK.C0,CFrame.new(0.00538635254, 1.48682404, -0.115999222, 0.999287069, 0.00916025415, -0.0366211943, -0.0020734109, 0.981965542, 0.18904689, 0.0376924723, -0.188836277, 0.981284916),0.3)
  1375. end
  1376. Stab:Play()
  1377. p1mit.Enabled = true
  1378. local efff = Instance.new("ParticleEmitter",humR)
  1379. efff.Texture = "rbxasset://textures/particles/fire_main.dds"
  1380. efff.Color = ColorSequence.new({ColorSequenceKeypoint.new(0,Color3.new(.6,0,0)),ColorSequenceKeypoint.new(1,Color3.new(.6,0,0))})
  1381. efff.Size = NumberSequence.new(1)
  1382. efff.Lifetime = NumberRange.new(4)
  1383. efff.Rate = 250
  1384. efff.VelocitySpread = 10000
  1385. efff.Enabled = true
  1386. efff.Acceleration = Vector3.new(0,-5,0)
  1387. efff.RotSpeed = NumberRange.new(-100, 100)
  1388. efff.Rotation = NumberRange.new(-100, 100)
  1389. efff.Speed = NumberRange.new(6)
  1390. efff.VelocitySpread = 10000
  1391. delay(1.5, function()
  1392. efff.Enabled = false
  1393. end)
  1394. tHum.Health = (tHum.MaxHealth - (tHum.MaxHealth / 4)*2)
  1395. for i = 0,1, .125 do
  1396. RunS.RenderStepped:wait()
  1397. RJ.C0 = clerp(RJ.C0,CFrame.new(0.0123291016, -1.02708268, -0.26133728, 0.999296248, 0.0278343949, -0.0251437258, -0.0116649484, 0.867700636, 0.496950299, 0.0356495343, -0.496307224, 0.867414713),0.3)
  1398. LH.C0 = clerp(LH.C0,CFrame.new(-0.431336582, -0.201770782, -0.263951957, 0.995722294, 0.0443371013, 0.0810638815, 0.0108161755, 0.815382004, -0.578822196, -0.0917613357, 0.577223122, 0.81141454),0.3)
  1399. RH.C0 = clerp(RH.C0,CFrame.new(0.484349132, -1.0909642, -0.216651857, 0.998606563, -0.0153456926, 0.0504895784, -0.0204334743, 0.769696355, 0.638082802, -0.0486534834, -0.638225496, 0.768310547),0.3)
  1400. LS.C0 = clerp(LS.C0,CFrame.new(-1.33671784, 0.426519781, -0.775336206, -0.428714514, -0.258579791, -0.865644395, -0.77595365, 0.596127331, 0.206223339, 0.462709129, 0.760110974, -0.456214428),0.3)
  1401. RS.C0 = clerp(RS.C0,CFrame.new(1.43819702, 0.534177065, -0.214692116, 0.948581874, -0.306421548, -0.0793604553, -0.185314879, -0.74087286, 0.645573974, -0.25661394, -0.597673416, -0.759563088),0.3)
  1402. NK.C0 = clerp(NK.C0,CFrame.new(0.00538253784, 1.48682594, -0.116001129, 0.999287188, 0.00916025229, -0.0366211943, -0.00207340717, 0.981965661, 0.189047009, 0.0376924798, -0.188836277, 0.981284916),0.3)
  1403. end
  1404.  
  1405. for i = 0,1, .125 do
  1406. RunS.RenderStepped:wait()
  1407. RJ.C0 = clerp(RJ.C0,CFrame.new(0.0143890381, -1.15330505, -0.360351563, 0.999296248, 0.0352461413, -0.0128323724, -0.0116649484, 0.617162466, 0.786749244, 0.0356495343, -0.786045849, 0.617139339),0.3)
  1408. LH.C0 = clerp(LH.C0,CFrame.new(-0.416190863, -0.0753989816, -0.0846971273, 0.995722234, 0.0688974708, 0.0615651682, 0.0108161755, 0.574816167, -0.818210959, -0.0917613208, 0.815376878, 0.57161212),0.3)
  1409. RH.C0 = clerp(RH.C0,CFrame.new(0.484352946, -1.09096074, -0.216652483, 0.998606622, 0.00722586736, 0.052273076, -0.0204334743, 0.966252089, 0.256786078, -0.0486534797, -0.257496446, 0.965053558),0.3)
  1410. LS.C0 = clerp(LS.C0,CFrame.new(-1.37835312, 0.753090024, -0.455202699, -0.377297908, -0.232604891, -0.896404564, -0.893014669, 0.3477633, 0.28563121, 0.245297521, 0.908270597, -0.338930011),0.3)
  1411. RS.C0 = clerp(RS.C0,CFrame.new(0.911013961, 0.573664188, -0.752605498, 0.890747786, 0.376967132, -0.253897727, -0.205285162, -0.164706171, -0.964743376, -0.405495197, 0.911464572, -0.0693260133),0.3)
  1412. NK.C0 = clerp(NK.C0,CFrame.new(0.00538635254, 1.48682404, -0.115999222, 0.999287069, 0.00916025415, -0.0366211943, -0.0020734109, 0.981965542, 0.18904689, 0.0376924723, -0.188836277, 0.981284916),0.3)
  1413. end
  1414. Stab:Play()
  1415. tHum.Health = (tHum.MaxHealth - (tHum.MaxHealth / 4)*3)
  1416. for i = 0,1, .125 do
  1417. RunS.RenderStepped:wait()
  1418. RJ.C0 = clerp(RJ.C0,CFrame.new(0.0123291016, -1.02708268, -0.26133728, 0.999296248, 0.0278343949, -0.0251437258, -0.0116649484, 0.867700636, 0.496950299, 0.0356495343, -0.496307224, 0.867414713),0.3)
  1419. LH.C0 = clerp(LH.C0,CFrame.new(-0.431336582, -0.201770782, -0.263951957, 0.995722294, 0.0443371013, 0.0810638815, 0.0108161755, 0.815382004, -0.578822196, -0.0917613357, 0.577223122, 0.81141454),0.3)
  1420. RH.C0 = clerp(RH.C0,CFrame.new(0.484349132, -1.0909642, -0.216651857, 0.998606563, -0.0153456926, 0.0504895784, -0.0204334743, 0.769696355, 0.638082802, -0.0486534834, -0.638225496, 0.768310547),0.3)
  1421. LS.C0 = clerp(LS.C0,CFrame.new(-1.33671784, 0.426519781, -0.775336206, -0.428714514, -0.258579791, -0.865644395, -0.77595365, 0.596127331, 0.206223339, 0.462709129, 0.760110974, -0.456214428),0.3)
  1422. RS.C0 = clerp(RS.C0,CFrame.new(1.43819702, 0.534177065, -0.214692116, 0.948581874, -0.306421548, -0.0793604553, -0.185314879, -0.74087286, 0.645573974, -0.25661394, -0.597673416, -0.759563088),0.3)
  1423. NK.C0 = clerp(NK.C0,CFrame.new(0.00538253784, 1.48682594, -0.116001129, 0.999287188, 0.00916025229, -0.0366211943, -0.00207340717, 0.981965661, 0.189047009, 0.0376924798, -0.188836277, 0.981284916),0.3)
  1424. end
  1425. for i = 0,1, .125 do
  1426. RunS.RenderStepped:wait()
  1427. RJ.C0 = clerp(RJ.C0,CFrame.new(0.0143890381, -1.15330505, -0.360351563, 0.999296248, 0.0352461413, -0.0128323724, -0.0116649484, 0.617162466, 0.786749244, 0.0356495343, -0.786045849, 0.617139339),0.3)
  1428. LH.C0 = clerp(LH.C0,CFrame.new(-0.416190863, -0.0753989816, -0.0846971273, 0.995722234, 0.0688974708, 0.0615651682, 0.0108161755, 0.574816167, -0.818210959, -0.0917613208, 0.815376878, 0.57161212),0.3)
  1429. RH.C0 = clerp(RH.C0,CFrame.new(0.484352946, -1.09096074, -0.216652483, 0.998606622, 0.00722586736, 0.052273076, -0.0204334743, 0.966252089, 0.256786078, -0.0486534797, -0.257496446, 0.965053558),0.3)
  1430. LS.C0 = clerp(LS.C0,CFrame.new(-1.37835312, 0.753090024, -0.455202699, -0.377297908, -0.232604891, -0.896404564, -0.893014669, 0.3477633, 0.28563121, 0.245297521, 0.908270597, -0.338930011),0.3)
  1431. RS.C0 = clerp(RS.C0,CFrame.new(0.911013961, 0.573664188, -0.752605498, 0.890747786, 0.376967132, -0.253897727, -0.205285162, -0.164706171, -0.964743376, -0.405495197, 0.911464572, -0.0693260133),0.3)
  1432. NK.C0 = clerp(NK.C0,CFrame.new(0.00538635254, 1.48682404, -0.115999222, 0.999287069, 0.00916025415, -0.0366211943, -0.0020734109, 0.981965542, 0.18904689, 0.0376924723, -0.188836277, 0.981284916),0.3)
  1433. end
  1434. Stab:Play()
  1435. humR.Anchored = false
  1436. fuckimUp(target)
  1437. target = nil
  1438. delay(1.25,function()
  1439. p1mit.Enabled = false
  1440. end)
  1441. wait(1)
  1442. root.Anchored = false;
  1443. defAnim = true;
  1444. attack = false;
  1445. hum.WalkSpeed = 4;
  1446. end
  1447. end},
  1448. ['CWWA'] = {"Annihilation", function()
  1449. attack = true
  1450. hum.WalkSpeed = 0
  1451. defAnim = false
  1452. RJ.C0 = TD
  1453. LH.C0 = LHD
  1454. RH.C0 = RHD
  1455. NK.C0 = HD
  1456. LS.C0 = LSD
  1457. RS.C0 = RSD
  1458. wait(1.5)
  1459. Swing:Play()
  1460. WashDING:Play()
  1461. for i = 1, 5 do
  1462. local trace = Instance.new("Part",game.Workspace)
  1463. trace.Size = Vector3.new(1,1,1)
  1464. trace.Transparency = 1
  1465. trace.Anchored = true
  1466. trace.CFrame = (root.CFrame + root.CFrame.lookVector * (5*i))
  1467. game:service'Debris':AddItem(trace,.25)
  1468. ExHitbox(5,trace.CFrame.p,40,2,.1)
  1469. end
  1470. RJ.C0 = CFrame.new(-1.01135744e-09, 0.0169677436, 0.118749574, 1, -5.73239873e-08, -1.63303771e-08, 5.96047016e-08, 0.961736023, 0.273977995, 0, -0.273977995, 0.961736023)
  1471. LH.C0 = CFrame.new(-0.439707339, -1.00178075, 1.02407257e-05, 0.998180866, 0.0602905899, 1.24168605e-06, -0.0602905862, 0.998181045, -1.78813934e-06, -1.34669244e-06, 1.66893005e-06, 1.00000012)
  1472. RH.C0 = CFrame.new(0.376986027, -0.110020638, -0.562054634, 0.997888625, -0.0649485961, 1.73146043e-06, 0.0649486035, 0.997888684, -2.44379044e-06, -1.56834722e-06, 2.59280205e-06, 1.00000012)
  1473. LS.C0 = CFrame.new(-1.40645111, 0.557181716, -0.101134047, 0.98480773, 0.173648179, 8.74227766e-08, -0.167003676, 0.947125077, -0.273977995, -0.0475758612, 0.269815654, 0.961736023)
  1474. RS.C0 = CFrame.new(1.39970815, 0.554037213, -0.0927602053, 0.98480773, -0.173648179, -8.74227766e-08, 0.167003676, 0.947125077, -0.273977995, 0.0475758612, 0.269815654, 0.961736023)
  1475. NK.C0 = CFrame.new(7.62939453e-06, 1.49995625, 2.67028845e-05, 1, 0, 0, 0, 1.00000012, 0, 0, 0, 1.00000012)
  1476. local trace = Instance.new("Part",workspace)
  1477. trace.BrickColor = BrickColor.new("Magenta")
  1478. trace.CanCollide = false
  1479. trace.Size = Vector3.new(1,1,1)
  1480. trace.BottomSurface = 0
  1481. trace.TopSurface = 0
  1482. trace.Anchored = true
  1483. trace.CFrame = root.CFrame + root.CFrame.lookVector * 12.5
  1484. trace.Material = "Neon"
  1485. local tracem = Instance.new("SpecialMesh",trace)
  1486. tracem.MeshType = "Sphere"
  1487. tracem.Scale = Vector3.new(1,1,50)
  1488. coroutine.wrap(function()
  1489. for i = 0, 1, .1 do
  1490. trace.Transparency = i
  1491. wait()
  1492. end
  1493. trace:destroy();
  1494. end)()
  1495. root.CFrame = root.CFrame + root.CFrame.lookVector * 35
  1496. wait(2)
  1497. defAnim = true;
  1498. attack = false
  1499. hum.WalkSpeed = 4
  1500. end},
  1501.  
  1502. ['AWC'] = {"Kill", function()
  1503. defAnim = false;
  1504. attack = true;
  1505. doingDamage = true;
  1506. Swing:Play();
  1507. hum.WalkSpeed = 0;
  1508. for i = 0, .8, 0.1 do
  1509. RunS.RenderStepped:wait()
  1510. RJ.C0 = clerp(RJ.C0,CFrame.new(-3.81469727e-06, -2.27373892e-13, 0, 0, -5.96047016e-08, 1, 0, 1, 5.96047016e-08, -1, 0, 0),0.3)
  1511. LH.C0 = clerp(LH.C0,CFrame.new(-0.439706981, -1.00178444, 0, 0.998180866, 0.0602899939, 0, -0.0602899939, 0.998180866, 0, 0, 0, 1),0.3)
  1512. RH.C0 = clerp(RH.C0,CFrame.new(0.435048282, -1.00207496, 0, 0.997888744, -0.0649459884, 0, 0.0649459884, 0.997888744, 0, 0, 0, 1),0.3)
  1513. LS.C0 = clerp(LS.C0,CFrame.new(-1.49998474, 0.5, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),0.3)
  1514. RS.C0 = clerp(RS.C0,CFrame.new(1.46379089, 0.479282379, 0, 0, -1, 0, 1, 0, 0, 0, 0, 1),0.3)
  1515. NK.C0 = clerp(NK.C0,CFrame.new(7.62939453e-06, 1.49996614, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0),0.3)
  1516. HW.C0 = clerp(HW.C0,CF.N(0,-0.9,0)*CF.A(M.R(180),0,0),.3)
  1517. end
  1518. wait(1)
  1519. doingDamage = false
  1520. HW.C0 = CF.N(0,0,-0.9)*CF.A(M.R(-90),0,0)
  1521. attack = false
  1522. defAnim = true
  1523. hum.WalkSpeed = 4
  1524. end}
  1525. }
  1526.  
  1527. UIP.InputBegan:connect(function(io,gp)
  1528. if(not gp and not attack)then
  1529. if(KeystrokeKeys[io.KeyCode])then
  1530. lastKeypress = time()
  1531. if(#Keystroke > 6) then
  1532. Keystroke = ""
  1533. end
  1534. Keystroke = Keystroke..tostring(io.KeyCode):sub(14)
  1535. print(Keystroke)
  1536. for i,v in next, Keystrokes do
  1537. if(Keystroke == i)then
  1538. v[2]()
  1539. Keystroke = "";
  1540. end
  1541. end
  1542. end
  1543. end
  1544. end)
  1545.  
  1546. UIP.InputBegan:connect(function(io,gp)
  1547. if(not gp and not attack and io.KeyCode == Enum.KeyCode.Q)then
  1548. if(mouse.Target and mouse.Target.Parent:FindFirstChildOfClass'Humanoid' and not mouse.Target.Parent:FindFirstChild'HitMarkerPsycho2')then
  1549. target = mouse.Target.Parent
  1550. local info = TweenInfo.new(.5, Enum.EasingStyle.Quad, Enum.EasingDirection.Out, 0, false)
  1551. img2.ImageTransparency = 0
  1552. img2.Size = UDim2.new(1,0,1,0)
  1553. img2.Position = UDim2.new(0,0,0,0)
  1554. local tween = TweS:Create(img2, info, {ImageTransparency = 1,Size=UDim2.new(2.5,0,2.5,0),Position=UDim2.new(-.75,0,-.75,0)})
  1555.  
  1556. tween:Play();
  1557. end
  1558. end
  1559. end)
  1560. RunS.RenderStepped:connect(function()
  1561. if(time() - lastKeypress) > 0.5 then
  1562. Keystroke = ""
  1563. end
  1564. end)
  1565.  
  1566. mouse.Button1Down:connect(function()
  1567. if(attack == false)then
  1568. attack = true
  1569. defAnim = false
  1570. for i = 0, 2.25, 0.3 do
  1571. RunS.RenderStepped:wait()
  1572. RJ.C0 = clerp(RJ.C0,CFrame.new(0, 0, 0, 0.884369195, 0, -0.466788083, 0, 0.999991894, 0, 0.466788083, 0, 0.884369195),0.3)
  1573. LH.C0 = clerp(LH.C0,CFrame.new(-0.473577499, -0.999991953, -0.0389022827, 0.921018302, 0, 0.389519274, 0, 0.999991834, 0, -0.389519274, 0, 0.921018302),0.3)
  1574. RH.C0 = clerp(RH.C0,CFrame.new(0.499998093, -0.999991953, 0, 0.99999994, 0, 0, 0, 0.999991834, 0, 0, 0, 0.99999994),0.3)
  1575. LS.C0 = clerp(LS.C0,CFrame.new(-1.47025394, 0.512214303, 0.169448584, 0.940507352, 0.339773118, 0, -0.0244370736, 0.0676429272, -0.997402012, -0.338893116, 0.938071668, 0.071922332),0.3)
  1576. RS.C0 = clerp(RS.C0,CFrame.new(1.52900529, 0.574661434, 0.518120944, 0.995787263, -0.0916932821, 3.7252903e-09, 0.0130786086, 0.142033443, -0.989767253, 0.0907557309, 0.985605597, 0.142635509),0.3)
  1577. NK.C0 = clerp(NK.C0,CFrame.new(0, 1.49998784, 0, 0.90585053, 0, 0.423597664, 0, 0.999991894, 0, -0.423597664, 0, 0.90585053),0.3)
  1578. HW.C0 = clerp(HW.C0,CF.N(0,-0.9,0)*CF.A(M.R(180),0,0),0.3)
  1579. end
  1580. wait(0.5)
  1581. HW.C0 = CF.N(0,0,-0.9)*CF.A(M.R(-90),0,0)
  1582. defAnim = true
  1583. attack = false
  1584. end
  1585. end)
  1586. -- Move list GUI
  1587. local NewGuiPart1 = Instance.new("ScreenGui",plrgui)
  1588. NewGuiPart1.Name = "MoveGUI"
  1589.  
  1590. local NewGuiPart2 = Instance.new("Frame")
  1591. NewGuiPart2.BackgroundColor3 = Color3.new(0.458824, 0.0470588, 0.0470588)
  1592. NewGuiPart2.BackgroundTransparency = 0.25
  1593. NewGuiPart2.Name = "Movelist"
  1594. NewGuiPart2.Position = UDim2.new(0.75, -50, 0.699999988, -100)
  1595. NewGuiPart2.Size = UDim2.new(0.25, 10, 0.25, 100)
  1596. NewGuiPart2.Parent = NewGuiPart1
  1597.  
  1598. local NewGuiPart3 = Instance.new("ScrollingFrame")
  1599. NewGuiPart3.BackgroundTransparency = 1
  1600. NewGuiPart3.Position = UDim2.new(0, 0, 0.100000001, 0)
  1601. NewGuiPart3.Selectable = true
  1602. NewGuiPart3.Size = UDim2.new(1, 0, 0.899999976, 0)
  1603. NewGuiPart3.CanvasSize = UDim2.new(0, 0, 0, 0)
  1604. NewGuiPart3.ClipsDescendants = true
  1605. NewGuiPart3.Parent = NewGuiPart2
  1606.  
  1607. local NewGuiPart4 = Instance.new("TextLabel")
  1608. NewGuiPart4.BackgroundTransparency = 1
  1609. NewGuiPart4.Size = UDim2.new(1, 0, 0, 25)
  1610. NewGuiPart4.Font = Enum.Font.Fantasy
  1611. NewGuiPart4.FontSize = Enum.FontSize.Size24
  1612. NewGuiPart4.Text = "Psychopath V2 "..POIERTIERT
  1613. NewGuiPart4.TextColor3 = Color3.new(1, 1, 1)
  1614. NewGuiPart4.TextStrokeColor3 = Color3.new(1, 0, 0)
  1615. NewGuiPart4.TextStrokeTransparency = 0
  1616. NewGuiPart4.Parent = NewGuiPart2
  1617.  
  1618. local largestLbl,yPos = nil,0;
  1619. function newLabel(textie)
  1620. local NewGuiPart1 = Instance.new("TextLabel",NewGuiPart3)
  1621. NewGuiPart1.BackgroundTransparency = 1
  1622.  
  1623. NewGuiPart1.Font = Enum.Font.Fantasy
  1624. NewGuiPart1.FontSize = Enum.FontSize.Size24
  1625. NewGuiPart1.Size = UDim2.new(100, 0, 0, 15)
  1626. NewGuiPart1.Text = textie
  1627. NewGuiPart1.Size = UDim2.new(0, NewGuiPart1.TextBounds.X, 0, 15)
  1628. NewGuiPart1.Position = UDim2.new(0,0,0,yPos)
  1629. yPos = yPos + 20
  1630. if(largestLbl == nil or #largestLbl.Text <= #NewGuiPart1.Text)then
  1631. largestLbl = NewGuiPart1;
  1632. end
  1633. NewGuiPart1.TextColor3 = Color3.new(1, 1, 1)
  1634. NewGuiPart1.TextStrokeColor3 = Color3.new(1, 0, 0)
  1635. NewGuiPart1.TextStrokeTransparency = 0
  1636. NewGuiPart1.TextWrapped = true
  1637. NewGuiPart1.TextXAlignment = Enum.TextXAlignment.Left
  1638. NewGuiPart3.CanvasSize = NewGuiPart3.CanvasSize + UDim2.new(0,0,0,15)
  1639. NewGuiPart3.CanvasSize = UDim2.new(0,largestLbl.TextBounds.X+5,0,NewGuiPart3.CanvasSize.Y.Offset)
  1640. end
  1641. newLabel("Q - Target")
  1642. for keys,info in next, Keystrokes do
  1643. newLabel(keys.." - "..info[1])
  1644. end
  1645.  
  1646.  
  1647.  
  1648.  
  1649. -- Died event
  1650.  
  1651. hum.Died:connect(function() -- When the player dies
  1652. UnbindLoops() -- Unbind all of the loops used
  1653. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement