Advertisement
pakin2549

Untitled

Jan 7th, 2020
420
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. --edit by goodguyaiden
  2. --made by cret xd
  3. if game:GetService("RunService"):IsClient() then error("Script must be server-side in order to work; use h/ and not hl/") end
  4. local Player,game,owner = owner,game
  5. local RealPlayer = Player
  6. do
  7. print("FE Compatibility code by Mokiros")
  8. local rp = RealPlayer
  9. script.Parent = rp.Character
  10.  
  11. --RemoteEvent for communicating
  12. local Event = Instance.new("RemoteEvent")
  13. Event.Name = "UserInput_Event"
  14.  
  15. --Fake event to make stuff like Mouse.KeyDown work
  16. local function fakeEvent()
  17. local t = {_fakeEvent=true,Functions={},Connect=function(self,f)table.insert(self.Functions,f) end}
  18. t.connect = t.Connect
  19. return t
  20. end
  21.  
  22. --Creating fake input objects with fake variables
  23. local m = {Target=nil,Hit=CFrame.new(),KeyUp=fakeEvent(),KeyDown=fakeEvent(),Button1Up=fakeEvent(),Button1Down=fakeEvent()}
  24. local UIS = {InputBegan=fakeEvent(),InputEnded=fakeEvent()}
  25. local CAS = {Actions={},BindAction=function(self,name,fun,touch,...)
  26. CAS.Actions[name] = fun and {Name=name,Function=fun,Keys={...}} or nil
  27. end}
  28. --Merged 2 functions into one by checking amount of arguments
  29. CAS.UnbindAction = CAS.BindAction
  30.  
  31. --This function will trigger the events that have been :Connect()'ed
  32. local function te(self,ev,...)
  33. local t = m[ev]
  34. if t and t._fakeEvent then
  35. for _,f in pairs(t.Functions) do
  36. f(...)
  37. end
  38. end
  39. end
  40. m.TrigEvent = te
  41. UIS.TrigEvent = te
  42.  
  43. Event.OnServerEvent:Connect(function(plr,io)
  44. if plr~=rp then return end
  45. m.Target = io.Target
  46. m.Hit = io.Hit
  47. if not io.isMouse then
  48. local b = io.UserInputState == Enum.UserInputState.Begin
  49. if io.UserInputType == Enum.UserInputType.MouseButton1 then
  50. return m:TrigEvent(b and "Button1Down" or "Button1Up")
  51. end
  52. for _,t in pairs(CAS.Actions) do
  53. for _,k in pairs(t.Keys) do
  54. if k==io.KeyCode then
  55. t.Function(t.Name,io.UserInputState,io)
  56. end
  57. end
  58. end
  59. m:TrigEvent(b and "KeyDown" or "KeyUp",io.KeyCode.Name:lower())
  60. UIS:TrigEvent(b and "InputBegan" or "InputEnded",io,false)
  61. end
  62. end)
  63. Event.Parent = NLS([==[
  64. local Player = game:GetService("Players").LocalPlayer
  65. local Event = script:WaitForChild("UserInput_Event")
  66.  
  67. local Mouse = Player:GetMouse()
  68. local UIS = game:GetService("UserInputService")
  69. local input = function(io,a)
  70. if a then return end
  71. --Since InputObject is a client-side instance, we create and pass table instead
  72. Event:FireServer({KeyCode=io.KeyCode,UserInputType=io.UserInputType,UserInputState=io.UserInputState,Hit=Mouse.Hit,Target=Mouse.Target})
  73. end
  74. UIS.InputBegan:Connect(input)
  75. UIS.InputEnded:Connect(input)
  76.  
  77. local h,t
  78. --Give the server mouse data 30 times every second, but only if the values changed
  79. --If player is not moving their mouse, client won't fire events
  80. while wait(1/30) do
  81. if h~=Mouse.Hit or t~=Mouse.Target then
  82. h,t=Mouse.Hit,Mouse.Target
  83. Event:FireServer({isMouse=true,Target=t,Hit=h})
  84. end
  85. end]==],Player.Character)
  86.  
  87. ----Sandboxed game object that allows the usage of client-side methods and services
  88. --Real game object
  89. local _rg = game
  90.  
  91. --Metatable for fake service
  92. local fsmt = {
  93. __index = function(self,k)
  94. local s = rawget(self,"_RealService")
  95. if s then return s[k] end
  96. end,
  97. __newindex = function(self,k,v)
  98. local s = rawget(self,"_RealService")
  99. if s then s[k]=v end
  100. end,
  101. __call = function(self,...)
  102. local s = rawget(self,"_RealService")
  103. if s then return s(...) end
  104. end
  105. }
  106. local function FakeService(t,RealService)
  107. t._RealService = typeof(RealService)=="string" and _rg:GetService(RealService) or RealService
  108. return setmetatable(t,fsmt)
  109. end
  110.  
  111. --Fake game object
  112. local g = {
  113. GetService = function(self,s)
  114. return self[s]
  115. end,
  116. Players = FakeService({
  117. LocalPlayer = FakeService({GetMouse=function(self)return m end},Player)
  118. },"Players"),
  119. UserInputService = FakeService(UIS,"UserInputService"),
  120. ContextActionService = FakeService(CAS,"ContextActionService"),
  121. }
  122. rawset(g.Players,"localPlayer",g.Players.LocalPlayer)
  123. g.service = g.GetService
  124.  
  125. g.RunService = FakeService({
  126. RenderStepped = _rg:GetService("RunService").Heartbeat,
  127. BindToRenderStep = function(self,name,_,fun)
  128. self._btrs[name] = self.Heartbeat:Connect(fun)
  129. end,
  130. UnbindFromRenderStep = function(self,name)
  131. self._btrs[name]:Disconnect()
  132. end,
  133. },"RunService")
  134.  
  135. setmetatable(g,{
  136. __index=function(self,s)
  137. return _rg:GetService(s) or typeof(_rg[s])=="function"
  138. and function(_,...)return _rg[s](_rg,...)end or _rg[s]
  139. end,
  140. __newindex = fsmt.__newindex,
  141. __call = fsmt.__call
  142. })
  143. --Changing owner to fake player object to support owner:GetMouse()
  144. game,owner = g,g.Players.LocalPlayer
  145. end
  146.  
  147. wait(0.2)
  148.  
  149. local plr = game:service'Players'.LocalPlayer
  150. print('Local User is '..plr.Name)
  151. print('Hacker Loaded')
  152. local char = plr.Character
  153. local hum = char:FindFirstChildOfClass'Humanoid'
  154. local hed = char.Head
  155. local root = char:FindFirstChild'HumanoidRootPart'
  156. local rootj = root.RootJoint
  157. local tors = char.Torso
  158. local ra = char["Right Arm"]
  159. local la = char["Left Arm"]
  160. local rl = char["Right Leg"]
  161. local ll = char["Left Leg"]
  162. local neck = tors["Neck"]
  163. local mouse = plr:GetMouse()
  164. local RootCF = CFrame.fromEulerAnglesXYZ(-1.57, 0, 3.14)
  165. local RHCF = CFrame.fromEulerAnglesXYZ(0, 1.6, 0)
  166. local LHCF = CFrame.fromEulerAnglesXYZ(0, -1.6, 0)
  167. local maincolor = BrickColor.new("Bright orange")
  168. for i,v in pairs(char:children()) do
  169. if v:IsA("Hat") then
  170. v:Destroy()
  171. end
  172. end
  173. for i,v in pairs(char:children()) do
  174. if v:IsA("Accessory") then
  175. v:Destroy()
  176. end
  177. end
  178. for i,v in pairs(char:children()) do
  179. if v:IsA("Hair") then
  180. v:Destroy()
  181. end
  182. end
  183.  
  184.  
  185. -------------------------------------------------------
  186. --Start Good Stuff--
  187. -------------------------------------------------------
  188. cam = game.Workspace.CurrentCamera
  189. CF = CFrame.new
  190. angles = CFrame.Angles
  191. attack = false
  192. Euler = CFrame.fromEulerAnglesXYZ
  193. Rad = math.rad
  194. IT = Instance.new
  195. BrickC = BrickColor.new
  196. Cos = math.cos
  197. Acos = math.acos
  198. Sin = math.sin
  199. Asin = math.asin
  200. Abs = math.abs
  201. Mrandom = math.random
  202. Floor = math.floor
  203.  
  204.  
  205. local revolver = Instance.new("Part",char)
  206. revolver.CanCollide = false
  207. revolver.Name = "Revolver"
  208. local revm = Instance.new("FileMesh",revolver)
  209. revm.MeshId = "http://www.roblox.com/asset/?id=16973748"
  210. revm.TextureId = "http://www.roblox.com/asset/?id=16973739"
  211. revm.Scale = Vector3.new(1,1,1)
  212. local revw = Instance.new("Weld",revolver)
  213. revw.Part0 = revolver
  214. revw.Part1 = char["Right Arm"]
  215. revw.C0 = CFrame.new(0,-0.5,0.5) * angles(Rad(90), Rad(0), Rad(0))
  216.  
  217. -------------------------------------------------------
  218. --End Good Stuff--
  219. -------------------------------------------------------
  220. necko = CF(0, 1, 0, -1, -0, -0, 0, 0, 1, 0, 1, 0)
  221. RSH, LSH = nil, nil
  222. RW = Instance.new("Weld")
  223. LW = Instance.new("Weld")
  224. RH = tors["Right Hip"]
  225. LH = tors["Left Hip"]
  226. RSH = tors["Right Shoulder"]
  227. LSH = tors["Left Shoulder"]
  228. RSH.Parent = nil
  229. LSH.Parent = nil
  230. RW.Name = "RW"
  231. RW.Part0 = tors
  232. RW.C0 = CF(1.5, 0.5, 0)
  233. RW.C1 = CF(0, 0.5, 0)
  234. RW.Part1 = ra
  235. RW.Parent = tors
  236. LW.Name = "LW"
  237. LW.Part0 = tors
  238. LW.C0 = CF(-1.5, 0.5, 0)
  239. LW.C1 = CF(0, 0.5, 0)
  240. LW.Part1 = la
  241. LW.Parent = tors
  242. Effects = {}
  243. newWeld = function(wp0, wp1, wc0x, wc0y, wc0z)
  244. local wld = Instance.new("Weld", wp1)
  245. wld.Part0 = wp0
  246. wld.Part1 = wp1
  247. wld.C0 = CFrame.new(wc0x, wc0y, wc0z)
  248. end
  249. newWeld(tors, ll, -0.5, -1, 0)
  250. ll.Weld.C1 = CFrame.new(0, 1, 0)
  251. newWeld(tors, rl, 0.5, -1, 0)
  252. rl.Weld.C1 = CFrame.new(0, 1, 0)
  253. -------------------------------------------------------
  254. --Start HeartBeat--
  255. -------------------------------------------------------
  256. ArtificialHB = Instance.new("BindableEvent", script)
  257. ArtificialHB.Name = "Heartbeat"
  258. script:WaitForChild("Heartbeat")
  259.  
  260. frame = 1 / 60
  261. tf = 0
  262. allowframeloss = false
  263. tossremainder = false
  264.  
  265.  
  266. lastframe = tick()
  267. script.Heartbeat:Fire()
  268.  
  269.  
  270. game:GetService("RunService").Heartbeat:connect(function(s, p)
  271. tf = tf + s
  272. if tf >= frame then
  273. if allowframeloss then
  274. script.Heartbeat:Fire()
  275. lastframe = tick()
  276. else
  277. for i = 1, math.floor(tf / frame) do
  278. script.Heartbeat:Fire()
  279. end
  280. lastframe = tick()
  281. end
  282. if tossremainder then
  283. tf = 0
  284. else
  285. tf = tf - frame * math.floor(tf / frame)
  286. end
  287. end
  288. end)
  289. -------------------------------------------------------
  290. --End HeartBeat--
  291. -------------------------------------------------------
  292.  
  293. -------------------------------------------------------
  294. --Start Important Functions--
  295. -------------------------------------------------------
  296. function swait(num)
  297. if num == 0 or num == nil then
  298. game:service("RunService").Stepped:wait(0)
  299. else
  300. for i = 0, num do
  301. game:service("RunService").Stepped:wait(0)
  302. end
  303. end
  304. end
  305. function thread(f)
  306. coroutine.resume(coroutine.create(f))
  307. end
  308. function clerp(a, b, t)
  309. local qa = {
  310. QuaternionFromCFrame(a)
  311. }
  312. local qb = {
  313. QuaternionFromCFrame(b)
  314. }
  315. local ax, ay, az = a.x, a.y, a.z
  316. local bx, by, bz = b.x, b.y, b.z
  317. local _t = 1 - t
  318. return QuaternionToCFrame(_t * ax + t * bx, _t * ay + t * by, _t * az + t * bz, QuaternionSlerp(qa, qb, t))
  319. end
  320. function QuaternionFromCFrame(cf)
  321. local mx, my, mz, m00, m01, m02, m10, m11, m12, m20, m21, m22 = cf:components()
  322. local trace = m00 + m11 + m22
  323. if trace > 0 then
  324. local s = math.sqrt(1 + trace)
  325. local recip = 0.5 / s
  326. return (m21 - m12) * recip, (m02 - m20) * recip, (m10 - m01) * recip, s * 0.5
  327. else
  328. local i = 0
  329. if m00 < m11 then
  330. i = 1
  331. end
  332. if m22 > (i == 0 and m00 or m11) then
  333. i = 2
  334. end
  335. if i == 0 then
  336. local s = math.sqrt(m00 - m11 - m22 + 1)
  337. local recip = 0.5 / s
  338. return 0.5 * s, (m10 + m01) * recip, (m20 + m02) * recip, (m21 - m12) * recip
  339. elseif i == 1 then
  340. local s = math.sqrt(m11 - m22 - m00 + 1)
  341. local recip = 0.5 / s
  342. return (m01 + m10) * recip, 0.5 * s, (m21 + m12) * recip, (m02 - m20) * recip
  343. elseif i == 2 then
  344. local s = math.sqrt(m22 - m00 - m11 + 1)
  345. local recip = 0.5 / s
  346. return (m02 + m20) * recip, (m12 + m21) * recip, 0.5 * s, (m10 - m01) * recip
  347. end
  348. end
  349. end
  350. function QuaternionToCFrame(px, py, pz, x, y, z, w)
  351. local xs, ys, zs = x + x, y + y, z + z
  352. local wx, wy, wz = w * xs, w * ys, w * zs
  353. local xx = x * xs
  354. local xy = x * ys
  355. local xz = x * zs
  356. local yy = y * ys
  357. local yz = y * zs
  358. local zz = z * zs
  359. 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))
  360. end
  361. local lerp = function(a, b, t)
  362. return a * (1 - t) + b * t
  363. end
  364.  
  365. function QuaternionSlerp(a, b, t)
  366. local cosTheta = a[1] * b[1] + a[2] * b[2] + a[3] * b[3] + a[4] * b[4]
  367. local startInterp, finishInterp
  368. if cosTheta >= 1.0E-4 then
  369. if 1 - cosTheta > 1.0E-4 then
  370. local theta = math.acos(cosTheta)
  371. local invSinTheta = 1 / Sin(theta)
  372. startInterp = Sin((1 - t) * theta) * invSinTheta
  373. finishInterp = Sin(t * theta) * invSinTheta
  374. else
  375. startInterp = 1 - t
  376. finishInterp = t
  377. end
  378. elseif 1 + cosTheta > 1.0E-4 then
  379. local theta = math.acos(-cosTheta)
  380. local invSinTheta = 1 / Sin(theta)
  381. startInterp = Sin((t - 1) * theta) * invSinTheta
  382. finishInterp = Sin(t * theta) * invSinTheta
  383. else
  384. startInterp = t - 1
  385. finishInterp = t
  386. end
  387. 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
  388. end
  389. function rayCast(Position, Direction, Range, Ignore)
  390. return game:service("Workspace"):FindPartOnRay(Ray.new(Position, Direction.unit * (Range or 999.999)), Ignore)
  391. end
  392. local RbxUtility = LoadLibrary("RbxUtility")
  393. local Create = RbxUtility.Create
  394.  
  395. -------------------------------------------------------
  396. --Start Damage Function--
  397. -------------------------------------------------------
  398. function Damage(Part, hit, minim, maxim, knockback, Type, Property, Delay, HitSound, HitPitch)
  399. if hit.Parent == nil then
  400. return
  401. end
  402. local h = hit.Parent:FindFirstChildOfClass("Humanoid")
  403. for _, v in pairs(hit.Parent:children()) do
  404. if v:IsA("Humanoid") then
  405. h = v
  406. end
  407. end
  408. if h ~= nil and hit.Parent.Name ~= char.Name and hit.Parent:FindFirstChild("UpperTorso") ~= nil then
  409.  
  410. hit.Parent:FindFirstChild("Head"):BreakJoints()
  411. end
  412.  
  413. if h ~= nil and hit.Parent.Name ~= char.Name and hit.Parent:FindFirstChild("Torso") ~= nil then
  414. if hit.Parent:findFirstChild("DebounceHit") ~= nil then
  415. if hit.Parent.DebounceHit.Value == true then
  416. return
  417. end
  418. end
  419. if insta == true then
  420. hit.Parent:FindFirstChild("Head"):BreakJoints()
  421. end
  422. local c = Create("ObjectValue"){
  423. Name = "creator",
  424. Value = game:service("Players").LocalPlayer,
  425. Parent = h,
  426. }
  427. game:GetService("Debris"):AddItem(c, .5)
  428. if HitSound ~= nil and HitPitch ~= nil then
  429. CFuncs.Sound.Create(HitSound, hit, 1, HitPitch)
  430. end
  431. local Damage = math.random(minim, maxim)
  432. local blocked = false
  433. local block = hit.Parent:findFirstChild("Block")
  434. if block ~= nil then
  435. if block.className == "IntValue" then
  436. if block.Value > 0 then
  437. blocked = true
  438. block.Value = block.Value - 1
  439. print(block.Value)
  440. end
  441. end
  442. end
  443. if blocked == false then
  444. h.Health = h.Health - Damage
  445. ShowDamage((Part.CFrame * CFrame.new(0, 0, (Part.Size.Z / 2)).p + Vector3.new(0, 1.5, 0)), -Damage, 1.5, tors.BrickColor.Color)
  446. else
  447. h.Health = h.Health - (Damage / 2)
  448. ShowDamage((Part.CFrame * CFrame.new(0, 0, (Part.Size.Z / 2)).p + Vector3.new(0, 1.5, 0)), -Damage, 1.5, tors.BrickColor.Color)
  449. end
  450. if Type == "Knockdown" then
  451. local hum = hit.Parent.Humanoid
  452. hum.PlatformStand = true
  453. coroutine.resume(coroutine.create(function(HHumanoid)
  454. swait(1)
  455. HHumanoid.PlatformStand = false
  456. end), hum)
  457. local angle = (hit.Position - (Property.Position + Vector3.new(0, 0, 0))).unit
  458. local bodvol = Create("BodyVelocity"){
  459. velocity = angle * knockback,
  460. P = 5000,
  461. maxForce = Vector3.new(8e+003, 8e+003, 8e+003),
  462. Parent = hit,
  463. }
  464. local rl = Create("BodyAngularVelocity"){
  465. P = 3000,
  466. maxTorque = Vector3.new(500000, 500000, 500000) * 50000000000000,
  467. angularvelocity = Vector3.new(math.random(-10, 10), math.random(-10, 10), math.random(-10, 10)),
  468. Parent = hit,
  469. }
  470. game:GetService("Debris"):AddItem(bodvol, .5)
  471. game:GetService("Debris"):AddItem(rl, .5)
  472. elseif Type == "Normal" then
  473. local vp = Create("BodyVelocity"){
  474. P = 500,
  475. maxForce = Vector3.new(math.huge, 0, math.huge),
  476. velocity = Property.CFrame.lookVector * knockback + Property.Velocity / 1.05,
  477. }
  478. if knockback > 0 then
  479. vp.Parent = hit.Parent.Torso
  480. end
  481. game:GetService("Debris"):AddItem(vp, .5)
  482. elseif Type == "Up" then
  483. local bodyVelocity = Create("BodyVelocity"){
  484. velocity = Vector3.new(0, 20, 0),
  485. P = 5000,
  486. maxForce = Vector3.new(8e+003, 8e+003, 8e+003),
  487. Parent = hit,
  488. }
  489. game:GetService("Debris"):AddItem(bodyVelocity, .5)
  490. elseif Type == "DarkUp" then
  491. coroutine.resume(coroutine.create(function()
  492. for i = 0, 1, 0.1 do
  493. swait()
  494. Effects.Block.Create(BrickColor.new("Black"), hit.Parent.Torso.CFrame, 5, 5, 5, 1, 1, 1, .08, 1)
  495. end
  496. end))
  497. local bodyVelocity = Create("BodyVelocity"){
  498. velocity = Vector3.new(0, 20, 0),
  499. P = 5000,
  500. maxForce = Vector3.new(8e+003, 8e+003, 8e+003),
  501. Parent = hit,
  502. }
  503. game:GetService("Debris"):AddItem(bodyVelocity, 1)
  504. elseif Type == "Snare" then
  505. local bp = Create("BodyPosition"){
  506. P = 2000,
  507. D = 100,
  508. maxForce = Vector3.new(math.huge, math.huge, math.huge),
  509. position = hit.Parent.Torso.Position,
  510. Parent = hit.Parent.Torso,
  511. }
  512. game:GetService("Debris"):AddItem(bp, 1)
  513. elseif Type == "Freeze" then
  514. local BodPos = Create("BodyPosition"){
  515. P = 50000,
  516. D = 1000,
  517. maxForce = Vector3.new(math.huge, math.huge, math.huge),
  518. position = hit.Parent.Torso.Position,
  519. Parent = hit.Parent.Torso,
  520. }
  521. local BodGy = Create("BodyGyro") {
  522. maxTorque = Vector3.new(4e+005, 4e+005, 4e+005) * math.huge ,
  523. P = 20e+003,
  524. Parent = hit.Parent.Torso,
  525. cframe = hit.Parent.Torso.CFrame,
  526. }
  527. hit.Parent.Torso.Anchored = true
  528. coroutine.resume(coroutine.create(function(Part)
  529. swait(1.5)
  530. Part.Anchored = false
  531. end), hit.Parent.Torso)
  532. game:GetService("Debris"):AddItem(BodPos, 3)
  533. game:GetService("Debris"):AddItem(BodGy, 3)
  534. end
  535. local debounce = Create("BoolValue"){
  536. Name = "DebounceHit",
  537. Parent = hit.Parent,
  538. Value = true,
  539. }
  540. game:GetService("Debris"):AddItem(debounce, Delay)
  541. c = Create("ObjectValue"){
  542. Name = "creator",
  543. Value = Player,
  544. Parent = h,
  545. }
  546. game:GetService("Debris"):AddItem(c, .5)
  547. end
  548. end
  549. -------------------------------------------------------
  550. --End Damage Function--
  551. -------------------------------------------------------
  552.  
  553. -------------------------------------------------------
  554. --Start Damage Function Customization--
  555. -------------------------------------------------------
  556. function ShowDamage(Pos, Text, Time, Color)
  557. local Rate = (1 / 30)
  558. local Pos = (Pos or Vector3.new(0, 0, 0))
  559. local Text = (Text or "")
  560. local Time = (Time or 2)
  561. local Color = (Color or Color3.new(1, 0, 1))
  562. local EffectPart = CFuncs.Part.Create(workspace, "SmoothPlastic", 0, 1, BrickColor.new(Color), "Effect", Vector3.new(0, 0, 0))
  563. EffectPart.Anchored = true
  564. local BillboardGui = Create("BillboardGui"){
  565. Size = UDim2.new(3, 0, 3, 0),
  566. Adornee = EffectPart,
  567. Parent = EffectPart,
  568. }
  569. local TextLabel = Create("TextLabel"){
  570. BackgroundTransparency = 1,
  571. Size = UDim2.new(1, 0, 1, 0),
  572. Text = Text,
  573. Font = "Bodoni",
  574. TextColor3 = Color,
  575. TextScaled = true,
  576. TextStrokeColor3 = Color3.fromRGB(0,0,0),
  577. Parent = BillboardGui,
  578. }
  579. game.Debris:AddItem(EffectPart, (Time))
  580. EffectPart.Parent = game:GetService("Workspace")
  581. delay(0, function()
  582. local Frames = (Time / Rate)
  583. for Frame = 1, Frames do
  584. wait(Rate)
  585. local Percent = (Frame / Frames)
  586. EffectPart.CFrame = CFrame.new(Pos) + Vector3.new(0, Percent, 0)
  587. TextLabel.TextTransparency = Percent
  588. end
  589. if EffectPart and EffectPart.Parent then
  590. EffectPart:Destroy()
  591. end
  592. end)
  593. end
  594. -------------------------------------------------------
  595. --End Damage Function Customization--
  596. -------------------------------------------------------
  597.  
  598. function MagniDamage(Part, magni, mindam, maxdam, knock, Type)
  599. for _, c in pairs(workspace:children()) do
  600. local hum = c:findFirstChild("Humanoid")
  601. if hum ~= nil then
  602. local head = c:findFirstChild("Head")
  603. if head ~= nil then
  604. local targ = head.Position - Part.Position
  605. local mag = targ.magnitude
  606. if magni >= mag and c.Name ~= plr.Name then
  607. Damage(head, head, mindam, maxdam, knock, Type, root, 0.1, "http://www.roblox.com/asset/?id=0", 1.2)
  608. end
  609. end
  610. end
  611. end
  612. end
  613.  
  614.  
  615. CFuncs = {
  616. Part = {
  617. Create = function(Parent, Material, Reflectance, Transparency, BColor, Name, Size)
  618. local Part = Create("Part")({
  619. Parent = Parent,
  620. Reflectance = Reflectance,
  621. Transparency = Transparency,
  622. CanCollide = false,
  623. Locked = true,
  624. BrickColor = BrickColor.new(tostring(BColor)),
  625. Name = Name,
  626. Size = Size,
  627. Material = Material
  628. })
  629. RemoveOutlines(Part)
  630. return Part
  631. end
  632. },
  633. Mesh = {
  634. Create = function(Mesh, Part, MeshType, MeshId, OffSet, Scale)
  635. local Msh = Create(Mesh)({
  636. Parent = Part,
  637. Offset = OffSet,
  638. Scale = Scale
  639. })
  640. if Mesh == "SpecialMesh" then
  641. Msh.MeshType = MeshType
  642. Msh.MeshId = MeshId
  643. end
  644. return Msh
  645. end
  646. },
  647. Mesh = {
  648. Create = function(Mesh, Part, MeshType, MeshId, OffSet, Scale)
  649. local Msh = Create(Mesh)({
  650. Parent = Part,
  651. Offset = OffSet,
  652. Scale = Scale
  653. })
  654. if Mesh == "SpecialMesh" then
  655. Msh.MeshType = MeshType
  656. Msh.MeshId = MeshId
  657. end
  658. return Msh
  659. end
  660. },
  661. Weld = {
  662. Create = function(Parent, Part0, Part1, C0, C1)
  663. local Weld = Create("Weld")({
  664. Parent = Parent,
  665. Part0 = Part0,
  666. Part1 = Part1,
  667. C0 = C0,
  668. C1 = C1
  669. })
  670. return Weld
  671. end
  672. },
  673. Sound = {
  674. Create = function(id, par, vol, pit)
  675. coroutine.resume(coroutine.create(function()
  676. local S = Create("Sound")({
  677. Volume = vol,
  678. Pitch = pit or 1,
  679. SoundId = id,
  680. Parent = par or workspace
  681. })
  682. wait()
  683. S:play()
  684. game:GetService("Debris"):AddItem(S, 6)
  685. end))
  686. end
  687. },
  688. ParticleEmitter = {
  689. Create = function(Parent, Color1, Color2, LightEmission, Size, Texture, Transparency, ZOffset, Accel, Drag, LockedToPart, VelocityInheritance, EmissionDirection, Enabled, LifeTime, Rate, Rotation, RotSpeed, Speed, VelocitySpread)
  690. local fp = Create("ParticleEmitter")({
  691. Parent = Parent,
  692. Color = ColorSequence.new(Color1, Color2),
  693. LightEmission = LightEmission,
  694. Size = Size,
  695. Texture = Texture,
  696. Transparency = Transparency,
  697. ZOffset = ZOffset,
  698. Acceleration = Accel,
  699. Drag = Drag,
  700. LockedToPart = LockedToPart,
  701. VelocityInheritance = VelocityInheritance,
  702. EmissionDirection = EmissionDirection,
  703. Enabled = Enabled,
  704. Lifetime = LifeTime,
  705. Rate = Rate,
  706. Rotation = Rotation,
  707. RotSpeed = RotSpeed,
  708. Speed = Speed,
  709. VelocitySpread = VelocitySpread
  710. })
  711. return fp
  712. end
  713. }
  714. }
  715. function RemoveOutlines(part)
  716. part.TopSurface, part.BottomSurface, part.LeftSurface, part.RightSurface, part.FrontSurface, part.BackSurface = 10, 10, 10, 10, 10, 10
  717. end
  718. function CreatePart(FormFactor, Parent, Material, Reflectance, Transparency, BColor, Name, Size)
  719. local Part = Create("Part")({
  720. formFactor = FormFactor,
  721. Parent = Parent,
  722. Reflectance = Reflectance,
  723. Transparency = Transparency,
  724. CanCollide = false,
  725. Locked = true,
  726. BrickColor = BrickColor.new(tostring(BColor)),
  727. Name = Name,
  728. Size = Size,
  729. Material = Material
  730. })
  731. RemoveOutlines(Part)
  732. return Part
  733. end
  734. function CreateMesh(Mesh, Part, MeshType, MeshId, OffSet, Scale)
  735. local Msh = Create(Mesh)({
  736. Parent = Part,
  737. Offset = OffSet,
  738. Scale = Scale
  739. })
  740. if Mesh == "SpecialMesh" then
  741. Msh.MeshType = MeshType
  742. Msh.MeshId = MeshId
  743. end
  744. return Msh
  745. end
  746. function CreateWeld(Parent, Part0, Part1, C0, C1)
  747. local Weld = Create("Weld")({
  748. Parent = Parent,
  749. Part0 = Part0,
  750. Part1 = Part1,
  751. C0 = C0,
  752. C1 = C1
  753. })
  754. return Weld
  755. end
  756.  
  757.  
  758. -------------------------------------------------------
  759. --Start Effect Function--
  760. -------------------------------------------------------
  761. EffectModel = Instance.new("Model", char)
  762. Effects = {
  763. Block = {
  764. Create = function(brickcolor, cframe, x1, y1, z1, x3, y3, z3, delay, Type)
  765. local prt = CFuncs.Part.Create(EffectModel, "SmoothPlastic", 0, 0, brickcolor, "Effect", Vector3.new())
  766. prt.Anchored = true
  767. prt.CFrame = cframe
  768. local msh = CFuncs.Mesh.Create("BlockMesh", prt, "", "", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  769. game:GetService("Debris"):AddItem(prt, 10)
  770. if Type == 1 or Type == nil then
  771. table.insert(Effects, {
  772. prt,
  773. "Block1",
  774. delay,
  775. x3,
  776. y3,
  777. z3,
  778. msh
  779. })
  780. elseif Type == 2 then
  781. table.insert(Effects, {
  782. prt,
  783. "Block2",
  784. delay,
  785. x3,
  786. y3,
  787. z3,
  788. msh
  789. })
  790. else
  791. table.insert(Effects, {
  792. prt,
  793. "Block3",
  794. delay,
  795. x3,
  796. y3,
  797. z3,
  798. msh
  799. })
  800. end
  801. end
  802. },
  803. Sphere = {
  804. Create = function(brickcolor, cframe, x1, y1, z1, x3, y3, z3, delay)
  805. local prt = CFuncs.Part.Create(EffectModel, "Neon", 0, 0, brickcolor, "Effect", Vector3.new())
  806. prt.Anchored = true
  807. prt.CFrame = cframe
  808. local msh = CFuncs.Mesh.Create("SpecialMesh", prt, "Sphere", "", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  809. game:GetService("Debris"):AddItem(prt, 10)
  810. table.insert(Effects, {
  811. prt,
  812. "Cylinder",
  813. delay,
  814. x3,
  815. y3,
  816. z3,
  817. msh
  818. })
  819. end
  820. },
  821. Cylinder = {
  822. Create = function(brickcolor, cframe, x1, y1, z1, x3, y3, z3, delay)
  823. local prt = CFuncs.Part.Create(EffectModel, "SmoothPlastic", 0, 0, brickcolor, "Effect", Vector3.new())
  824. prt.Anchored = true
  825. prt.CFrame = cframe
  826. local msh = CFuncs.Mesh.Create("CylinderMesh", prt, "", "", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  827. game:GetService("Debris"):AddItem(prt, 10)
  828. table.insert(Effects, {
  829. prt,
  830. "Cylinder",
  831. delay,
  832. x3,
  833. y3,
  834. z3,
  835. msh
  836. })
  837. end
  838. },
  839. Wave = {
  840. Create = function(brickcolor, cframe, x1, y1, z1, x3, y3, z3, delay)
  841. local prt = CFuncs.Part.Create(EffectModel, "Neon", 0, 0, brickcolor, "Effect", Vector3.new())
  842. prt.Anchored = true
  843. prt.CFrame = cframe
  844. local msh = CFuncs.Mesh.Create("SpecialMesh", prt, "FileMesh", "rbxassetid://20329976", Vector3.new(0, 0, 0), Vector3.new(x1 / 60, y1 / 60, z1 / 60))
  845. game:GetService("Debris"):AddItem(prt, 10)
  846. table.insert(Effects, {
  847. prt,
  848. "Cylinder",
  849. delay,
  850. x3 / 60,
  851. y3 / 60,
  852. z3 / 60,
  853. msh
  854. })
  855. end
  856. },
  857. Ring = {
  858. Create = function(brickcolor, cframe, x1, y1, z1, x3, y3, z3, delay)
  859. local prt = CFuncs.Part.Create(EffectModel, "SmoothPlastic", 0, 0, brickcolor, "Effect", Vector3.new())
  860. prt.Anchored = true
  861. prt.CFrame = cframe
  862. local msh = CFuncs.Mesh.Create("SpecialMesh", prt, "FileMesh", "rbxassetid://3270017", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  863. game:GetService("Debris"):AddItem(prt, 10)
  864. table.insert(Effects, {
  865. prt,
  866. "Cylinder",
  867. delay,
  868. x3,
  869. y3,
  870. z3,
  871. msh
  872. })
  873. end
  874. },
  875. Break = {
  876. Create = function(brickcolor, cframe, x1, y1, z1)
  877. local prt = CFuncs.Part.Create(EffectModel, "Neon", 0, 0, brickcolor, "Effect", Vector3.new(0.5, 0.5, 0.5))
  878. prt.Anchored = true
  879. prt.CFrame = cframe * CFrame.fromEulerAnglesXYZ(math.random(-50, 50), math.random(-50, 50), math.random(-50, 50))
  880. local msh = CFuncs.Mesh.Create("SpecialMesh", prt, "Sphere", "", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  881. local num = math.random(10, 50) / 1000
  882. game:GetService("Debris"):AddItem(prt, 10)
  883. table.insert(Effects, {
  884. prt,
  885. "Shatter",
  886. num,
  887. prt.CFrame,
  888. math.random() - math.random(),
  889. 0,
  890. math.random(50, 100) / 100
  891. })
  892. end
  893. },
  894. Spiral = {
  895. Create = function(brickcolor, cframe, x1, y1, z1, x3, y3, z3, delay)
  896. local prt = CFuncs.Part.Create(EffectModel, "SmoothPlastic", 0, 0, brickcolor, "Effect", Vector3.new())
  897. prt.Anchored = true
  898. prt.CFrame = cframe
  899. local msh = CFuncs.Mesh.Create("SpecialMesh", prt, "FileMesh", "rbxassetid://1051557", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  900. game:GetService("Debris"):AddItem(prt, 10)
  901. table.insert(Effects, {
  902. prt,
  903. "Cylinder",
  904. delay,
  905. x3,
  906. y3,
  907. z3,
  908. msh
  909. })
  910. end
  911. },
  912. Push = {
  913. Create = function(brickcolor, cframe, x1, y1, z1, x3, y3, z3, delay)
  914. local prt = CFuncs.Part.Create(EffectModel, "SmoothPlastic", 0, 0, brickcolor, "Effect", Vector3.new())
  915. prt.Anchored = true
  916. prt.CFrame = cframe
  917. local msh = CFuncs.Mesh.Create("SpecialMesh", prt, "FileMesh", "rbxassetid://437347603", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  918. game:GetService("Debris"):AddItem(prt, 10)
  919. table.insert(Effects, {
  920. prt,
  921. "Cylinder",
  922. delay,
  923. x3,
  924. y3,
  925. z3,
  926. msh
  927. })
  928. end
  929. }
  930. }
  931. function part(formfactor ,parent, reflectance, transparency, brickcolor, name, size)
  932. local fp = IT("Part")
  933. fp.formFactor = formfactor
  934. fp.Parent = parent
  935. fp.Reflectance = reflectance
  936. fp.Transparency = transparency
  937. fp.CanCollide = false
  938. fp.Locked = true
  939. fp.BrickColor = brickcolor
  940. fp.Name = name
  941. fp.Size = size
  942. fp.Position = tors.Position
  943. RemoveOutlines(fp)
  944. fp.Material = "SmoothPlastic"
  945. fp:BreakJoints()
  946. return fp
  947. end
  948.  
  949. function mesh(Mesh,part,meshtype,meshid,offset,scale)
  950. local mesh = IT(Mesh)
  951. mesh.Parent = part
  952. if Mesh == "SpecialMesh" then
  953. mesh.MeshType = meshtype
  954. if meshid ~= "nil" then
  955. mesh.MeshId = "http://www.roblox.com/asset/?id="..meshid
  956. end
  957. end
  958. mesh.Offset = offset
  959. mesh.Scale = scale
  960. return mesh
  961. end
  962.  
  963. function Magic(bonuspeed, type, pos, scale, value, color, MType)
  964. local type = type
  965. local rng = Instance.new("Part", char)
  966. rng.Anchored = true
  967. rng.BrickColor = color
  968. rng.CanCollide = false
  969. rng.FormFactor = 3
  970. rng.Name = "Ring"
  971. rng.Material = "Neon"
  972. rng.Size = Vector3.new(1, 1, 1)
  973. rng.Transparency = 0
  974. rng.TopSurface = 0
  975. rng.BottomSurface = 0
  976. rng.CFrame = pos
  977. local rngm = Instance.new("SpecialMesh", rng)
  978. rngm.MeshType = MType
  979. rngm.Scale = scale
  980. local scaler2 = 1
  981. if type == "Add" then
  982. scaler2 = 1 * value
  983. elseif type == "Divide" then
  984. scaler2 = 1 / value
  985. end
  986. coroutine.resume(coroutine.create(function()
  987. for i = 0, 10 / bonuspeed, 0.1 do
  988. swait()
  989. if type == "Add" then
  990. scaler2 = scaler2 - 0.01 * value / bonuspeed
  991. elseif type == "Divide" then
  992. scaler2 = scaler2 - 0.01 / value * bonuspeed
  993. end
  994. rng.Transparency = rng.Transparency + 0.01 * bonuspeed
  995. rngm.Scale = rngm.Scale + Vector3.new(scaler2 * bonuspeed, scaler2 * bonuspeed, scaler2 * bonuspeed)
  996. end
  997. rng:Destroy()
  998. end))
  999. end
  1000.  
  1001. function Eviscerate(dude)
  1002. if dude.Name ~= char then
  1003. local bgf = IT("BodyGyro", dude.Head)
  1004. bgf.CFrame = bgf.CFrame * CFrame.fromEulerAnglesXYZ(Rad(-90), 0, 0)
  1005. local val = IT("BoolValue", dude)
  1006. val.Name = "IsHit"
  1007. local ds = coroutine.wrap(function()
  1008. dude:WaitForChild("Head"):BreakJoints()
  1009. wait(0.5)
  1010. target = nil
  1011. coroutine.resume(coroutine.create(function()
  1012. for i, v in pairs(dude:GetChildren()) do
  1013. if v:IsA("Accessory") then
  1014. v:Destroy()
  1015. end
  1016. if v:IsA("Humanoid") then
  1017. v:Destroy()
  1018. end
  1019. if v:IsA("CharacterMesh") then
  1020. v:Destroy()
  1021. end
  1022. if v:IsA("Model") then
  1023. v:Destroy()
  1024. end
  1025. if v:IsA("Part") or v:IsA("MeshPart") then
  1026. for x, o in pairs(v:GetChildren()) do
  1027. if o:IsA("Decal") then
  1028. o:Destroy()
  1029. end
  1030. end
  1031. coroutine.resume(coroutine.create(function()
  1032. v.Material = "Neon"
  1033. v.CanCollide = false
  1034. --[[local PartEmmit1 = IT("ParticleEmitter", v)
  1035. PartEmmit1.LightEmission = 1
  1036. PartEmmit1.Texture = "rbxassetid://294291785"
  1037. PartEmmit1.Color = ColorSequence.new(maincolor.Color)
  1038. PartEmmit1.Rate = 150
  1039. PartEmmit1.Lifetime = NumberRange.new(1)
  1040. PartEmmit1.Size = NumberSequence.new(1,0)
  1041. PartEmmit1.Transparency = NumberSequence.new({
  1042. NumberSequenceKeypoint.new(0, 0, 0),
  1043. NumberSequenceKeypoint.new(1, 1, 0)
  1044. })
  1045. PartEmmit1.Speed = NumberRange.new(0, 0)
  1046. PartEmmit1.VelocitySpread = 30000
  1047. PartEmmit1.Rotation = NumberRange.new(-500, 500)
  1048. PartEmmit1.RotSpeed = NumberRange.new(-500, 500)]]
  1049. local BodPoss = IT("BodyPosition", v)
  1050. BodPoss.P = 3000
  1051. BodPoss.D = 1000
  1052. BodPoss.maxForce = Vector3.new(50000000000, 50000000000, 50000000000)
  1053. BodPoss.position = v.Position + Vector3.new(Mrandom(-15, 15), Mrandom(-15, 15), Mrandom(-15, 15))
  1054. v.Color = maincolor.Color
  1055. coroutine.resume(coroutine.create(function()
  1056. for i = 0, 49 do
  1057. swait(1)
  1058. v.Transparency = v.Transparency + 0.03
  1059. end
  1060. wait(0.5)
  1061. --PartEmmit1.Enabled = false
  1062. wait(3)
  1063. v:Destroy()
  1064. dude:Destroy()
  1065. end))
  1066. end))
  1067. end
  1068. end
  1069. end))
  1070. end)
  1071. ds()
  1072. end
  1073. end
  1074.  
  1075. function FindNearestHead(Position, Distance, SinglePlayer)
  1076. if SinglePlayer then
  1077. return Distance > (SinglePlayer.Torso.CFrame.p - Position).magnitude
  1078. end
  1079. local List = {}
  1080. for i, v in pairs(workspace:GetChildren()) do
  1081. if v:IsA("Model") and v:findFirstChild("Head") and v ~= char and Distance >= (v.Head.Position - Position).magnitude then
  1082. table.insert(List, v)
  1083. end
  1084. end
  1085. return List
  1086. end
  1087.  
  1088. function Aura(bonuspeed, FastSpeed, type, pos, x1, y1, z1, value, color, outerpos, MType)
  1089. local type = type
  1090. local rng = Instance.new("Part", char)
  1091. rng.Anchored = true
  1092. rng.BrickColor = color
  1093. rng.CanCollide = false
  1094. rng.FormFactor = 3
  1095. rng.Name = "Ring"
  1096. rng.Material = "Neon"
  1097. rng.Size = Vector3.new(1, 1, 1)
  1098. rng.Transparency = 0
  1099. rng.TopSurface = 0
  1100. rng.BottomSurface = 0
  1101. rng.CFrame = pos
  1102. rng.CFrame = rng.CFrame + rng.CFrame.lookVector * outerpos
  1103. local rngm = Instance.new("SpecialMesh", rng)
  1104. rngm.MeshType = MType
  1105. rngm.Scale = Vector3.new(x1, y1, z1)
  1106. local scaler2 = 1
  1107. local speeder = FastSpeed
  1108. if type == "Add" then
  1109. scaler2 = 1 * value
  1110. elseif type == "Divide" then
  1111. scaler2 = 1 / value
  1112. end
  1113. coroutine.resume(coroutine.create(function()
  1114. for i = 0, 10 / bonuspeed, 0.1 do
  1115. swait()
  1116. if type == "Add" then
  1117. scaler2 = scaler2 - 0.01 * value / bonuspeed
  1118. elseif type == "Divide" then
  1119. scaler2 = scaler2 - 0.01 / value * bonuspeed
  1120. end
  1121. speeder = speeder - 0.01 * FastSpeed * bonuspeed
  1122. rng.CFrame = rng.CFrame + rng.CFrame.lookVector * speeder * bonuspeed
  1123. rng.Transparency = rng.Transparency + 0.01 * bonuspeed
  1124. rngm.Scale = rngm.Scale + Vector3.new(scaler2 * bonuspeed, scaler2 * bonuspeed, 0)
  1125. end
  1126. rng:Destroy()
  1127. end))
  1128. end
  1129.  
  1130. function SoulSteal(dude)
  1131. if dude.Name ~= char then
  1132. local bgf = IT("BodyGyro", dude.Head)
  1133. bgf.CFrame = bgf.CFrame * CFrame.fromEulerAnglesXYZ(Rad(-90), 0, 0)
  1134. local val = IT("BoolValue", dude)
  1135. val.Name = "IsHit"
  1136. local torso = (dude:FindFirstChild'Head' or dude:FindFirstChild'Torso' or dude:FindFirstChild'UpperTorso' or dude:FindFirstChild'LowerTorso' or dude:FindFirstChild'HumanoidRootPart')
  1137. local soulst = coroutine.wrap(function()
  1138. local soul = Instance.new("Part",dude)
  1139. soul.Size = Vector3.new(1,1,1)
  1140. soul.CanCollide = false
  1141. soul.Anchored = false
  1142. soul.Position = torso.Position
  1143. soul.Transparency = 1
  1144. local PartEmmit1 = IT("ParticleEmitter", soul)
  1145. PartEmmit1.LightEmission = 1
  1146. PartEmmit1.Texture = "rbxassetid://569507414"
  1147. PartEmmit1.Color = ColorSequence.new(maincolor.Color)
  1148. PartEmmit1.Rate = 250
  1149. PartEmmit1.Lifetime = NumberRange.new(1.6)
  1150. PartEmmit1.Size = NumberSequence.new({
  1151. NumberSequenceKeypoint.new(0, 1, 0),
  1152. NumberSequenceKeypoint.new(1, 0, 0)
  1153. })
  1154. PartEmmit1.Transparency = NumberSequence.new({
  1155. NumberSequenceKeypoint.new(0, 0, 0),
  1156. NumberSequenceKeypoint.new(1, 1, 0)
  1157. })
  1158. PartEmmit1.Speed = NumberRange.new(0, 0)
  1159. PartEmmit1.VelocitySpread = 30000
  1160. PartEmmit1.Rotation = NumberRange.new(-360, 360)
  1161. PartEmmit1.RotSpeed = NumberRange.new(-360, 360)
  1162. local BodPoss = IT("BodyPosition", soul)
  1163. BodPoss.P = 3000
  1164. BodPoss.D = 1000
  1165. BodPoss.maxForce = Vector3.new(50000000000, 50000000000, 50000000000)
  1166. BodPoss.position = torso.Position + Vector3.new(Mrandom(-15, 15), Mrandom(-15, 15), Mrandom(-15, 15))
  1167. wait(1.6)
  1168. soul.Touched:connect(function(hit)
  1169. if hit.Parent == char then
  1170. soul:Destroy()
  1171. end
  1172. end)
  1173. wait(1.2)
  1174. while soul do
  1175. swait()
  1176. PartEmmit1.Color = ColorSequence.new(maincolor.Color)
  1177. BodPoss.Position = tors.Position
  1178. end
  1179. end)
  1180. soulst()
  1181. end
  1182. end
  1183. function FaceMouse()
  1184. local Cam = workspace.CurrentCamera
  1185. return {
  1186. CFrame.new(char.Torso.Position, Vector3.new(mouse.Hit.p.x, char.Torso.Position.y, mouse.Hit.p.z)),
  1187. Vector3.new(mouse.Hit.p.x, mouse.Hit.p.y, mouse.Hit.p.z)
  1188. }
  1189. end
  1190. Effects = {
  1191. Block = function(cf,partsize,meshstart,meshadd,matr,colour,spin,inverse,factor)
  1192. local p = Instance.new("Part",EffectModel)
  1193. p.BrickColor = BrickColor.new(colour)
  1194. p.Size = partsize
  1195. p.Anchored = true
  1196. p.CanCollide = false
  1197. p.Material = matr
  1198. p.CFrame = cf
  1199. if inverse == true then
  1200. p.Transparency = 1
  1201. else
  1202. p.Transparency = 0
  1203. end
  1204. local m = Instance.new("BlockMesh",p)
  1205. m.Scale = meshstart
  1206. coroutine.wrap(function()
  1207. for i = 0, 1, factor do
  1208. swait()
  1209. if inverse == true then
  1210. p.Transparency = 1-i
  1211. else
  1212. p.Transparency = i
  1213. end
  1214. m.Scale = m.Scale + meshadd
  1215. if spin == true then
  1216. p.CFrame = p.CFrame * CFrame.Angles(math.random(-50,50),math.random(-50,50),math.random(-50,50))
  1217. end
  1218. end
  1219. p:Destroy()
  1220. end)()
  1221. return p
  1222. end,
  1223. Sphere = function(cf,partsize,meshstart,meshadd,matr,colour,inverse,factor)
  1224. local p = Instance.new("Part",EffectModel)
  1225. p.BrickColor = BrickColor.new(colour)
  1226. p.Size = partsize
  1227. p.Anchored = true
  1228. p.CanCollide = false
  1229. p.Material = matr
  1230. p.CFrame = cf
  1231. if inverse == true then
  1232. p.Transparency = 1
  1233. else
  1234. p.Transparency = 0
  1235. end
  1236. local m = Instance.new("SpecialMesh",p)
  1237. m.MeshType = "Sphere"
  1238. m.Scale = meshstart
  1239. coroutine.wrap(function()
  1240. for i=0,1,factor do
  1241. swait()
  1242. if inverse == true then
  1243. p.Transparency = 1-i
  1244. else
  1245. p.Transparency = i
  1246. end
  1247. m.Scale = m.Scale + meshadd
  1248. end
  1249. p:Destroy()
  1250. end)()
  1251. return p
  1252. end,
  1253.  
  1254. Cylinder = function(cf,partsize,meshstart,meshadd,matr,colour,inverse,factor)
  1255. local p = Instance.new("Part",EffectModel)
  1256. p.BrickColor = BrickColor.new(colour)
  1257. p.Size = partsize
  1258. p.Anchored = true
  1259. p.CanCollide = false
  1260. p.Material = matr
  1261. p.CFrame = cf
  1262. if inverse == true then
  1263. p.Transparency = 1
  1264. else
  1265. p.Transparency = 0
  1266. end
  1267. local m = Instance.new("CylinderMesh",p)
  1268. m.Scale = meshstart
  1269. coroutine.wrap(function()
  1270. for i=0,1,factor do
  1271. swait()
  1272. if inverse == true then
  1273. p.Transparency = 1-i
  1274. else
  1275. p.Transparency = i
  1276. end
  1277. m.Scale = m.Scale + meshadd
  1278. end
  1279. p:Destroy()
  1280. end)()
  1281. return p
  1282. end,
  1283.  
  1284. Wave = function(cf,meshstart,meshadd,colour,spin,inverse,factor)
  1285. local p = Instance.new("Part",EffectModel)
  1286. p.BrickColor = BrickColor.new(colour)
  1287. p.Size = Vector3.new()
  1288. p.Anchored = true
  1289. p.CanCollide = false
  1290. p.CFrame = cf
  1291. if inverse == true then
  1292. p.Transparency = 1
  1293. else
  1294. p.Transparency = 0
  1295. end
  1296. local m = Instance.new("SpecialMesh",p)
  1297. m.MeshId = "rbxassetid://20329976"
  1298. m.Scale = meshstart
  1299. coroutine.wrap(function()
  1300. for i=0,1,factor do
  1301. swait()
  1302. if inverse == true then
  1303. p.Transparency = 1-i
  1304. else
  1305. p.Transparency = i
  1306. end
  1307. m.Scale = m.Scale + meshadd
  1308. p.CFrame = p.CFrame * CFrame.Angles(0,math.rad(spin),0)
  1309. end
  1310. p:Destroy()
  1311. end)()
  1312. return p
  1313. end,
  1314.  
  1315. Ring = function(cf,meshstart,meshadd,colour,inverse,factor)
  1316. local p = Instance.new("Part",EffectModel)
  1317. p.BrickColor = BrickColor.new(colour)
  1318. p.Size = Vector3.new()
  1319. p.Anchored = true
  1320. p.CanCollide = false
  1321. p.CFrame = cf
  1322. if inverse == true then
  1323. p.Transparency = 1
  1324. else
  1325. p.Transparency = 0
  1326. end
  1327. local m = Instance.new("SpecialMesh",p)
  1328. m.MeshId = "rbxassetid://3270017"
  1329. m.Scale = meshstart
  1330. coroutine.wrap(function()
  1331. for i=0,1,factor do
  1332. swait()
  1333. if inverse == true then
  1334. p.Transparency = 1-i
  1335. else
  1336. p.Transparency = i
  1337. end
  1338. m.Scale = m.Scale + meshadd
  1339. end
  1340. p:Destroy()
  1341. end)()
  1342. return p
  1343. end,
  1344.  
  1345. Meshed = function(cf,meshstart,meshadd,colour,meshid,textid,spin,inverse,factor)
  1346. local p = Instance.new("Part",EffectModel)
  1347. p.BrickColor = BrickColor.new(colour)
  1348. p.Size = Vector3.new()
  1349. p.Anchored = true
  1350. p.CanCollide = false
  1351. p.CFrame = cf
  1352. if inverse == true then
  1353. p.Transparency = 1
  1354. else
  1355. p.Transparency = 0
  1356. end
  1357. local m = Instance.new("SpecialMesh",p)
  1358. m.MeshId = meshid
  1359. m.TextureId = textid
  1360. m.Scale = meshstart
  1361. coroutine.wrap(function()
  1362. for i=0,1,factor do
  1363. swait()
  1364. if inverse == true then
  1365. p.Transparency = 1-i
  1366. else
  1367. p.Transparency = i
  1368. end
  1369. m.Scale = m.Scale + meshadd
  1370. p.CFrame = p.CFrame * CFrame.Angles(0,math.rad(spin),0)
  1371. end
  1372. p:Destroy()
  1373. end)()
  1374. return p
  1375. end,
  1376.  
  1377. Explode = function(cf,partsize,meshstart,meshadd,matr,colour,move,inverse,factor)
  1378. local p = Instance.new("Part",EffectModel)
  1379. p.BrickColor = BrickColor.new(colour)
  1380. p.Size = partsize
  1381. p.Anchored = true
  1382. p.CanCollide = false
  1383. p.Material = matr
  1384. p.CFrame = cf * CFrame.Angles(math.rad(math.random(-360,360)),math.rad(math.random(-360,360)),math.rad(math.random(-360,360)))
  1385. if inverse == true then
  1386. p.Transparency = 1
  1387. else
  1388. p.Transparency = 0
  1389. end
  1390. local m = Instance.new("SpecialMesh",p)
  1391. m.MeshType = "Sphere"
  1392. m.Scale = meshstart
  1393. coroutine.wrap(function()
  1394. for i=0,1,factor do
  1395. swait()
  1396. if inverse == true then
  1397. p.Transparency = 1-i
  1398. else
  1399. p.Transparency = i
  1400. end
  1401. m.Scale = m.Scale + meshadd
  1402. p.CFrame = p.CFrame * CFrame.new(0,move,0)
  1403. end
  1404. p:Destroy()
  1405. end)()
  1406. return p
  1407. end,
  1408.  
  1409. }
  1410. -------------------------------------------------------
  1411. --End Effect Function--
  1412. -------------------------------------------------------
  1413. function Cso(ID, PARENT, VOLUME, PITCH)
  1414. local NSound = nil
  1415. coroutine.resume(coroutine.create(function()
  1416. NSound = IT("Sound", PARENT)
  1417. NSound.Volume = VOLUME
  1418. NSound.Pitch = PITCH
  1419. NSound.SoundId = "http://www.roblox.com/asset/?id="..ID
  1420. swait()
  1421. NSound:play()
  1422. game:GetService("Debris"):AddItem(NSound, 10)
  1423. end))
  1424. return NSound
  1425. end
  1426. function CamShake(Length, Intensity)
  1427. coroutine.resume(coroutine.create(function()
  1428. local intensity = 1 * Intensity
  1429. local rotM = 0.01 * Intensity
  1430. for i = 0, Length, 0.1 do
  1431. swait()
  1432. intensity = intensity - 0.05 * Intensity / Length
  1433. rotM = rotM - 5.0E-4 * Intensity / Length
  1434. hum.CameraOffset = Vector3.new(Rad(Mrandom(-intensity, intensity)), Rad(Mrandom(-intensity, intensity)), Rad(Mrandom(-intensity, intensity)))
  1435. cam.CFrame = cam.CFrame * CF(Rad(Mrandom(-intensity, intensity)), Rad(Mrandom(-intensity, intensity)), Rad(Mrandom(-intensity, intensity))) * Euler(Rad(Mrandom(-intensity, intensity)) * rotM, Rad(Mrandom(-intensity, intensity)) * rotM, Rad(Mrandom(-intensity, intensity)) * rotM)
  1436. end
  1437. hum.CameraOffset = Vector3.new(0, 0, 0)
  1438. end))
  1439. end
  1440. NewInstance = function(instance,parent,properties)
  1441. local inst = Instance.new(instance)
  1442. inst.Parent = parent
  1443. if(properties)then
  1444. for i,v in next, properties do
  1445. pcall(function() inst[i] = v end)
  1446. end
  1447. end
  1448. return inst;
  1449. end
  1450. function Smooth(Part)
  1451. Part.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1452. Part.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1453. Part.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1454. Part.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1455. Part.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1456. Part.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1457. end
  1458. hum.MaxHealth = 1.0E298
  1459. hum.Health = 1.0E298
  1460.  
  1461. -------------------------------------------------------
  1462. --End Important Functions--
  1463. -------------------------------------------------------
  1464.  
  1465.  
  1466. -------------------------------------------------------
  1467. --Start Customization--
  1468. -------------------------------------------------------
  1469. local Player_Size = 1
  1470. if Player_Size ~= 1 then
  1471. root.Size = root.Size * Player_Size
  1472. tors.Size = tors.Size * Player_Size
  1473. hed.Size = hed.Size * Player_Size
  1474. ra.Size = ra.Size * Player_Size
  1475. la.Size = la.Size * Player_Size
  1476. rl.Size = rl.Size * Player_Size
  1477. ll.Size = ll.Size * Player_Size
  1478. ----------------------------------------------------------------------------------
  1479. rootj.Parent = root
  1480. neck.Parent = tors
  1481. RW.Parent = tors
  1482. LW.Parent = tors
  1483. RH.Parent = tors
  1484. LH.Parent = tors
  1485. -------------------------------------------------------------------- --------------
  1486. rootj.C0 = RootCF * CF(0 * Player_Size, 0 * Player_Size, 0 * Player_Size) * angles(Rad(0), Rad(0), Rad(0))
  1487. rootj.C1 = RootCF * CF(0 * Player_Size, 0 * Player_Size, 0 * Player_Size) * angles(Rad(0), Rad(0), Rad(0))
  1488. neck.C0 = necko * CF(0 * Player_Size, 0 * Player_Size, 0 + ((1 * Player_Size) - 1)) * angles(Rad(0), Rad(0), Rad(0))
  1489. neck.C1 = CF(0 * Player_Size, -0.5 * Player_Size, 0 * Player_Size) * angles(Rad(-90), Rad(0), Rad(180))
  1490. RW.C0 = CF(1.5 * Player_Size, 0.5 * Player_Size, 0 * Player_Size) * angles(Rad(0), Rad(0), Rad(0)) --* RIGHTSHOULDERC0
  1491. LW.C0 = CF(-1.5 * Player_Size, 0.5 * Player_Size, 0 * Player_Size) * angles(Rad(0), Rad(0), Rad(0)) --* LEFTSHOULDERC0
  1492. ----------------------------------------------------------------------------------
  1493. RH.C0 = CF(1 * Player_Size, -1 * Player_Size, 0 * Player_Size) * angles(Rad(0), Rad(90), Rad(0)) * angles(Rad(0), Rad(0), Rad(0))
  1494. LH.C0 = CF(-1 * Player_Size, -1 * Player_Size, 0 * Player_Size) * angles(Rad(0), Rad(-90), Rad(0)) * angles(Rad(0), Rad(0), Rad(0))
  1495. RH.C1 = CF(0.5 * Player_Size, 1 * Player_Size, 0 * Player_Size) * angles(Rad(0), Rad(90), Rad(0)) * angles(Rad(0), Rad(0), Rad(0))
  1496. LH.C1 = CF(-0.5 * Player_Size, 1 * Player_Size, 0 * Player_Size) * angles(Rad(0), Rad(-90), Rad(0)) * angles(Rad(0), Rad(0), Rad(0))
  1497. --hat.Parent = Character
  1498. end
  1499. ----------------------------------------------------------------------------------
  1500. local SONG = 2007066385
  1501. if plr.Name == "KillerDarkness0105" then
  1502. SONG = 1837185092
  1503.  
  1504.  
  1505.  
  1506. for _, v in pairs(char:GetDescendants()) do
  1507. if v.ClassName == "Part" and v.Name ~= "Head" and v.Name ~= "LeftArm" and v.Name ~= "RightArm" then
  1508. v.Material = "Neon"
  1509. v.Color = Color3.new(0,0,0)
  1510. if v:FindFirstChildOfClass("SpecialMesh") then
  1511. v:FindFirstChildOfClass("SpecialMesh").TextureId = ""
  1512. end
  1513. end
  1514. end
  1515.  
  1516.  
  1517. end
  1518. if plr.Name == "LocalPlayer" then
  1519. SONG = 435773595
  1520. end
  1521. local SONG2 = 0
  1522. local Music = Instance.new("Sound",tors)
  1523. Music.Volume = 2.5
  1524. Music.Looped = true
  1525. Music.Pitch = 1 --Pitcher
  1526. ----------------------------------------------------------------------------------
  1527. local equipped = false
  1528. local idle = 0
  1529. local change = 1
  1530. local val = 0
  1531. local toim = 0
  1532. local idleanim = 0.4
  1533. local sine = 0
  1534. local Sit = 1
  1535. local WasAir = false
  1536. local InAir = false
  1537. local LandTick = 0
  1538. local movelegs = false
  1539. local FF = Instance.new("ForceField",char)
  1540. FF.Visible = false
  1541. local Speed = 16
  1542. local Screen = true
  1543. local op1 = false
  1544. local Sitt = false
  1545.  
  1546.  
  1547.  
  1548.  
  1549. --Wuss poppin B)
  1550. local RightCP = [[
  1551.  
  1552. _./Index- Start/Code_TrackerV2.Exe/AdminStart
  1553.  
  1554.  
  1555.  
  1556. >Loading Code Tracker V2.
  1557.  
  1558. ...
  1559.  
  1560.  
  1561. ...
  1562.  
  1563.  
  1564. ...
  1565.  
  1566. >BOOT_FINSHED STARTING CODETRACKERV2//
  1567.  
  1568.  
  1569.  
  1570. >Code Tracker V2 Loaded.
  1571.  
  1572.  
  1573.  
  1574. >Insert credentials
  1575. >Login: LOGIN
  1576. >Password: PASSWORD
  1577.  
  1578.  
  1579.  
  1580. ...
  1581.  
  1582.  
  1583.  
  1584. Login: Codex47
  1585. Password: **************
  1586.  
  1587.  
  1588. >Processing...
  1589.  
  1590. ...
  1591.  
  1592. ...
  1593.  
  1594. >_INDEX IPLOOKUP/LOAD/IP/193.281.74.39
  1595.  
  1596. >PASSWORDCHECK - SUCCESSFUL
  1597.  
  1598. >Welcome Codex. Remember Help for basic commands, SHelp for admin commands.
  1599.  
  1600.  
  1601.  
  1602. Help
  1603.  
  1604. >LOADING
  1605.  
  1606. ...
  1607.  
  1608.  
  1609. ...
  1610.  
  1611.  
  1612. >PROCESSING FINSHED
  1613.  
  1614.  
  1615. >LOADING COMMANDS
  1616.  
  1617. // WINDOW COMMANDS \\
  1618.  
  1619.  
  1620. >ASSOC Displays or modifies file extension associations.
  1621. ATTRIB Displays or changes file attributes.
  1622. BREAK Sets or clears extended CTRL+C checking.
  1623. BCDEDIT Sets properties in boot database to control boot loading.
  1624. CACLS Displays or modifies access control lists (ACLs) of files.
  1625. CALL Calls one batch program from another.
  1626. CHKNTFS Displays or modifies the checking of disk at boot time.
  1627. CLS Clears the screen.
  1628. CMD Starts a new instance of the Windows command interpreter.
  1629. COLOR Sets the default console foreground and background colors.
  1630. COMP Compares the contents of two files or sets of files.
  1631. COMPACT Displays or alters the compression of files on NTFS partitions.
  1632. CONVERT Converts FAT volumes to NTFS. You cannot convert the
  1633. current drive.
  1634. COPY Copies one or more files to another location.
  1635. DATE Displays or sets the date.
  1636. DEL Deletes one or more files.
  1637. DIR Displays a list of files and subdirectories in a directory.
  1638. FC Compares two files or sets of files, and displays the
  1639. LABEL Creates, changes, or deletes the volume label of a disk.
  1640. MD Creates a directory.
  1641. MKDIR Creates a directory.
  1642. MKLINK Creates Symbolic Links and Hard Links
  1643. MODE Configures a system device.
  1644. MORE Displays output one screen at a time.
  1645. MOVE Moves one or more files from one directory to another
  1646. directory.
  1647. OPENFILES Displays files opened by remote users for a file share.
  1648. PATH Displays or sets a search path for executable files.
  1649. PAUSE Suspends processing of a batch file and displays a message.
  1650. RECOVER Recovers readable information from a bad or defective disk.
  1651. TASKKILL Kill or stop a running process or application.
  1652. TIME Displays or sets the system time.
  1653. TITLE Sets the window title for a CMD.EXE session.
  1654. TREE Graphically displays the directory structure of a drive or
  1655. path.
  1656. TYPE Displays the contents of a text file.
  1657. VER Displays the Windows version.
  1658. VERIFY Tells Windows whether to verify that your files are written
  1659. correctly to a disk.
  1660. VOL Displays a disk volume label and serial number.
  1661. XCOPY Copies files and directory trees.
  1662. WMIC Displays WMI information inside interactive command shell.
  1663.  
  1664.  
  1665. // IP COMMANDS \\
  1666.  
  1667.  
  1668. GRAB Grabs randomly generated IP's for VPN use.
  1669. IP Displays your current IP address.
  1670. DDOS Stresses the IP using data packets and bandwidth overloaders.
  1671. FIRE Protects users IP by firing a automatic disconnect if bandwidth reaches a certain level.
  1672. PULL Pulls data packets from other networks for faster network sending and download data.
  1673.  
  1674.  
  1675. For more information on tools see the written txt file in the download directory
  1676.  
  1677.  
  1678. Load: Code Terminal
  1679.  
  1680. //ACCESSING HIDDEN COMMAND DATA 010101011101110011101\\
  1681.  
  1682. >LOAD PROCESS_INDEX?/C0DEXTERMINAL
  1683.  
  1684. >INSERT DOWNLOAD FILE CONSTRAINT
  1685.  
  1686. CODETERM/FILE/19853/DOWNLOAD.org
  1687.  
  1688. >SUCCESSFUL CONSTRAINT
  1689.  
  1690. >LOADING TERMINAL
  1691.  
  1692.  
  1693.  
  1694.  
  1695. ...
  1696.  
  1697.  
  1698. ...
  1699.  
  1700.  
  1701. ...
  1702.  
  1703.  
  1704. ...
  1705.  
  1706.  
  1707.  
  1708. ...
  1709.  
  1710.  
  1711. >Boot Failed.
  1712.  
  1713.  
  1714. ...
  1715.  
  1716.  
  1717. >RESTARTPROCESS/CODETERM.EXE/LOAD
  1718.  
  1719. ...
  1720.  
  1721.  
  1722.  
  1723. >Restarting Code Terminal.
  1724.  
  1725. >Getting Information Please Wait.....
  1726. 00000000 01110110 10101101 00100000 11001010 00111000 10011101 00110010
  1727. 00110100 00010101 01101010 10101010 10011001 10011101 11000001 10111100
  1728. 10110001 11011101 11010100 11111010 11101100 01111100 00000001 01101100
  1729. 10010100 00010001 10100110 10110010 01101000 01110000 11111001 11100110
  1730. 00100100 10010100 00001100 01111011 01101010 00000011 01100110 01111100
  1731. 11010111 00101111 11110000 00101010 00110101 10110000 10100101 00100101
  1732. 11110100 01011110 00000100 01000100 11101101 00100101 00000110 01100010
  1733. 00000000 01110110 10101101 00100000 11001010 00111000 10011101 00110010
  1734. 00110100 00010101 01101010 10101010 10011001 10011101 11000001 10111100
  1735. 10110001 11011101 11010100 11111010 11101100 01111100 00000001 01101100
  1736. 10010100 00010001 10100110 10110010 01101000 01110000 11111001 11100110
  1737. 00100100 10010100 00001100 01111011 01101010 00000011 01100110 01111100
  1738. 11010111 00101111 11110000 00101010 00110101 10110000 10100101 00100101
  1739. 11110100 01011110 00000100 01000100 11101101 00100101 00000110 01100010
  1740.  
  1741. >Code Terminal Loaded.
  1742. >Welcome ...
  1743. >You're not Cod-
  1744.  
  1745.  
  1746. >Getting Information Please Wait.....
  1747. 00000000 01110110 10101101 00100000 11001010 00111000 10011101 00110010
  1748. 00110100 00010101 01101010 10101010 10011001 10011101 11000001 10111100
  1749. 10110001 11011101 11010100 11111010 11101100 01111100 00000001 01101100
  1750. 10010100 00010001 10100110 10110010 01101000 01110000 11111001 11100110
  1751. 00100100 10010100 00001100 01111011 01101010 00000011 01100110 01111100
  1752. 11010111 00101111 11110000 00101010 00110101 10110000 10100101 00100101
  1753. 11110100 01011110 00000100 01000100 11101101 00100101 00000110 01100010
  1754.  
  1755. 00000000 01110110 10101101 00100000 11001010 00111000 10011101 00110010
  1756. 00110100 00010101 01101010 10101010 10011001 10011101 11000001 10111100
  1757. 10110001 11011101 11010100 11111010 11101100 01111100 00000001 01101100
  1758. 10010100 00010001 10100110 10110010 01101000 01110000 11111001 11100110
  1759. 00100100 10010100 00001100 01111011 01101010 00000011 01100110 01111100
  1760. 11010111 00101111 11110000 00101010 00110101 10110000 10100101 00100101
  1761. 11110100 01011110 00000100 01000100 11101101 00100101 00000110 01100010
  1762.  
  1763. 00000000 01110110 10101101 00100000 11001010 00111000 10011101 00110010
  1764. 00110100 00010101 01101010 10101010 10011001 10011101 11000001 10111100
  1765. 10110001 11011101 11010100 11111010 11101100 01111100 00000001 01101100
  1766. 10010100 00010001 10100110 10110010 01101000 01110000 11111001 11100110
  1767. 00100100 10010100 00001100 01111011 01101010 00000011 01100110 01111100
  1768. 11010111 00101111 11110000 00101010 00110101 10110000 10100101 00100101
  1769. 11110100 01011110 00000100 01000100 11101101 00100101 00000110 01100010
  1770. 00000000 01110110 10101101 00100000 11001010 00111000 10011101 00110010
  1771. 00110100 00010101 01101010 10101010 10011001 10011101 11000001 10111100
  1772. 10110001 11011101 11010100 11111010 11101100 01111100 00000001 01101100
  1773. 10010100 00010001 10100110 10110010 01101000 01110000 11111001 11100110
  1774. 00100100 10010100 00001100 01111011 01101010 00000011 01100110 01111100
  1775. 11010111 00101111 11110000 00101010 00110101 10110000 10100101 00100101
  1776. 11110100 01011110 00000100 01000100 11101101 00100101 00000110 01100010
  1777.  
  1778.  
  1779. So, Trying to break into my program huh?
  1780.  
  1781. Well You got another thing coming to you bud.
  1782. Those passwords, this entire program, It was all an elaborate scam.
  1783. And you, Being the pathetic little wannabe hacker kid, fell right for it.
  1784. Now i think you have an even bigger problem.
  1785. Hell you even gave me your own ip by using the IPLOOKUP function.
  1786. Well may god help you.
  1787. Because im coming for you now kid.
  1788. See ya soon.
  1789. REMOTEWRITTEN/FILEDELETESYSTEM/SYS32
  1790.  
  1791.  
  1792. >Deleting System32.
  1793.  
  1794.  
  1795.  
  1796.  
  1797.  
  1798.  
  1799.  
  1800.  
  1801.  
  1802.  
  1803. ...
  1804.  
  1805.  
  1806.  
  1807.  
  1808.  
  1809.  
  1810.  
  1811.  
  1812.  
  1813.  
  1814.  
  1815. .....
  1816.  
  1817.  
  1818.  
  1819.  
  1820.  
  1821.  
  1822.  
  1823.  
  1824.  
  1825.  
  1826. ......
  1827.  
  1828.  
  1829.  
  1830.  
  1831.  
  1832.  
  1833. >System32 Deleted. Initate System Restore.
  1834.  
  1835.  
  1836.  
  1837.  
  1838. ...
  1839.  
  1840.  
  1841.  
  1842.  
  1843.  
  1844.  
  1845. ....
  1846.  
  1847.  
  1848.  
  1849.  
  1850.  
  1851. ...
  1852.  
  1853.  
  1854.  
  1855. >System Restored.
  1856. >Welcome NEWUSER
  1857.  
  1858. >Getting Information Please Wait.....
  1859. 00000000 01110110 10101101 00100000 11001010 00111000 10011101 00110010
  1860. 00110100 00010101 01101010 10101010 10011001 10011101 11000001 10111100
  1861. 00000000 01110110 10101101 00100000 11001010 00111000 10011101 00110010
  1862. 00110100 00010101 01101010 10101010 10011001 10011101 11000001 10111100
  1863. 10110001 11011101 11010100 11111010 11101100 01111100 00000001 01101100
  1864. 10010100 00010001 10100110 10110010 01101000 01110000 11111001 11100110
  1865. 00100100 10010100 00001100 01111011 01101010 00000011 01100110 01111100
  1866. 11010111 00101111 11110000 00101010 00110101 10110000 10100101 00100101
  1867. 11110100 01011110 00000100 01000100 11101101 00100101 00000110 01100010
  1868. 00000000 01110110 10101101 00100000 11001010 00111000 10011101 00110010
  1869. 00110100 00010101 01101010 10101010 10011001 10011101 11000001 10111100
  1870. 10110001 11011101 11010100 11111010 11101100 01111100 00000001 01101100
  1871. 10010100 00010001 10100110 10110010 01101000 01110000 11111001 11100110
  1872. 00100100 10010100 00001100 01111011 01101010 00000011 01100110 01111100
  1873. 11010111 00101111 11110000 00101010 00110101 10110000 10100101 00100101
  1874. 11110100 01011110 00000100 01000100 11101101 00100101 00000110 01100010
  1875.  
  1876. You: Damn What the hell is going on. Prob a false message. No way in hell did some trash hacker/scammer get my ip.
  1877.  
  1878. Codex: You'd be surely mistaken kid. Im coming for you. Also by the way, here's your private ip. --[193.281.74.39]--
  1879.  
  1880. You: What? How... This can't be happening. Oh shit...
  1881.  
  1882. "Codex", Heh... Perfect.
  1883.  
  1884.  
  1885. ]]
  1886.  
  1887.  
  1888.  
  1889. local idlecp = [[
  1890.  
  1891. <-- BEGINNING DELETION SEQUENCE -->
  1892. >Please note, unknown things may occur as you're going through others files.
  1893.  
  1894. >Deletion Beginning.
  1895. 01101001 01101011 10000000 01110010 11111111 11010001 10111101 00010001
  1896. 11111000 00111010 01100010 10000001 11011111 10000011 00010001 00010000
  1897. 00100000 01111001 01111100 10110010 11110000 10000101 00101100 00000011
  1898. 10010111 01011011 10000010 11110110 01010010 00101101 11010101 10010000
  1899. 01001100 00101011 10101111 01101001 10100111 01000101 00110011 11001110
  1900. 10010110 10111011 11110111 00111110 11111010 01100101 11110100 01011011
  1901. 00111101 10001110 11001010 10010000 10110001 11110100 11101111 00011000
  1902. 00000000 01110110 10101101 00100000 11001010 00111000 10011101 00110010
  1903. 00110100 00010101 01101010 10101010 10011001 10011101 11000001 10111100
  1904. 10110001 11011101 11010100 11111010 11101100 01111100 00000001 01101100
  1905. 10010100 00010001 10100110 10110010 01101000 01110000 11111001 11100110
  1906. 00100100 10010100 00001100 01111011 01101010 00000011 01100110 01111100
  1907. 11010111 00101111 11110000 00101010 00110101 10110000 10100101 00100101
  1908. 11110100 01011110 00000100 01000100 11101101 00100101 00000110 01100010
  1909. 01110010 00111011 11001100 00000000 11101001 11100000 00111000 00010001
  1910. 11101001 11000101 00111000 01110000 11110000 10000100 11000001 11011001
  1911. 01001001 11010001 10111001 01101110 10100000 00101001 10100110 01111100
  1912. 11101001 11100101 01011110 01010001 11010000 10001000 11010110 01101101
  1913. 11111000 01100100 10111100 01001000 01001111 01100001 00100101 00001110
  1914. 11101110 01010011 10111000 11001011 10011011 00000010 01110010 11010011
  1915. 11011000 10101110 01000110 01010110 11000111 10110001 11111010 01111010
  1916. 01010011 10010110 00100100 00110100 01110001 10001110 10010110 00101111
  1917. >KillerDarkness0105 Account Deletion.exe Active
  1918. 00000010 01110000 01101111 10110010 10111001 10001010 10111000 11000001
  1919. 00010111 11111010 00100010 10001100 11011111 10010101 11001010 00000010
  1920. 10101101 01100011 00000010 11111101 00101000 11000100 11101111 10111101
  1921. >Account Successfully Deleted.
  1922. 00000001 00000000 10011100 10000001 01110001 01001110 00100000 00000001
  1923. 10000101 11011101 11011000 01011110 01100100 00010000 11110100 10000001
  1924. 01110101 01011111 11011111 01111010 11111010 10010101 10111111 00011100
  1925. 00010100 11000111 00100111 00100010 01010100 01010000 11101011 01101110
  1926. 10100001 10111000 11001011 00010010 10001110 01110011 00110111 10001100
  1927. 11111011 01110010 00100110 01101001 11011101 00010011 10000101 01001001
  1928. >Creterisk Account Deletion.exe Active
  1929. 11010110 01000000 00110111 01111101 10011010 00110001 11110001 00110101
  1930. 10011111 11111110 00100101 00011100 01010010 01010111 11100000 10111111
  1931. 00100101 10001111 01011110 11000100 10111110 00110111 00000100 11010110
  1932. 11010101 11011000 11010011 11010111 11111001 11001010 10011100 00010111
  1933. >Account Successfully Deleted
  1934. 01111110 10100101 11110100 00011000 11110101 11101101 01111001 11110011
  1935. 01010101 11000000 10001000 10001100 11110010 00011000 10111101 11111100
  1936. 01010110 10101100 01101011 01000111 01001111 00010100 00010110 11101110
  1937. 01011001 00010110 10111011 01111110 11111001 01101000 11001110 10000011
  1938. 01010101 10010111 10110010 00100011 00100010 00011010 10000101 00011110
  1939. 01110011 10111110 00000101 10110111 01101101 10001111 10000010 11100000
  1940. 01001011 11111111 11111100 00100010 11101101 10010000 01011110 00111111
  1941. 11010001 10110000 11101101 01101100 10000111 10100111 11110010 11010000
  1942. 00100110 01101011 01001100 00010110 10000000 10000111 11100000 11101011
  1943. >FuntimeArtic Account Deletion.exe Active
  1944. 11000011 10001111 01111011 00011001 11011011 01010001 01010101 11101101
  1945. >Error
  1946. >Unable To Read Data.
  1947. 01101001 01101011 10000000 01110010 11111111 11010001 10111101 00010001
  1948. 11111000 00111010 01100010 10000001 11011111 10000011 00010001 00010000
  1949. 00100000 01111001 01111100 10110010 11110000 10000101 00101100 00000011
  1950. 10010111 01011011 10000010 11110110 01010010 00101101 11010101 10010000
  1951. 01001100 00101011 10101111 01101001 10100111 01000101 00110011 11001110
  1952. 10010110 10111011 11110111 00111110 11111010 01100101 11110100 01011011
  1953. >Delete Failed
  1954. 01101001 01101011 10000000 01110010 11111111 11010001 10111101 00010001
  1955. 11111000 00111010 01100010 10000001 11011111 10000011 00010001 00010000
  1956. 00100000 01111001 01111100 10110010 11110000 10000101 00101100 00000011
  1957. 10010111 01011011 10000010 11110110 01010010 00101101 11010101 10010000
  1958. 01001100 00101011 10101111 01101001 10100111 01000101 00110011 11001110
  1959. 10010110 10111011 11110111 00111110 11111010 01100101 11110100 01011011
  1960. >Restarting
  1961. 10111110 11001100 00110011 01111100 11111110 00100100 01011101 10100010
  1962. 00101011 10110001 10000010 01100110 01110001 10100110 00011011 00000000
  1963. 01111111 01001110 00001101 10001100 10110110 01001010 01011101 01010011
  1964. 01000110 01100010 00101101 11010110 00100010 00111000 11100000 10010000
  1965. 01000010 10001010 11010101 00010010 00110100 00101000 01000111 01101101
  1966. 01101011 10011111 00011110 10111100 00100010 00011100 10110110 10000001
  1967. 11110111 00111100 10101001 11001111 11001001 01011101 11110100 10101111
  1968. 10001100 01111101 11000010 10100111 10001110 11011100 11011111 11101110
  1969. 11101001 11001000 10000101 10100100 01110100 00110100 00001111 11001110
  1970. 00000001 10111100 00010101 01111010 01110111 00001001 01010011 00110111
  1971. 01111100 11101100 00000101 10111011 10011000 01001010 10101100 10100110
  1972. 00000011 00000010 11001110 01010010 10101010 01011110 00000101 00100100
  1973. 11010001 00101110 00111010 01000000 00110001 01101111 11100100 11100100
  1974. 10101110 00000100 11110110 00001101 01100100 00011110 00100010 00110011
  1975. 10011000 01101001 10001100 11101111 01110111 00100111 00000001 10100110
  1976. 11001111 00101111 10110110 10001000 10011010 10100100 10100100 01110111
  1977. >MonolithicDivinity Account Deletion.exe Active
  1978. 00000010 01110000 01101111 10110010 10111001 10001010 10111000 11000001
  1979. 00010111 11111010 00100010 10001100 11011111 10010101 11001010 00000010
  1980. 10101101 01100011 00000010 11111101 00101000 11000100 11101111 10111101
  1981. >Account Successfully Deleted.
  1982. 00000001 00000000 10011100 10000001 01110001 01001110 00100000 00000001
  1983. 10000101 11011101 11011000 01011110 01100100 00010000 11110100 10000001
  1984. 01110101 01011111 11011111 01111010 11111010 10010101 10111111 00011100
  1985. 00010100 11000111 00100111 00100010 01010100 01010000 11101011 01101110
  1986. 10100001 10111000 11001011 00010010 10001110 01110011 00110111 10001100
  1987. 11111011 01110010 00100110 01101001 11011101 00010011 10000101 01001001
  1988. 10001000 00010010 10011100 11100100 01101011 00110111 00111001 00001110
  1989. 01100010 10010111 01010010 00000111 00000001 10011100 00000001 11100111
  1990. 00001110 01010110 11011000 10100011 01011101 01111101 00000000 10110101
  1991. 01111001 00110001 00001111 01010010 11111011 01010100 11000011 11111110
  1992. 01100010 10100111 01010100 11100011 10000100 00111110 11010001 00000111
  1993. 01000111 01101001 10111010 00100111 00111000 00101110 10101111 00011100
  1994. 01111100 11000100 11010011 00101100 01110010 01001011 10010010 00000000
  1995. 10000000 11100000 10101011 11010111 00010000 01000001 10001010 11000000
  1996. 11010000 00101010 00001111 10100000 00000000 10001000 00010101 10110001
  1997. 10101001 01011111 10001100 00110101 01010000 10011000 10011111 10100101
  1998. 10101010 00011110 00011000 10001100 00001000 01111000 00010100 01101001
  1999. 10101101 11111110 11100110 11110000 01011011 11111110 01001101 01101101
  2000. 10010100 01011000 00000100 11100111 00011101 10110001 11010100 11100000
  2001. 11100000 10010100 01011000 01011011 01000010 11101001 01101010 01100010
  2002. 00010100 00101011 00101101 11101010 11001000 00010001 10110101 11111111
  2003. 11000101 11100000 11100000 10100111 11010100 10000000 10010100 01010001
  2004. 11110101 01000010 10000110 01001101 10011110 00111011 01010111 11011000
  2005. 11110000 00100101 01011001 01011010 11110001 00010111 11111001 11000010
  2006. 10110001 11010101 10110000 10111010 00101110 11010000 10111011 11100001
  2007. 00000001 01010101 10111100 00111001 01010010 11010010 01100010 00111101
  2008. 11110100 10101100 01010111 00001001 10011111 00011000 01011001 11010101
  2009. 00101010 00101011 00111100 11100100 10011000 10011011 00000100 01110111
  2010. 00001111 10001100 00010011 10101011 10100101 10011010 01111011 00011111
  2011. 11110111 00000001 10001000 11000100 01010001 01110001 11111110 00100101
  2012. >Nebula_Zorua Account Deletion.exe Active...
  2013. >Error Unable To Find Account.
  2014. >Restarting...
  2015. >Unable To Restart.
  2016. >Unknown Chat Detected.
  2017. >Enter? Y/N
  2018. >Y
  2019. >Connecting To Chat....
  2020. 10101010 00011110 00011000 10001100 00001000 01111000 00010100 01101001
  2021. 10101010 00011110 00011000 10001100 00001000 01111000 00010100 01101001
  2022. 10101101 11111110 11100110 11110000 01011011 11111110 01001101 01101101
  2023. 10010100 01011000 00000100 11100111 00011101 10110001 11010100 11100000
  2024. 11100000 10010100 01011000 01011011 01000010 11101001 01101010 01100010
  2025. 00010100 00101011 00101101 11101010 11001000 00010001 10110101 11111111
  2026. 11000101 11100000 11100000 10100111 11010100 10000000 10010100 01010001
  2027. 11110101 01000010 10000110 01001101 10011110 00111011 01010111 11011000
  2028. 11110000 00100101 01011001 01011010 11110001 00010111 11111001 11000010
  2029. 10110001 11010101 10110000 10111010 00101110 11010000 10111011 11100001
  2030. 00000001 01010101 10111100 00111001 01010010 11010010 01100010 00111101
  2031. 11110100 10101100 01010111 00001001 10011111 00011000 01011001 11010101
  2032. 00101010 00101011 00111100 11100100 10011000 10011011 00000100 01110111
  2033. 00001111 10001100 00010011 10101011 10100101 10011010 01111011 00011111
  2034. 11110111 00000001 10001000 11000100 01010001 01110001 11111110 00100101
  2035. Connected - 4
  2036. >You : What the hell kind of technology is this...
  2037.  
  2038. >The Broken Angel : You're close my little hacker, but still so far.
  2039.  
  2040. >Zelphix : You'll have to try harder.
  2041.  
  2042. >You : Who in the hell are you two.
  2043.  
  2044. >The Broken Angel & Zelphix : Destroyed figures.
  2045.  
  2046. >You : What about your "other friend" in here?
  2047.  
  2048. >Nᴉl : ˙sn oʇ sƃuolǝq plɹoʍ sᴉɥ┴
  2049. ˙noʎ ɹoɟ ƃuᴉɯoɔ ǝɹ,ǝʍ ʇnq
  2050. ˙˙˙ǝɯ puɐʇsɹǝpun oʇ ǝlqɐ ǝq ʇ,uoʍ ʎlɹɐǝlɔ no⅄
  2051.  
  2052. >You : What I don't-
  2053.  
  2054. 10101010 00011110 00011000 10001100 00001000 01111000 00010100 01101001
  2055. 10101101 11111110 11100110 11110000 01011011 11111110 01001101 01101101
  2056. 10010100 01011000 00000100 11100111 00011101 10110001 11010100 11100000
  2057. 11100000 10010100 01011000 01011011 01000010 11101001 01101010 01100010
  2058. 00010100 00101011 00101101 11101010 11001000 00010001 10110101 11111111
  2059. 11000101 11100000 11100000 10100111 11010100 10000000 10010100 01010001
  2060. 11110101 01000010 10000110 01001101 10011110 00111011 01010111 11011000
  2061. 11110000 00100101 01011001 01011010 11110001 00010111 11111001 11000010
  2062. 10110001 11010101 10110000 10111010 00101110 11010000 10111011 11100001
  2063. 00000001 01010101 10111100 00111001 01010010 11010010 01100010 00111101
  2064. 11110100 10101100 01010111 00001001 10011111 00011000 01011001 11010101
  2065. 00101010 00101011 00111100 11100100 10011000 10011011 00000100 01110111
  2066. 00001111 10001100 00010011 10101011 10100101 10011010 01111011 00011111
  2067. 11110111 00000001 10001000 11000100 01010001 01110001 11111110 00100101
  2068.  
  2069. >Chat Disconnected
  2070.  
  2071. >You : Damnit.
  2072.  
  2073. 11110110 00101010 00011001 00100111 01111011 00101111 01001001 10100001
  2074. 11101111 01111001 11011000 10000001 01000100 10011111 10110010 10001011
  2075. 00000101 01101011 00001010 10011001 11011101 00010010 11000011 11110011
  2076. 01100011 01110010 00100000 00001110 10001100 00101010 10001011 00100010
  2077. 10011111 10001000 10001010 10110111 11011111 01001101 00011101 00101101
  2078. 11011111 10110001 10101111 01101110 11000010 01001000 00010110 00101101
  2079. 11111111 10000011 10010001 10110100 11000101 10111000 01111011 10101000
  2080. 01011011 11101110 01101001 00101111 11110101 11011000 01111111 01000110
  2081. 01111110 11110100 10010010 00011110 11011010 00110000 00100011 10011100
  2082. 01000001 10000111 11001101 01100101 01111110 11101010 11110100 00101010
  2083. 11010100 00001001 11110010 11110010 11111011 10111101 11100110 11001001
  2084. 11001100 11101100 10110111 11100010 10000111 01110010 11100110 00010111
  2085. 10010101 11110101 10100001 00110000 10101010 00011010 00001111 11110110
  2086. 01001111 10101001 10010011 10111101 00001100 10100000 01100101 01000000
  2087. 10111000 11001101 11111001 00000100 01110111 10001100 01001101 11000011
  2088. 00111010 00101010 10100110 01100101 01010010 11111010 11000011 10111110
  2089. 01000100 00001011 11101100 11000100 01101010 01101011 00111001 01000101
  2090. 01100010 10010100 00101001 11001001 11011111 01100111 11000100 00101000
  2091. 00100001 11110011 11100000 01100010 10010010 00101000 11011111 11110011
  2092. 00011011 01011110 00111101 01101110 01011101 01000010 01011110 10100101
  2093. 01100001 01010000 10001100 11100101 10010100 10011001 11010000 10001100
  2094. 10110110 00000111 01000000 11111111 00000110 10110100 11011001 01001110
  2095. 01101011 11100011 11011101 10111000 11001011 01101111 01010101 10011001
  2096. 10111000 11110001 00110101 11010011 01001011 01000010 01001100 10110010
  2097. 00101011 01101011 10101100 11100100 10001011 10000111 00110101 10101000
  2098. 01001111 00000101 01010101 01101101 01010010 00101011 01000101 00101011
  2099. 01100010 01000110 10111110 10001001 11100100 10101101 10111110 10001111
  2100. 00101000 10111001 10001101 11100111 11100000 01111100 10000111 10101010
  2101. 11011000 10011101 01011010 00101001 01010100 01101111 10101011 00010001
  2102. 10100100 00101111 00110000 01011011 00111011 00001011 00100110 00100000
  2103. 11111100 01101111 10001100 11011101 11011100 10111110 00110110 01000000
  2104. 11000100 11000110 01111001 11101010 01111101 10110011 11101011 10011111
  2105. 10111001 00110010 00100110 11111001 11110101 11101100 10100111 01010000
  2106. 00111010 11000111 01001001 01010011 00100110 01000111 11000111 01000100
  2107. 00100101 00100001 01100100 00111010 11100000 01100101 11110111 10100111
  2108. 01001101 10101010 00101110 10100111 11100011 11000100 10100100 01001010
  2109. 01100000 00111101 00111101 11100110 00111011 00110101 01001101 10010110
  2110. 00011100 10101111 11010101 10100001 10000110 10010001 11101011 01110000
  2111. >Salvo_Starly Account Deletion.exe Active
  2112. 01100000 00110010 11010001 10001001 10010100 10011010 11010100 00001101
  2113. 11111111 00001000 11010011 11100001 00001011 10011110 01000111 11001001
  2114. 11110011 11011111 01100001 11001110 10000000 10001101 11101111 00011001
  2115. 10011100 11110000 00001100 11011101 00011011 00010110 11110001 01011011
  2116. 10000000 10100110 11101111 11111100 11011001 11010010 11111000 01001111
  2117. >Connecting To Furaffinity....
  2118. 01001111 00110101 01101110 00000001 11011110 01011100 01000100 11011010
  2119. 01111000 10110011 01000111 11100110 10100010 00111111 00010010 11011000
  2120. >You : Hold on, WHAT?!
  2121. 01111101 00101101 11101100 10101101 10001100 11101011 11100111 01110111
  2122. 00010111 01101011 01110110 00001111 10101101 01000110 01010111 00000001
  2123. 10001000 01110100 00110011 10101010 01100100 10111010 01100100 10111010
  2124. >You : Did the account just redirect me to this?!
  2125. 01100010 11001000 01000100 11101001 11011110 01111110 11010010 11110101
  2126. 01111100 10110110 10101110 01000000 00111100 11001110 11000011 01110100
  2127. 11100111 11011001 01001001 11010001 10001111 01110101 00001110 00011000
  2128. >Successfully Connected.
  2129. >You : .....
  2130. 10001000 01110100 00110011 10101010 01100100 10111010 01100100 10111010
  2131. 01100111 01000111 00011101 01111111 01001111 00010101 11010110 11100111
  2132. 01100010 11001000 01000100 11101001 11011110 01111110 11010010 11110101
  2133. 01111100 10110110 10101110 01000000 00111100 11001110 11000011 01110100
  2134. 11100111 11011001 01001001 11010001 10001111 01110101 00001110 00011000
  2135. 01101101 10001001 11100010 01000110 00111110 11001010 10001010 10001010
  2136. 00011001 10110010 00010110 11011100 11100110 10001001 11010011 10110111
  2137. 11101100 11110001 01000110 01110101 00111011 01111000 10111010 01100011
  2138. >delta1035 Account Deletion.exe Active
  2139. 10010010 10011100 00000110 11000101 00111100 00010100 10001110 01000111
  2140. 00001101 01101011 11001011 01110101 01000011 01101010 10111000 00100110
  2141. >Error Line 531 - "You seem like a good type, I'll try you."
  2142. 00000110 10111001 10001110 10110111 11011011 10101000 11000111 10010110
  2143. 10111000 11011000 11010101 01000101 11101010 01111111 11100110 01010011
  2144. >Deletion Failed.
  2145. 01010110 11010100 01000110 11100100 11110111 11001110 11111000 00010101
  2146. 10111111 01110100 10011011 11101110 01001101 01010011 01000100 10110100
  2147. 01111011 11000011 10110110 01100011 11111011 11000011 01000101 01010111
  2148. 01011100 10101101 11001010 10110000 11101101 10000101 10000110 00100111
  2149. 11010101 10101010 10101001 00001011 11101000 01101000 01011011 11011111
  2150. 00001001 10000011 11110001 10010111 01111111 01010010 00001100 01000000
  2151. 01111100 11001000 00010010 00101000 11111100 00111110 00000100 11100011
  2152. 01111100 00010100 10010010 00111001 01111011 00010000 11100111 01110110
  2153. 11111011 01011100 01100100 01110100 11110101 11110100 11001000 10100100
  2154. >Zuu_Roku Account Deletion.exe Active
  2155. 10000100 10010011 10111001 00000100 11010111 10011000 11001110 11001101
  2156. 11000110 10100100 11101011 11111011 11001001 01100111 10011001 11100010
  2157. >Error
  2158. 10111101 00100000 11111101 01011000 11001101 00111000 10111110 10001010
  2159. 00111111 01000000 11111100 11000001 00010100 11001000 01000001 11100001
  2160. 10011011 00000001 10010110 10101111 10101100 11000000 00110101 00110000
  2161. 00110010 00001001 01110100 10010010 00101001 01010001 01011110 11011110
  2162. >Unable To Detect Password.
  2163. 01101110 11010011 10100110 11100101 10111000 11101101 01000011 01011000
  2164. 11100011 00100000 10001110 10000001 10100001 10010000 10111110 10100011
  2165. 00111101 01101100 01100100 10011111 10100001 11110010 01111011 00000010
  2166. >Reason(s) Found : NANO.EXE
  2167. 00001001 01111110 01101001 10101101 10001100 01001111 01110001 00110011
  2168. 00100011 01110001 01000000 00110101 11011000 11101000 10010111 01010001
  2169. >Unable To Remove.
  2170. 01000101 10110110 10010000 00111011 10010010 11101000 11001001 10010111
  2171. 00100111 11000110 10100010 01010011 10111010 11000010 01110111 00101110
  2172. >Restarting
  2173. 01011101 11110010 10010001 01001001 01011100 11110110 10000001 11110010
  2174. 10011010 11011101 11011111 01100111 10001011 00111001 00110010 11010001
  2175. 01011000 01110100 00011100 11011011 00000100 11000110 11111011 10000001
  2176. 01101001 11011100 11100111 11110001 01001101 01111000 11110101 00101111
  2177. 11001101 11011100 01010110 10100011 01111000 00010100 00001101 01100001
  2178. 01111100 11110110 10100001 10111111 11001110 10101000 11100010 11011011
  2179. 11110111 01110110 01001011 11111111 00011111 11001100 00101101 10110010
  2180. 00000010 10010110 11110000 01110011 11110111 00101111 10110111 01011101
  2181. 01001001 01111111 10001101 00100000 10110010 01110111 00110111 11010111
  2182. 00101101 10110101 00001000 10011110 10001100 00110001 10100001 00001010
  2183. 01101100 11110001 11001000 01101000 01000110 00001001 10100101 01111100
  2184. 10110110 01010110 00110100 10110111 10000001 00110011 01110100 00011010
  2185. 10011011 00011010 10011110 00001111 01111111 10000100 00011100 10100011
  2186. 11000010 00010011 11010000 10000111 00111110 01000000 00001100 11101100
  2187. 10100100 01111111 11110101 10001010 00000000 10100001 11111110 00101000
  2188. 11011110 00110101 00101110 00101000 10110101 00111100 11100011 00000001
  2189. 01011100 11010101 10110010 01101101 10110000 10101100 00111110 11011101
  2190. 01110011 01011111 00011010 00010010 11010100 11100011 11111111 10100011
  2191. 11100000 00000000 11001110 10110110 00110101 10110010 01101000 10011000
  2192. 01111101 10110000 11011011 00100100 00100110 00111011 10101111 10100001
  2193. 10101001 10001010 11001000 10011001 10001100 10000011 11000000 00101100
  2194. 10111101 10101011 11100011 01000111 01100000 10001000 11111110 10111111
  2195. 01100011 10111010 00010111 10010101 10001000 00001011 01101101 10110010
  2196. 10001001 11111101 11011100 01111101 10011111 11000000 01111100 10100110
  2197. 00001110 10101010 00101100 11000110 11001000 11110011 11101111 11100010
  2198. 00110101 00000110 11001110 10110011 10010001 10100011 00001000 10010110
  2199. 00100110 01110101 11000010 00101010 00011100 01011111 00000001 01110101
  2200. 00100111 11110101 10000011 01100110 11000000 01100001 11010011 11001001
  2201. 01010101 11101101 10011001 11100111 01000111 00111011 01101001 01011010
  2202. 11110001 00000011 11100011 10110010 11010100 00100101 01111011 01001100
  2203. 10010101 01111101 11000011 00011111 10100001 00011110 00001010 01010100
  2204. 10100000 00101100 11011111 11111011 11101110 01000110 10110111 01110001
  2205. 10100111 00110010 01011100 10101100 11101000 10011011 11100101 00110010
  2206. 11000100 00111000 00100011 01101001 11001010 01111011 11010101 11110100
  2207. 01011100 00111111 01010000 11010000 01010111 00010101 01110101 11110100
  2208. 10100000 11111100 01010101 11011011 00010111 10101011 01010000 10011000
  2209. 10110100 00100100 01100111 00100101 11110011 10000101 01010011 11110110
  2210. 00111001 10011001 10011000 01001111 11110011 11111100 10010011 11011010
  2211. 01110110 11001010 01010100 10000100 11111001 00100010 10010010 00011110
  2212. 01111101 11001100 01110100 11011000 01110101 11011111 10110111 10001001
  2213. 00000111 00000001 11100101 10010101 11111100 10111001 11010111 11110100
  2214. 11010101 00001101 01111100 10011001 01110101 10010101 10111110 10111111
  2215. 01011110 01010110 10101001 10000101 11000001 11111100 00101100 01010111
  2216. 01111010 01110110 01101111 10010010 10001110 00101011 00101001 11101101
  2217. 11011011 01110101 11000010 10110100 10110010 11101011 00011110 00010111
  2218. 10111000 01010001 10010100 01011001 00100111 00100011 00110111 10011101
  2219. 00011101 10001101 01111100 00001000 01001101 11011001 00111101 10011001
  2220. 11010100 01110111 00001010 10010110 00100000 10010101 01011100 01001000
  2221. 11101011 10110111 01110011 10011110 01110110 11110111 01001000 11011011
  2222. 00110100 00101001 10100011 11101000 00010011 01111000 10001010 11010110
  2223. 11000011 01100111 10011110 10100000 10111100 00011100 00101101 10111010
  2224. 10110110 01100001 10001111 10101010 00000010 10100001 01001111 01001011
  2225. 01000111 11110010 01100110 00101110 11101100 11001100 10100000 00100011
  2226. 00100101 01010011 11000100 01010001 01101110 01000100 01000110 10000101
  2227. 00111011 11000101 11101110 11000111 00110001 11101000 00000011 00010100
  2228. 10001001 01111110 01011000 11100000 00011110 11110101 01110001 10010100
  2229. 01110001 11011011 11111101 00011000 11100110 01011100 00011000 10001011
  2230. 10001001 11101111 00010111 00010011 10111111 01011000 00110111 10101110
  2231. 01001110 00010000 01010001 00000001 00110110 01000000 11010001 11111000
  2232. 01000001 00111011 11101100 10011111 10001001 10010111 10000100 00111011
  2233. 01101110 11101101 01101011 00100110 10011000 00111110 11010100 11011111
  2234. 01001100 10101110 01010011 00100100 00110010 11011010 11011111 01000101
  2235. 00100001 11111001 10110000 01001111 00010111 00111100 11011100 01011000
  2236. 10000100 01110000 00011011 00001001 11111110 10101001 10111001 00000100
  2237. 01001010 11110111 01110011 10011101 00010000 00111111 00010101 01110001
  2238. 10111100 11001111 11010000 11110110 11100100 11011010 00110101 10110111
  2239. 01011110 00011110 01010100 11010100 01011010 10100110 10111111 11101101
  2240. 11001010 01100101 11110010 00111011 01000010 01100010 10101001 00000010
  2241. 11000001 00101011 00111101 01100101 00100100 10011001 00100100 10000010
  2242. 10000110 01100101 10111001 10110110 00010011 10100000 01100101 10001001
  2243. 11100001 11101001 11010100 00101100 11001110 00001001 10001000 00010111
  2244. 01110010 01101110 01001011 01001000 00111111 01011000 01110101 00111011
  2245. 00010111 00010000 00110111 11111000 11011100 10101000 10111111 10110011
  2246. 00001111 10000110 10010011 00101110 10001100 11011101 11000101 11000010
  2247. 10011010 11100000 10110101 01000100 01001100 10101110 00111110 10111110
  2248. 10000010 11111010 01001101 01001110 11100101 11000011 00011010 00100101
  2249. 10000011 11101111 01011101 00010011 10111101 00100000 00101001 10011100
  2250. 01101001 01001001 00010001 01000011 11001111 01010000 00100010 11101011
  2251. 01110101 11000101 00000110 11011011 01101110 10001100 11010001 00100010
  2252. 01010101 00010000 11001001 10000110 00001011 00010110 11100000 00100110
  2253. 10010000 11010110 01001010 10101111 11101100 11011100 11110110 00111100
  2254. 10001010 00100011 00000011 11001011 11001101 01001001 00001010 00000100
  2255. 00111010 11010101 01010011 11111011 00100101 11100011 11100100 10000111
  2256. 11011100 01110011 10111011 00011001 10001111 11101010 10100110 11111100
  2257. 00101111 00001100 11101101 00010000 00100010 11000010 11111010 01000010
  2258. 10111001 01110111 10110101 00111100 01101110 11101111 11000011 11101101
  2259. 10101000 00001100 11000011 01010110 01010000 11101000 00001001 00101000
  2260. 10110110 00001010 11111111 01111001 11010000 00110100 10000101 11110100
  2261. 11011001 10110111 01110001 11101111 10110000 10011111 00101010 11111100
  2262. 01011010 10001111 01101011 10101000 10111010 10011111 11101001 00101100
  2263. 11011100 10010011 01010100 00000001 00110000 10100100 10011111 00101101
  2264. 11010101 11000101 01110101 00001011 11101001 00111101 01000010 00001011
  2265. 00100110 00010111 01101100 11001100 00000001 00111100 01000101 01101100
  2266. 00110001 01010111 00101010 10001111 10000111 11001100 11101101 01011000
  2267. 01100101 11100001 00010000 00000001 10101100 11000100 01000001 11111000
  2268. 10101101 11000101 10000010 11111000 10110111 00001111 00110011 10101100
  2269. 01010100 00010010 01001111 00011111 01010000 11011001 11100110 11101001
  2270. 00001010 10110010 11101000 01110100 10010010 10100000 00110111 10010010
  2271. 10000101 10010100 10000111 01111010 01010110 10110101 10011000 10101001
  2272. 10010101 00110000 10001010 11000111 10010000 00101001 01010001 11010110
  2273. 10111000 01111011 11011011 00001000 10000011 00010100 01010000 01011000
  2274. 10010100 10011010 01100010 11010111 00000001 01111110 11110001 10011101
  2275. 11100001 11011010 11000110 00110110 10100010 10101001 01011001 11001010
  2276. 00110001 01110111 10101010 11000111 10111000 11101001 11001100 01101010
  2277. 00010001 00110010 11101001 01001110 10000000 01101001 00001011 00111100
  2278. 00000000 00110010 10010011 11110000 10000100 11000101 11011000 01000111
  2279. 01000100 10000010 01101010 11000000 10000110 01111111 10110111 10011010
  2280. 11101100 10101110 01010001 10010010 11011010 10111110 00001000 01101111
  2281. 11011010 11111100 11111110 00100101 10010010 01111111 10011101 01111110
  2282. 00110010 10101101 10010111 11011010 01001101 01001100 10010000 00011100
  2283. 10001101 01011010 01011000 01001011 11010110 11010111 01001011 10010010
  2284. 10011100 10001010 11011000 01101110 10011101 10011101 00101110 01110111
  2285. 00111010 10100100 00001011 00001010 10010001 01001101 10110001 11100101
  2286. 11000110 11000111 10001001 01101111 01110001 01000111 10100000 01100111
  2287. 01101111 01111100 11010001 00001100 01100101 01011000 01011000 01110100
  2288. 10100100 11011011 10100010 11010010 00111000 11111001 00110011 10100110
  2289. 10110111 00010100 00001011 10011100 00001010 11011101 01100010 01001111
  2290. 01111001 10000111 11011100 01001101 00011110 11011011 11010011 10111101
  2291. 10101111 10010011 11100000 00110101 11011001 10110011 10001111 01111010
  2292. 01110110 10111011 11010011 11110110 00010000 01010101 00110000 10110011
  2293. 11101100 11011101 01111111 00101000 00010001 00010001 10010001 01101101
  2294. 00100100 11011001 11010010 11100010 10110010 01010011 01111010 10111010
  2295. 11000010 10111010 10011000 10100101 00100111 10111001 11010000 10100101
  2296. 10001100 10100010 11110110 01100110 01100100 01001000 00001011 11010110
  2297. 00110111 00100010 00110000 01111001 00001011 00010000 11111001 10111110
  2298. 11110111 00101101 01001110 00001100 10001001 10111010 00010010 10101101
  2299. 01110000 00011000 11000001 10101011 01010110 00101011 11001101 10000101
  2300. 01101101 01101011 01100011 01110110 01101101 11011000 00011100 10100000
  2301. 11110010 00000001 11100001 11100101 01001110 01000100 00110110 10011001
  2302. 00010000 11101110 11100110 11010010 01011101 10000000 01100011 11100011
  2303. 00011001 00111010 11010011 10000111 00110000 00111100 00110001 00110000
  2304. 01100110 11010110 11011010 00101111 11110011 10111110 01001010 11000101
  2305. 10010001 01001110 11001000 11000111 10000100 00011000 11001110 01001001
  2306. 11100001 01011000 10010001 01010010 00000001 01010111 10011011 10010110
  2307. 10001111 00000111 11011101 10101010 00111101 11101101 10010001 10110010
  2308. 10111011 01110011 10011010 01010000 11110011 00001000 10001010 01110001
  2309. 01111001 01011000 00100101 01001001 00011101 11010001 11010111 10000010
  2310. 11100000 00001101 00001110 11110011 11100101 01101101 00000000 01011101
  2311. 01100110 11010111 10111110 00101011 11111011 01100100 00111011 10110000
  2312. 11000010 00011011 01101110 11000110 11011100 11011000 01001100 00011000
  2313. 01011001 10000001 00000010 01001101 01001110 01110001 11110100 11001111
  2314. 01001001 11111000 00110001 11011111 10100100 00111110 10100101 00000011
  2315. 01001100 10100110 01100111 01111110 00010011 01010111 00110001 10011101
  2316. 11100000 11010111 01000110 10111110 01110100 01001100 11110110 01010001
  2317. 00110101 10100101 01011010 10001011 11001010 11000111 10000010 11110100
  2318. 10110101 01110011 11101100 11001011 10000101 01000001 01111001 00010100
  2319. 10100011 11000010 00101001 11111010 01011110 00110001 01111000 10001011
  2320. 00101100 00110010 10110100 00000001 00100110 00110001 00110111 01010010
  2321. 10011111 00010010 10001000 11101100 01101111 10100100 00011011 01011101
  2322. 00010101 11000111 01100111 00010101 11000111 10101011 10110110 01101010
  2323. 01011011 11111011 00111011 01110010 10101000 10011110 01011000 01101011
  2324. 11111010 11100101 01110011 00110011 10000010 00010111 01000010 10010110
  2325. 10111110 10111100 10101010 00100011 10111110 00111011 11010000 10010010
  2326. 10000000 10110110 01000011 11000000 11000010 01111001 01000001 00100100
  2327. 10111111 10001101 11010110 00001100 01010100 00010110 11110000 00000000
  2328. 11101000 00001001 00010000 01110010 11111011 10110100 10000001 00000110
  2329. 00110101 00101011 00011111 00001000 10001100 00100101 11111110 10011110
  2330. 10100111 01101001 00110001 11010101 00011101 10001111 00010110 11111011
  2331. 00111111 10000000 10111001 01000000 01111001 01100011 00000110 01010101
  2332. 10100111 11101000 11000100 11110010 01001110 00011101 00111010 01110100
  2333. 00111000 00010100 11100000 00011110 00110010 01011101 01000100 10010111
  2334. 00000101 01110011 00110000 10101110 11111110 11011001 11111110 01101011
  2335. 01000100 10100111 01110011 00111100 01011100 10000000 10000110 01110110
  2336. 01101101 11011000 01000011 01111000 10111100 00101101 01111111 10110111
  2337. 11000010 10000000 11110110 00010101 01000110 01110111 01110101 00001100
  2338. 11111010 10101100 11111011 11011110 10000111 00101001 01000001 10001000
  2339. 11110010 01101001 00100111 11011001 01000101 00010001 00110111 10110011
  2340. 11100000 00010101 10000111 10100100 11101011 00110011 00001011 11000000
  2341. 11010011 00011100 01101001 00000110 01101011 10110000 01110011 00110000
  2342. 11111011 11000100 01000111 11011101 10100001 11111000 11101010 01111000
  2343. 01110000 11001011 11111001 00101100 11000101 10010110 11110100 01110110
  2344. 11101000 00100011 11101111 10000110 10010000 01011010 11011111 11110110
  2345. 01101010 00111001 00011100 00001100 11100000 10110000 00000111 01000110
  2346. 10101100 10101110 01101000 10010110 00101111 00010111 11001100 01101101
  2347. 10110011 01001101 01110110 01110110 10111010 00100101 10100000 11011111
  2348. 11111010 01101000 00111110 00101100 10001011 00101111 00001011 11010011
  2349. 11111101 01010000 01001100 01100001 00100100 10101110 00010000 00001101
  2350. 01100001 11010100 10111010 10101010 10111010 01001000 10101000 10100011
  2351. 10111001 10100111 10001000 00001011 01100100 11011000 00100000 10010001
  2352. 00001011 10011000 01100111 00111001 10010110 11001100 01011001 01010101
  2353. 00011101 10110010 10000100 00111111 00010011 10100101 01110001 00100001
  2354. 10000001 10011000 00100110 11001111 01101011 01110001 10110001 11100000
  2355. 11100110 10010101 00111010 11001101 00101100 11010100 10110100 11010111
  2356. 10101001 10001111 00011100 10000000 10000101 01111100 01101001 01011000
  2357. 10100100 01010101 10100111 01001010 01001010 10001111 11111100 00001101
  2358. 01101010 11000011 00110101 10010110 10000100 01111101 01110011 00110001
  2359. 00010111 00101011 00010001 11011011 10100011 10101010 10100001 00000001
  2360. 01110010 11101101 00110000 00001001 00111101 11101100 10001100 01001101
  2361. 01000001 10111011 10010001 00100110 10001010 00010010 10111000 00000101
  2362. 11001011 01100010 10010000 01011011 10100100 11000011 00011011 01010111
  2363. 01010101 00010110 11111011 01100110 00100101 10011110 01000110 00111000
  2364. 00001010 01110000 00110111 01100000 10010101 01001100 00001110 10000111
  2365. 11001001 11111111 11000000 11111100 11101101 00100101 10111110 10011100
  2366. 10001100 00100100 10100101 01001001 00100100 11010011 11000001 00100001
  2367. 01011100 11110010 00001110 11111110 11011001 10001011 10110000 00001101
  2368. 01000011 01110110 11011101 10101000 00111000 11110011 01110010 00110110
  2369. 00111101 11110110 10101001 10100010 01111100 01011010 01110000 01011011
  2370. 10010101 10100111 00110000 11010011 00001101 00101110 11101011 01110111
  2371. 01100101 10010101 00111110 00110000 10110110 00011110 11100010 11111000
  2372. 11111111 11110100 11001011 10000011 10000110 10000001 10100000 11110010
  2373. 11011101 10101100 01110001 00101001 11111111 00000111 01010001 00100010
  2374. 00001011 11001000 00010011 01100100 01011011 11011010 00001011 01000101
  2375. 00000000 10001101 11110011 10100010 01000010 00001001 00011011 11010000
  2376. 11111001 00011001 10110100 10001001 10010101 01101100 01100111 11100001
  2377. 01101001 00001000 10000010 00011011 10100010 00110010 01011010 11110111
  2378. 00101110 11010011 01010101 10101011 01010110 11011101 00101011 11101110
  2379. 10110011 10001001 11010011 01101011 01111101 10101101 10001101 10000010
  2380. 11100010 11011011 11111010 10110110 01110111 00000111 01111101 11101110
  2381. 10000111 01011000 11111111 10110010 10111000 10111111 00001000 10001110
  2382. 10110000 00011111 00101100 10000010 01010101 00000111 01001110 01001101
  2383. 00001001 01011110 00110100 01101000 10100000 11011110 11000010 10111000
  2384. 01111100 01110100 00100110 01000001 10011111 01101000 01101010 00000100
  2385. 01000001 00111111 00101011 10000010 00110100 00010101 01100001 10100101
  2386. 11111001 01100110 10000110 10101111 00010101 00011011 11101010 10011011
  2387. 01011010 10011001 10111011 01000010 10001100 11001111 01010011 00111110
  2388. 01011010 00011011 11111110 00001101 11101011 10010100 10111101 10111000
  2389. 00100001 11101111 01000001 11011111 00001101 00000110 11101000 01010000
  2390. 10110100 11000010 11111010 01001101 10101001 01000011 10100010 11000010
  2391. 10000011 10010111 11111010 00111011 10110100 11010111 10110010 00101101
  2392. 10011101 11100001 11100000 01001110 01001100 01111010 11010101 01001011
  2393. 11011001 00111001 01100111 10111010 10110111 00111001 01010001 10110000
  2394. 01111010 11110010 10111110 11111011 10001110 10100111 10100110 00111000
  2395. 10011110 10100000 10011110 11000111 00111100 10100010 10110111 00010011
  2396. 10001011 00011010 10000111 01100011 01110101 01000001 00001011 11110011
  2397. 01110111 10000001 11111101 00010100 11001111 00111010 10000010 00110000
  2398. 11110100 00001001 10110000 10011001 11010111 10000100 11111110 10001111
  2399. 00010111 00010001 10001010 01001011 11100001 01100101 01000000 00000001
  2400. 10101010 10100001 00011110 00010011 11010110 11111011 10100000 10111110
  2401. 00000110 01111000 11111011 11101001 00110010 00011011 00011010 10001010
  2402. 11110100 10110101 01010100 11111000 11100100 00110000 11110111 01101011
  2403. 01000000 00111010 00011010 10110111 00001100 10110001 10101001 10001111
  2404. 10101100 00000011 00101100 11010010 11101101 00001111 10110001 00110001
  2405. 10101011 11001011 10110011 11010010 10010011 10101010 00011111 00010100
  2406. 00000111 01010001 01001101 00000110 11001100 10100011 10010110 01001011
  2407. 10101010 10100011 00011100 00101110 10001000 01011011 10110101 01000110
  2408. 10001100 01110100 00110000 01000000 00011101 11110111 01110010 00000110
  2409. 01011111 11001010 00001101 00111000 10101110 10001011 00100001 01101010
  2410. 11001110 01010101 11010101 00001100 11001101 00010101 11000010 11010111
  2411. 11011101 01100011 00000010 10000101 00011010 00001001 10011010 01010001
  2412. 10110110 11110011 00001000 10101010 11101110 11000101 11010011 00101001
  2413. 10001100 01110000 01100001 00010001 01011000 10000111 11010001 00101000
  2414. 00111010 10001000 01000011 10010100 00011111 01101001 00011101 11000110
  2415. 01011101 10111001 01000011 10100010 01000111 01101111 11011101 11011100
  2416. 10001010 10101011 01001001 10001100 10111110 00101001 01110010 10000100
  2417. 11011101 00011011 00110010 01100111 00111111 01010011 01100101 11100110
  2418. 10111011 00001011 01001010 01000101 01011000 00101011 10100100 01110001
  2419. 01001111 11000000 11100110 11111110 00100000 10111100 00101000 00011011
  2420. 10011000 00010001 11010010 11010011 00101011 11100101 00011011 11111111
  2421. 01011011 10010110 11101100 11100111 01010000 00111010 11010101 00100011
  2422. 10100101 11100010 01001010 00011110 00011001 01110101 01110011 10011010
  2423. 00001001 11011010 01100100 01111101 00101101 11101001 01111010 01011011
  2424. 11111111 00001000 01001101 11001001 10111011 01010010 11001001 10011000
  2425. 00110001 01110111 11011000 11001001 11001101 10100011 01000010 00000111
  2426. 00000110 11111111 01111111 01001011 01101000 11000011 01111101 10000110
  2427. 10101001 10001110 01010001 11001110 01100100 10110010 00010011 11101100
  2428. 10001000 01011101 01110000 00010110 11000111 00111110 01101111 00111010
  2429. 11000111 10111111 10011110 10011001 10001110 01011000 11110101 01101001
  2430. 11101101 01001110 01010100 01001010 11100001 01100010 00001100 01101100
  2431. 00011101 00100001 10011001 00000101 00111001 00000000 10101100 01111111
  2432. 10110000 11010100 00011010 01010011 10100100 01111100 00001100 01010101
  2433. 01101010 01000110 00001001 00000111 10100111 11111100 01001010 11111010
  2434. 11000001 11100000 00111010 10100011 11001000 01110110 01100111 11010011
  2435. 01000010 10111000 01110111 00101100 00010110 11011010 10111101 11110110
  2436. 00110010 00001110 01010100 01111010 10001000 11010011 01111101 00000100
  2437. 00011110 11101011 00010000 10101111 00100110 00101110 10100110 00101000
  2438. 00100101 10000101 01111110 11001001 11010000 00010101 11011000 01000000
  2439. 00100110 01011101 11111010 01100110 10101010 11001100 11111011 01100010
  2440. 00000000 00110001 11110111 11011101 00101100 11011101 01010010 10100000
  2441. 10010111 00100100 10111010 00100001 10000010 11000001 01101010 01100010
  2442. 11000010 00010111 01010001 11110101 01000011 00110010 11110101 11000001
  2443. 10111110 01110001 00100111 10101000 01001101 00101011 01111010 01110010
  2444. 11101100 00001001 01001000 01010110 00010010 11001010 11000110 01001111
  2445. 10100000 11011011 00111000 01010000 11110001 10010000 10011000 11010010
  2446. 10100011 10001101 00010101 10011000 10000000 00000110 11001100 10000000
  2447. 01101000 01110111 11001101 10001111 10100111 10110001 01001100 10000001
  2448. 10010000 00101101 00001010 00010011 11101010 00101110 10010110 10001000
  2449. 00101101 00001000 11010001 01111111 10110111 01000000 11010010 01001111
  2450. 11010111 11110100 01110000 10111001 11011110 00011100 11100011 11100000
  2451. 10100000 10000101 01011100 10110100 10000010 00001010 11110100 00011110
  2452. 10011101 00011111 01001100 01100101 00001001 10011011 01010111 00010010
  2453. 01011101 00101101 00010100 01110111 11110111 11000010 00101110 11010111
  2454. 01011100 11011010 10101100 00011001 00011110 11011011 01100100 10111000
  2455. 00000011 11001100 11010100 11010111 00010100 00101011 01010011 10001110
  2456. 01011110 10000111 00110000 00011000 11100000 10011001 00001110 01101001
  2457. 10001001 00110110 10001011 01101001 01111110 01111101 10111111 10101001
  2458. ]]
  2459.  
  2460.  
  2461. hum.JumpPower = 55
  2462. hum.Animator.Parent = nil
  2463. ----------------------------------------------------------------------------------
  2464. --Origianlly was going to be a screen in the middle :depressed:
  2465.  
  2466. local Screen1 = IT("Part")
  2467. Screen1.BrickColor = BrickC("Bright orange")
  2468. Screen1.Material = "Glass"
  2469. Screen1.Color = Color3.new(218,133,65)
  2470. Screen1.Transparency = 0.3
  2471. Screen1.Size = Vector3.new(6, 4, 0)
  2472. Screen1.CanCollide = false
  2473. Screen1.Locked = true
  2474. Smooth(Screen1)
  2475. local Screen1Weld = IT("Weld")
  2476. Screen1Weld.Part0 = root
  2477. Screen1Weld.Part1 = Screen1
  2478. Screen1Weld.C0 = CF(-0, 3, -5) * angles(0, 0, 0)
  2479. Screen1Weld.Parent = Screen1
  2480. Screen1.Parent = char
  2481.  
  2482. local Screen2 = IT("Part")
  2483. Screen2.BrickColor = BrickC("Bright orange")
  2484. Screen2.Material = "Glass"
  2485. Screen2.Color = Color3.new(218,133,65)
  2486. Screen2.Transparency = 0.3
  2487. Screen2.Size = Vector3.new(6, 4, 0)
  2488. Screen2.CanCollide = false
  2489. Screen2.Locked = true
  2490. Smooth(Screen2)
  2491. local Screen2Weld = IT("Weld")
  2492. Screen2Weld.Part0 = root
  2493. Screen2Weld.Part1 = Screen2
  2494. Screen2Weld.C0 = CF(8, 4, -2) * angles(0.1, -0.9, 0)
  2495. Screen2Weld.Parent = Screen2
  2496. Screen2.Parent = char
  2497. ----------------------------------------------------------------------------------
  2498. local Screen3 = IT("Part")
  2499. Screen3.BrickColor = BrickC("Bright orange")
  2500. Screen3.Material = "Glass"
  2501. Screen3.Color = Color3.new(218,133,65)
  2502. Screen3.Transparency = 0.3
  2503. Screen3.Size = Vector3.new(6, 4, 0)
  2504. Screen3.CanCollide = false
  2505. Screen3.Locked = true
  2506. Smooth(Screen3)
  2507. local Screen3Weld = IT("Weld")
  2508. Screen3Weld.Part0 = root
  2509. Screen3Weld.Part1 = Screen3
  2510. Screen3Weld.C0 = CF(-8, 3, -2) * angles(0.1, 0.9, 0)
  2511. Screen3Weld.Parent = Screen3
  2512. Screen3.Parent = char
  2513. ----------------------------------------------------------------------------------
  2514. --Credit to Noobygames12 for this Hot gui that I totally stole
  2515. local Base = IT("GuiMain")
  2516. Base.Parent = plr.PlayerGui
  2517. local GUIFrame = IT("Frame")
  2518. GUIFrame.Parent = Base
  2519. GUIFrame.BackgroundColor3 = Color3.new(255, 255, 255)
  2520. GUIFrame.BackgroundTransparency = 1
  2521. GUIFrame.BorderColor3 = Color3.new(17, 17, 17)
  2522. GUIFrame.Size = UDim2.new(1, 0, 1, 0)
  2523. GUIFrame.Position = UDim2.new(0, 0, 0, 0)
  2524. local ActualHackerText = Instance.new("TextLabel",GUIFrame)
  2525. ActualHackerText.ZIndex = 2
  2526. ActualHackerText.Font = "SciFi"
  2527. ActualHackerText.BackgroundTransparency = 1
  2528. ActualHackerText.BorderSizePixel = 0.65
  2529. ActualHackerText.Size = UDim2.new(0.4,0,0.2,0)
  2530. ActualHackerText.Position = UDim2.new(0.565, 0, 0.9, 0)
  2531. ActualHackerText.TextColor3 = BrickC("Lime green").Color
  2532. ActualHackerText.TextStrokeColor3 = BrickC("Really black").Color
  2533. ActualHackerText.TextScaled = true
  2534. ActualHackerText.TextStrokeTransparency = 0
  2535. ActualHackerText.Text = "Halloween Hacker"
  2536. ActualHackerText.TextSize = 24
  2537. ActualHackerText.Rotation = 1
  2538. ActualHackerText.TextXAlignment = "Center"
  2539. ActualHackerText.TextYAlignment = "Top"
  2540.  
  2541. local FatAssAttacks1 = Instance.new("TextLabel",GUIFrame)
  2542. FatAssAttacks1.ZIndex = 2
  2543. FatAssAttacks1.Font = "SciFi"
  2544. FatAssAttacks1.BackgroundTransparency = 1
  2545. FatAssAttacks1.BorderSizePixel = 0.65
  2546. FatAssAttacks1.Size = UDim2.new(0.3, 0, 0.1, 0)
  2547. FatAssAttacks1.Position = UDim2.new(0.775, 0, 0.7, 0)
  2548. FatAssAttacks1.TextColor3 = BrickC("Lime green").Color
  2549. FatAssAttacks1.TextStrokeColor3 = BrickC("Really black").Color
  2550. FatAssAttacks1.TextScaled = true
  2551. FatAssAttacks1.TextStrokeTransparency = 0
  2552. FatAssAttacks1.Text = [[
  2553. Q - Relax
  2554. F - Code
  2555. Z - Screen Come / Away
  2556. X - Orbital Strike
  2557. C - EMP (WIP)
  2558. ]]
  2559. FatAssAttacks1.TextSize = 24
  2560. FatAssAttacks1.Rotation = 1
  2561. FatAssAttacks1.TextXAlignment = "Center"
  2562. FatAssAttacks1.TextYAlignment = "Bottom"
  2563. -------------------------------------------------------
  2564. --End Customization--
  2565. -------------------------------------------------------
  2566.  
  2567.  
  2568.  
  2569.  
  2570.  
  2571.  
  2572. -------------------------------------------------------
  2573. --Start Text Function--
  2574. -------------------------------------------------------
  2575.  
  2576. function mes(text,texttime)
  2577. if Screen1:FindFirstChild("SurfaceGui")~= nil then
  2578. Screen1:FindFirstChild("SurfaceGui"):destroy()
  2579. end
  2580. local text = text
  2581. local SGui = Instance.new("SurfaceGui",Screen1)
  2582.  
  2583. SGui.Face = "Back"
  2584.  
  2585. SGui.Adornee = Screen1
  2586.  
  2587. local hexertextxd = Instance.new("TextBox",SGui)
  2588. hexertextxd.Position = UDim2.new(0, 0, 0, 0)
  2589. hexertextxd.Size = UDim2.new(0.8, 0, 0.8, 0)
  2590. hexertextxd.TextColor3 = Color3.new(0, 1, 1)
  2591. hexertextxd.BackgroundTransparency = 1
  2592. if Screen == false then
  2593. hexertextxd.TextTransparency = Screen1.Transparency
  2594. end
  2595. hexertextxd.Font = "Fantasy"
  2596. hexertextxd.MultiLine = true
  2597. hexertextxd.TextWrapped = true
  2598. hexertextxd.TextSize = 34
  2599. hexertextxd.TextXAlignment = "Left"
  2600. hexertextxd.TextYAlignment = "Top"
  2601. hexertextxd.Text = ""
  2602. local tm = coroutine.wrap(function()
  2603. for i = 1,string.len(text),1 do
  2604. swait()
  2605. hexertextxd.Text = string.sub(text,texttime,i)
  2606. end
  2607. wait(3)
  2608. for i = 0,6,0.1 do
  2609. swait()
  2610. hexertextxd.TextTransparency = hexertextxd.TextTransparency + 0.04
  2611. hexertextxd.Position = UDim2.new(0+0.05*i, 0, 0, 0)
  2612. end
  2613. SGui:Destroy()
  2614. hexertextxd:Destroy()
  2615. end)
  2616. tm()
  2617. end
  2618.  
  2619. function mes2(text,texttime)
  2620. if Screen2:FindFirstChild("SurfaceGui")~= nil then
  2621. Screen2:FindFirstChild("SurfaceGui"):destroy()
  2622. end
  2623. local text = text
  2624. local SGui = Instance.new("SurfaceGui",Screen2)
  2625.  
  2626. SGui.Face = "Back"
  2627.  
  2628. SGui.Adornee = Screen2
  2629.  
  2630. local hexertextxd2 = Instance.new("TextBox",SGui)
  2631. hexertextxd2.Position = UDim2.new(0, 0, 0, 0)
  2632. hexertextxd2.Size = UDim2.new(0.8, 0, 0.8, 0)
  2633. hexertextxd2.TextColor3 = Color3.new(0, 1, 1)
  2634. hexertextxd2.BackgroundTransparency = 1
  2635. if Screen == false then
  2636. hexertextxd2.TextTransparency = Screen2.Transparency
  2637. end
  2638. hexertextxd2.Font = "Fantasy"
  2639. hexertextxd2.MultiLine = true
  2640. hexertextxd2.TextWrapped = true
  2641. hexertextxd2.TextSize = 34
  2642. hexertextxd2.TextXAlignment = "Left"
  2643. hexertextxd2.TextYAlignment = "Top"
  2644. hexertextxd2.Text = ""
  2645. local tm = coroutine.wrap(function()
  2646. for i = 1,string.len(text),1 do
  2647. swait()
  2648. hexertextxd2.Text = string.sub(text,texttime,i)
  2649. end
  2650. wait(3)
  2651. for i = 0,6,0.1 do
  2652. swait()
  2653. hexertextxd2.TextTransparency = hexertextxd2.TextTransparency + 0.04
  2654. hexertextxd2.Position = UDim2.new(0+0.05*i, 0, 0, 0)
  2655. end
  2656. SGui:Destroy()
  2657. hexertextxd2:Destroy()
  2658. end)
  2659. tm()
  2660. end
  2661.  
  2662.  
  2663.  
  2664. function mes3(text,texttime)
  2665. if Screen3:FindFirstChild("SurfaceGui")~= nil then
  2666. Screen3:FindFirstChild("SurfaceGui"):destroy()
  2667. end
  2668. local text2 = text
  2669. local SGui2 = Instance.new("SurfaceGui",Screen3)
  2670. SGui2.Face = "Back"
  2671.  
  2672. SGui2.Adornee = Screen3
  2673.  
  2674. local hexertextxd3 = Instance.new("TextBox",SGui2)
  2675. hexertextxd3.Position = UDim2.new(0, 0, 0, 0)
  2676. hexertextxd3.Size = UDim2.new(0.8, 0, 0.8, 0)
  2677. hexertextxd3.TextColor3 = Color3.new(0, 1, 1)
  2678. hexertextxd3.BackgroundTransparency = 1
  2679. hexertextxd3.Font = "Fantasy"
  2680. hexertextxd3.MultiLine = true
  2681. hexertextxd3.TextWrapped = true
  2682. hexertextxd3.TextSize = 34
  2683. if Screen == false then
  2684. hexertextxd3.TextTransparency = Screen3.Transparency
  2685. end
  2686. hexertextxd3.TextXAlignment = "Left"
  2687. hexertextxd3.TextYAlignment = "Top"
  2688. hexertextxd3.Text = ""
  2689. local tm2 = coroutine.wrap(function()
  2690. for i = 1,string.len(text2),1 do
  2691. swait()
  2692. hexertextxd3.Text = string.sub(text2,1,i)
  2693. end
  2694. wait(3)
  2695. for i = 0,6,0.1 do
  2696. swait()
  2697. hexertextxd3.TextTransparency = hexertextxd3.TextTransparency + 0.04
  2698. hexertextxd3.Position = UDim2.new(0+0.05*i, 0, 0, 0)
  2699. end
  2700. SGui2:Destroy()
  2701. hexertextxd3:Destroy()
  2702. end)
  2703. tm2()
  2704. end
  2705.  
  2706. -------------------------------------------------------
  2707. --End Text Function--
  2708. -------------------------------------------------------
  2709.  
  2710.  
  2711.  
  2712. -------------------------------------------------------
  2713. --Start Attacks N Stuff--
  2714. -------------------------------------------------------
  2715. function AttackTemplate()
  2716. attack = true
  2717. for i = 0, 2, 0.1 do
  2718. swait()
  2719. rootj.C0 = clerp(rootj.C0, RootCF * CF(0* Player_Size, 0* Player_Size, -0.1 + 0.1* Player_Size * Cos(sine / 20)) * angles(Rad(0), Rad(0), Rad(0)), 0.1)
  2720. neck.C0 = clerp(neck.C0, necko* CF(0, 0, 0 + ((1* Player_Size) - 1)) * angles(Rad(0 - 5 * Sin(sine / 20)), Rad(0), Rad(0)), 0.1)
  2721. rl.Weld.C0 = clerp(rl.Weld.C0, CF(0.5* Player_Size, -0.9 - 0.1 * Cos(sine / 20)* Player_Size, 0* Player_Size) * angles(Rad(0), Rad(-10), Rad(0)) * angles(Rad(0), Rad(0), Rad(5)), 0.1)
  2722. ll.Weld.C0 = clerp(ll.Weld.C0, CF(-0.5* Player_Size, -0.9 - 0.1 * Cos(sine / 20)* Player_Size, 0* Player_Size) * angles(Rad(0), Rad(10), Rad(0)) * angles(Rad(0), Rad(0), Rad(-5)), 0.1)
  2723. RW.C0 = clerp(RW.C0, CF(1.5* Player_Size, 0.5 + 0.1 * Sin(sine / 20)* Player_Size, 0* Player_Size) * angles(Rad(0), Rad(0 + 5 * Sin(sine / 20)), Rad(10 + 5 * Sin(sine / 20))), 0.1)
  2724. LW.C0 = clerp(LW.C0, CF(-1.5* Player_Size, 0.5 + 0.1 * Sin(sine / 20)* Player_Size, 0* Player_Size) * angles(Rad(0), Rad(0 - 5 * Sin(sine / 20)), Rad(-10 - 5 * Sin(sine / 20))), 0.1)
  2725. end
  2726. attack = false
  2727. end
  2728. function Maniac()
  2729. Speed = 0
  2730. Cso("1607788178", hed, 3, 0.9)
  2731. attack = true
  2732. for i = 0, 10, 0.1 do
  2733. swait()
  2734. change = 1.5
  2735. rootj.C0 = clerp(rootj.C0, RootCF * CF(0* Player_Size, 0* Player_Size, -0.1 + 0.1* Player_Size * Cos(sine / 2)) * angles(Rad(0 - 4 * Sin(sine / 20)), Rad(0 + 1 * Cos(sine / 20)), Rad(0)), 0.1)
  2736. neck.C0 = clerp(tors.Neck.C0, necko* CF(0, 0, 0 + ((1* Player_Size) - 1)) * angles(Rad(20 - 2.5 * Sin(sine / 2)), Rad(0), Rad(0)), 0.1)
  2737. rl.Weld.C0 = clerp(rl.Weld.C0, CF(0.5* Player_Size, -0.9 - 0.1 * Cos(sine / 2) - Rad(0 + 2 * Cos(sine / 20)) * Player_Size, 0* Player_Size) * angles(Rad(0 - 6 * Sin(sine / 20)), Rad(-10 + 1 * Cos(sine / 20)), Rad(0)) * angles(Rad(0), Rad(0), Rad(5 - 1 * Cos(sine / 20))), 0.1)
  2738. ll.Weld.C0 = clerp(ll.Weld.C0, CF(-0.5* Player_Size, -0.9 - 0.1 * Cos(sine / 2) + Rad(0 + 2 * Cos(sine / 20)) * Player_Size, 0* Player_Size) * angles(Rad(0 - 6 * Sin(sine / 20)), Rad(10 + 1 * Cos(sine / 20)), Rad(0)) * angles(Rad(0), Rad(0), Rad(-5 - 1 * Cos(sine / 20))), 0.1)
  2739. RW.C0 = clerp(RW.C0, CF(1.5* Player_Size, 0.5 + 0.1 * Cos(sine / 2)* Player_Size, 0* Player_Size) * angles(Rad(90), Rad(0), Rad(0)), 0.1)
  2740. LW.C0 = clerp(LW.C0, CF(-1* Player_Size, 0.3 + 0.1 * Cos(sine / 2)* Player_Size, 0.6* Player_Size) * angles(Rad(-35), Rad(0), Rad(55)), 0.1)
  2741. end
  2742. attack = false
  2743. Speed = 16
  2744. end
  2745. function ScreenAway()
  2746. attack = true
  2747. Speed = 8
  2748. movelegs = true
  2749. for i = 0, 4, 0.1 do
  2750. swait()
  2751. rootj.C0 = clerp(rootj.C0, RootCF * CF(0* Player_Size, 0* Player_Size, -0.1 + 0.1* Player_Size * Cos(sine / 20)) * angles(Rad(0 - 4 * Sin(sine / 20)), Rad(0 + 1 * Cos(sine / 20)), Rad(-40)), 0.1)
  2752. neck.C0 = clerp(tors.Neck.C0, necko* CF(0, 0, 0 + ((1* Player_Size) - 1)) * angles(Rad(0 - 5 * Sin(sine / 20)), Rad(0), Rad(40)), 0.1)
  2753. rl.Weld.C0 = clerp(rl.Weld.C0, CF(0.5* Player_Size, -0.9 - 0.1 * Cos(sine / 20) - Rad(0 + 2 * Cos(sine / 20)) * Player_Size, 0* Player_Size) * angles(Rad(0 - 6 * Sin(sine / 20)), Rad(-10 + 1 * Cos(sine / 20)), Rad(0)) * angles(Rad(0), Rad(0), Rad(5 - 1 * Cos(sine / 20))), 0.1)
  2754. ll.Weld.C0 = clerp(ll.Weld.C0, CF(-0.5* Player_Size, -0.9 - 0.1 * Cos(sine / 20) + Rad(0 + 2 * Cos(sine / 20)) * Player_Size, 0* Player_Size) * angles(Rad(0 - 6 * Sin(sine / 20)), Rad(10 + 1 * Cos(sine / 20)), Rad(0)) * angles(Rad(0), Rad(0), Rad(-5 - 1 * Cos(sine / 20))), 0.1)
  2755. RW.C0 = clerp(RW.C0, CF(1* Player_Size, 0.3 + 0.1 * Sin(sine / 20)* Player_Size, 0.6* Player_Size) * angles(Rad(-35), Rad(15), Rad(-55)), 0.1)
  2756. LW.C0 = clerp(LW.C0, CF(-1.5* Player_Size, 0.5 + 0.1 * Sin(sine / 20)* Player_Size, 0* Player_Size) * angles(Rad(125), Rad(0), Rad(-55)), 0.1)
  2757. end
  2758. Cso("1184953203", tors, 3, 1)
  2759. for i = 0, 4, 0.1 do
  2760. swait()
  2761. Screen2.Transparency = Screen2.Transparency + 0.03
  2762. Screen3.Transparency = Screen3.Transparency + 0.03
  2763. rootj.C0 = clerp(rootj.C0, RootCF * CF(0* Player_Size, 0* Player_Size, -0.1 + 0.1* Player_Size * Cos(sine / 20)) * angles(Rad(0 - 4 * Sin(sine / 20)), Rad(0 + 1 * Cos(sine / 20)), Rad(-40)), 0.1)
  2764. neck.C0 = clerp(tors.Neck.C0, necko* CF(0, 0, 0 + ((1* Player_Size) - 1)) * angles(Rad(0 - 5 * Sin(sine / 20)), Rad(0), Rad(40)), 0.1)
  2765. rl.Weld.C0 = clerp(rl.Weld.C0, CF(0.5* Player_Size, -0.9 - 0.1 * Cos(sine / 20) - Rad(0 + 2 * Cos(sine / 20)) * Player_Size, 0* Player_Size) * angles(Rad(0 - 6 * Sin(sine / 20)), Rad(-10 + 1 * Cos(sine / 20)), Rad(0)) * angles(Rad(0), Rad(0), Rad(5 - 1 * Cos(sine / 20))), 0.1)
  2766. ll.Weld.C0 = clerp(ll.Weld.C0, CF(-0.5* Player_Size, -0.9 - 0.1 * Cos(sine / 20) + Rad(0 + 2 * Cos(sine / 20)) * Player_Size, 0* Player_Size) * angles(Rad(0 - 6 * Sin(sine / 20)), Rad(10 + 1 * Cos(sine / 20)), Rad(0)) * angles(Rad(0), Rad(0), Rad(-5 - 1 * Cos(sine / 20))), 0.1)
  2767. RW.C0 = clerp(RW.C0, CF(1* Player_Size, 0.3 + 0.1 * Sin(sine / 20)* Player_Size, 0.6* Player_Size) * angles(Rad(-35), Rad(15), Rad(-55)), 0.1)
  2768. LW.C0 = clerp(LW.C0, CF(-1.5* Player_Size, 0.5 + 0.1 * Sin(sine / 20)* Player_Size, 0* Player_Size) * angles(Rad(125), Rad(0), Rad(25)), 0.1)
  2769. end
  2770. Speed = 16
  2771. Screen = false
  2772. movelegs = false
  2773. attack = false
  2774. end
  2775. function ScreenCome()
  2776. attack = true
  2777. Speed = 8
  2778. movelegs = true
  2779. for i = 0, 4, 0.1 do
  2780. swait()
  2781. rootj.C0 = clerp(rootj.C0, RootCF * CF(0* Player_Size, 0* Player_Size, -0.1 + 0.1* Player_Size * Cos(sine / 20)) * angles(Rad(0 - 4 * Sin(sine / 20)), Rad(0 + 1 * Cos(sine / 20)), Rad(-40)), 0.1)
  2782. neck.C0 = clerp(tors.Neck.C0, necko* CF(0, 0, 0 + ((1* Player_Size) - 1)) * angles(Rad(0 - 5 * Sin(sine / 20)), Rad(0), Rad(40)), 0.1)
  2783. rl.Weld.C0 = clerp(rl.Weld.C0, CF(0.5* Player_Size, -0.9 - 0.1 * Cos(sine / 20) - Rad(0 + 2 * Cos(sine / 20)) * Player_Size, 0* Player_Size) * angles(Rad(0 - 6 * Sin(sine / 20)), Rad(-10 + 1 * Cos(sine / 20)), Rad(0)) * angles(Rad(0), Rad(0), Rad(5 - 1 * Cos(sine / 20))), 0.1)
  2784. ll.Weld.C0 = clerp(ll.Weld.C0, CF(-0.5* Player_Size, -0.9 - 0.1 * Cos(sine / 20) + Rad(0 + 2 * Cos(sine / 20)) * Player_Size, 0* Player_Size) * angles(Rad(0 - 6 * Sin(sine / 20)), Rad(10 + 1 * Cos(sine / 20)), Rad(0)) * angles(Rad(0), Rad(0), Rad(-5 - 1 * Cos(sine / 20))), 0.1)
  2785. RW.C0 = clerp(RW.C0, CF(1* Player_Size, 0.3 + 0.1 * Sin(sine / 20)* Player_Size, 0.6* Player_Size) * angles(Rad(-35), Rad(15), Rad(-55)), 0.1)
  2786. LW.C0 = clerp(LW.C0, CF(-1.5* Player_Size, 0.5 + 0.1 * Sin(sine / 20)* Player_Size, 0* Player_Size) * angles(Rad(125), Rad(0), Rad(25)), 0.1)
  2787. end
  2788. Cso("1184953775", tors, 3, 1)
  2789. for i = 0, 4, 0.1 do
  2790. swait()
  2791. Screen2.Transparency = Screen2.Transparency - 0.03
  2792. Screen3.Transparency = Screen3.Transparency - 0.03
  2793. rootj.C0 = clerp(rootj.C0, RootCF * CF(0* Player_Size, 0* Player_Size, -0.1 + 0.1* Player_Size * Cos(sine / 20)) * angles(Rad(0 - 4 * Sin(sine / 20)), Rad(0 + 1 * Cos(sine / 20)), Rad(-40)), 0.1)
  2794. neck.C0 = clerp(tors.Neck.C0, necko* CF(0, 0, 0 + ((1* Player_Size) - 1)) * angles(Rad(0 - 5 * Sin(sine / 20)), Rad(0), Rad(40)), 0.1)
  2795. rl.Weld.C0 = clerp(rl.Weld.C0, CF(0.5* Player_Size, -0.9 - 0.1 * Cos(sine / 20) - Rad(0 + 2 * Cos(sine / 20)) * Player_Size, 0* Player_Size) * angles(Rad(0 - 6 * Sin(sine / 20)), Rad(-10 + 1 * Cos(sine / 20)), Rad(0)) * angles(Rad(0), Rad(0), Rad(5 - 1 * Cos(sine / 20))), 0.1)
  2796. ll.Weld.C0 = clerp(ll.Weld.C0, CF(-0.5* Player_Size, -0.9 - 0.1 * Cos(sine / 20) + Rad(0 + 2 * Cos(sine / 20)) * Player_Size, 0* Player_Size) * angles(Rad(0 - 6 * Sin(sine / 20)), Rad(10 + 1 * Cos(sine / 20)), Rad(0)) * angles(Rad(0), Rad(0), Rad(-5 - 1 * Cos(sine / 20))), 0.1)
  2797. RW.C0 = clerp(RW.C0, CF(1* Player_Size, 0.3 + 0.1 * Sin(sine / 20)* Player_Size, 0.6* Player_Size) * angles(Rad(-35), Rad(15), Rad(-55)), 0.1)
  2798. LW.C0 = clerp(LW.C0, CF(-1.5* Player_Size, 0.5 + 0.1 * Sin(sine / 20)* Player_Size, 0* Player_Size) * angles(Rad(125), Rad(0), Rad(-55)), 0.1)
  2799. end
  2800. Speed = 16
  2801. Screen = true
  2802. movelegs = false
  2803. attack = false
  2804. end
  2805. function Relax()
  2806. attack = true
  2807. Speed = 0
  2808. Sitt = true
  2809. repeat
  2810. swait()
  2811. rootj.C0 = clerp(rootj.C0, RootCF * CF(0* Player_Size, 0* Player_Size, -1.6 + 0.1* Player_Size * Cos(sine / 20)) * angles(Rad(-15), Rad(0), Rad(0)), 0.1)
  2812. neck.C0 = clerp(neck.C0, necko* CF(0, 0, 0 + ((1* Player_Size) - 1)) * angles(Rad(20 - 5 * Sin(sine / 20)), Rad(0), Rad(0)), 0.1)
  2813. rl.Weld.C0 = clerp(rl.Weld.C0, CF(0.5* Player_Size, 0.1 - 0.1 * Cos(sine / 20)* Player_Size, -0.6* Player_Size) * angles(Rad(0), Rad(-10), Rad(0)) * angles(Rad(25), Rad(0), Rad(5)), 0.1)
  2814. ll.Weld.C0 = clerp(ll.Weld.C0, CF(-0.5* Player_Size, -0.9 - 0.1 * Cos(sine / 20)* Player_Size, 0* Player_Size) * angles(Rad(0), Rad(10), Rad(0)) * angles(Rad(75), Rad(0), Rad(-5)), 0.1)
  2815. RW.C0 = clerp(RW.C0, CF(1.3* Player_Size, 0.5 + 0.1 * Sin(sine / 20)* Player_Size, -0.6* Player_Size) * angles(Rad(75), Rad(0), Rad(-55)), 0.1)
  2816. LW.C0 = clerp(LW.C0, CF(-1.5* Player_Size, 0.2 + 0.1 * Sin(sine / 20)* Player_Size, 0* Player_Size) * angles(Rad(-20), Rad(0 - 5 * Sin(sine / 20)), Rad(-10 - 5 * Sin(sine / 20))), 0.1)
  2817. until Sitt == false
  2818. Speed = 16
  2819. attack = false
  2820. end
  2821. function Orb_Strike()
  2822. attack = true
  2823. Speed = 12
  2824. movelegs = true
  2825. if plr.Name == "KillerDarkness0105" then
  2826.  
  2827. mes2([[Codex : I'm Bombing them now, Lets see how long they last.
  2828.  
  2829.  
  2830. Creterisk : Nice job. Keep doing what your doing.
  2831.  
  2832.  
  2833. Codex : Alright.
  2834.  
  2835. ]],1.35)
  2836. end
  2837. if plr.Name == "Creterisk" then
  2838.  
  2839. mes2([[Creterisk : Bout to rekt some skids.
  2840.  
  2841.  
  2842. Codex : xd we should do this more often
  2843.  
  2844.  
  2845. Creterisk : same
  2846.  
  2847. ]],1.35)
  2848. end
  2849. if plr.Name ~= "Creterisk" and plr.Name ~= "KillerDarkness0105" then
  2850.  
  2851. mes2([[Orbital Called Launching now.]],1.35)
  2852. end
  2853. mes("Activating: Orbital Air Strike.",0.05)
  2854. for i = 0, 1.2, 0.1 do
  2855. swait()
  2856. for i = 0, 0.2, 0.1 do
  2857. swait()
  2858. rootj.C0 = clerp(rootj.C0, RootCF * CF(0* Player_Size, 0* Player_Size, -0.1 + 0.1* Player_Size * Cos(sine / 20)) * angles(Rad(0 - 4 * Sin(sine / 20)), Rad(0 + 1 * Cos(sine / 20)), Rad(0)), 0.1)
  2859. neck.C0 = clerp(tors.Neck.C0, necko* CF(0, 0, 0 + ((1* Player_Size) - 1)) * angles(Rad(20 - 5 * Sin(sine / 20)), Rad(0), Rad(-20)), 0.1)
  2860. rl.Weld.C0 = clerp(rl.Weld.C0, CF(0.5* Player_Size, -0.9 - 0.1 * Cos(sine / 20) - Rad(0 + 2 * Cos(sine / 20)) * Player_Size, 0* Player_Size) * angles(Rad(0 - 6 * Sin(sine / 20)), Rad(-10 + 1 * Cos(sine / 20)), Rad(0)) * angles(Rad(0), Rad(0), Rad(5 - 1 * Cos(sine / 20))), 0.1)
  2861. ll.Weld.C0 = clerp(ll.Weld.C0, CF(-0.5* Player_Size, -0.9 - 0.1 * Cos(sine / 20) + Rad(0 + 2 * Cos(sine / 20)) * Player_Size, 0* Player_Size) * angles(Rad(0 - 6 * Sin(sine / 20)), Rad(10 + 1 * Cos(sine / 20)), Rad(0)) * angles(Rad(0), Rad(0), Rad(-5 - 1 * Cos(sine / 20))), 0.1)
  2862. RW.C0 = clerp(RW.C0, CF(1.5* Player_Size, 0.5 + 0.01 * Sin(sine / 20)* Player_Size, 0* Player_Size) * angles(Rad(90), Rad(0), Rad(0)), 0.1)
  2863. LW.C0 = clerp(LW.C0, CF(-1.5* Player_Size, 0.5 + 0.01 * Sin(sine / 20)* Player_Size, 0* Player_Size) * angles(Rad(90), Rad(0), Rad(-35)), 0.1)
  2864. end
  2865. for i = 0, 0.4, 0.1 do
  2866. swait()
  2867. rootj.C0 = clerp(rootj.C0, RootCF * CF(0* Player_Size, 0* Player_Size, -0.1 + 0.1* Player_Size * Cos(sine / 20)) * angles(Rad(0 - 4 * Sin(sine / 20)), Rad(0 + 1 * Cos(sine / 20)), Rad(0)), 0.1)
  2868. neck.C0 = clerp(tors.Neck.C0, necko* CF(0, 0, 0 + ((1* Player_Size) - 1)) * angles(Rad(20 - 5 * Sin(sine / 20)), Rad(0), Rad(-20)), 0.1)
  2869. rl.Weld.C0 = clerp(rl.Weld.C0, CF(0.5* Player_Size, -0.9 - 0.1 * Cos(sine / 20) - Rad(0 + 2 * Cos(sine / 20)) * Player_Size, 0* Player_Size) * angles(Rad(0 - 6 * Sin(sine / 20)), Rad(-10 + 1 * Cos(sine / 20)), Rad(0)) * angles(Rad(0), Rad(0), Rad(5 - 1 * Cos(sine / 20))), 0.1)
  2870. ll.Weld.C0 = clerp(ll.Weld.C0, CF(-0.5* Player_Size, -0.9 - 0.1 * Cos(sine / 20) + Rad(0 + 2 * Cos(sine / 20)) * Player_Size, 0* Player_Size) * angles(Rad(0 - 6 * Sin(sine / 20)), Rad(10 + 1 * Cos(sine / 20)), Rad(0)) * angles(Rad(0), Rad(0), Rad(-5 - 1 * Cos(sine / 20))), 0.1)
  2871. RW.C0 = clerp(RW.C0, CF(1.5* Player_Size, 0.5 + 0.01 * Sin(sine / 20)* Player_Size, 0* Player_Size) * angles(Rad(90), Rad(0), Rad(0)), 0.1)
  2872. LW.C0 = clerp(LW.C0, CF(1* Player_Size, 0.5 + 0.01 * Sin(sine / 20)* Player_Size, -1* Player_Size) * angles(Rad(90), Rad(0), Rad(85)), 0.1)
  2873. end
  2874. end
  2875. Speed = 16
  2876. movelegs = false
  2877. mes("Orbital Air Strike Launched.",0.05)
  2878. coroutine.resume(coroutine.create(function()
  2879. wait(2)
  2880. Cso("2108801154", char, 7, 0.8)
  2881. for i = 0, 9 do
  2882. Effects.Meshed(mouse.Hit * CFrame.Angles(math.rad(math.random(0,360)),math.rad(math.random(0,360)),math.rad(math.random(0,360))),Vector3.new(),Vector3.new(.0115,.0005,.0115),"","rbxassetid://662585058","",0,false,0.03)
  2883. Aura(1, 1.5, "Add", mouse.Hit * CFrame.Angles(math.rad(math.random(-360, 360)), math.rad(math.random(-360, 360)), math.rad(math.random(-360, 360))), 5, 5, 45, -0.05, maincolor, 0, "Sphere")
  2884. Aura(2, 1.5, "Add", mouse.Hit * CFrame.Angles(math.rad(math.random(-360, 360)), math.rad(math.random(-360, 360)), math.rad(math.random(-360, 360))), 5, 5, 45, -0.05, maincolor, 0, "Sphere")
  2885. end
  2886. Magic(5, "Add", mouse.Hit * CFrame.new(0, -2.9, 0), Vector3.new(0, 0, 0), 1, maincolor, "Sphere")
  2887. Magic(10, "Add", mouse.Hit * CFrame.new(0, -2.9, 0), Vector3.new(0, 0, 0), 2, maincolor, "Sphere")
  2888. Magic(1, "Add", mouse.Hit, Vector3.new(1, 100000, 1), 0.5, maincolor, "Sphere")
  2889. Magic(1, "Add", mouse.Hit, Vector3.new(1, 1, 1), 0.75, maincolor, "Sphere")
  2890. CamShake(2, 15)
  2891. for i, v in pairs(FindNearestHead(mouse.Hit.p, 14.5)) do
  2892. if v:FindFirstChild("Head") then
  2893. Eviscerate(v)
  2894. end
  2895. end
  2896. attack = false
  2897. end))
  2898. end
  2899.  
  2900. -------------------------------------------------------
  2901. --End Attacks N Stuff--
  2902. -------------------------------------------------------
  2903. mouse.KeyDown:connect(function(key)
  2904. if (op1 == false and attack == false) or Sitt == true then
  2905. if key == "q" then
  2906. if Sitt == false then
  2907. Relax()
  2908. elseif Sitt == true then
  2909. Sitt = false
  2910. end
  2911. end
  2912. end
  2913. if (op1 == false and attack == false) or Sitt == true then
  2914. if key == "f" then
  2915. if Sitt == false and Screen == true then
  2916. Code()
  2917. elseif Sitt == true then
  2918. Sitt = false
  2919. end
  2920. end
  2921. end
  2922. if attack == false then
  2923. if key == "t" then
  2924. Maniac()
  2925. elseif key == "z" then
  2926. if Screen == true then
  2927. ScreenAway()
  2928. else
  2929. ScreenCome()
  2930. end
  2931. elseif key == "x" then
  2932. Orb_Strike()
  2933. elseif key == "r" then
  2934. DIE()
  2935. elseif key == "c" then
  2936. EMP()
  2937. elseif key == "1" then
  2938. SONG = 2007066385
  2939. Music.TimePosition = 0
  2940. mes("Now playing : Welcome to the Game - Main Menu",0.05)
  2941. elseif key == "2" then
  2942. SONG = 1825107283
  2943. Music.TimePosition = 0
  2944. mes("Now playing : Welcome to the Game 2 - Main Menu",0.05)
  2945. elseif key == "3" then
  2946. SONG = 1366716306
  2947. Music.TimePosition = 0
  2948. mes("Now playing : Watashi no mono - School Day Sane",0.05)
  2949. elseif key == "4" then
  2950. SONG = 2116461106
  2951. Music.TimePosition = 0
  2952. mes("Now playing : Destroid - Annihilate",0.05)
  2953. mes2("YOU HAVE BEEN DESTROYED",0.05)
  2954. elseif key == "5" and plr.Name == "KillerDarkness0105" then
  2955. SONG = 1837185092
  2956. Music.TimePosition = 0
  2957. mes("Now playing : (UNKNOWN ARTIST) - Clubbed",0.05)
  2958. elseif key == "5" and plr.Name == "Creterisk" then
  2959. SONG = 200602561
  2960. Music.TimePosition = 0
  2961. mes("Now playing : Aldnoah.Zero - SiTE n0w1",0.05)
  2962. end
  2963. end
  2964. end)
  2965.  
  2966.  
  2967. hed.Transparency = 1
  2968.  
  2969.  
  2970.  
  2971. char.Head.face.Texture = "rbxassetid://0"
  2972.  
  2973.  
  2974. -------------------------------------------------------
  2975. --Start Animations--
  2976. -------------------------------------------------------
  2977. print("By Creterisk and KillerDarkness0105")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement