Advertisement
Mateolr

Untitled

Nov 17th, 2018
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. ------[[Kirby Morph made by: DoogleFox]]-------------------------------------------------------------------------------------------------------------------------------------------------
  2.  
  3. user = "Mateolr"
  4.  
  5. if script.Parent.className ~= "HopperBin" then
  6. bin = Instance.new("HopperBin")
  7. bin.Parent = game.Players[user].Backpack
  8. bin.Name = "Kirby"
  9. script.Parent = bin
  10. end
  11.  
  12. bin = script.Parent
  13.  
  14. m = Instance.new("Model")
  15. m.Parent = bin.Parent.Parent.Character
  16. m.Name = "KirbyMorph"
  17.  
  18. p = Instance.new("Part")
  19. p.Parent = m
  20. p.Name = "MainBody"
  21. p.formFactor = ("Symmetric")
  22. p.Size = Vector3.new(4,4,4)
  23. p.CFrame = bin.Parent.Parent.Character.Torso.CFrame
  24. p.BrickColor = BrickColor.new("Light reddish violet")
  25. p.Locked = true
  26. p.CanCollide = true
  27. p.Shape = ("Ball")
  28. p.TopSurface = ("Smooth")
  29. p.BottomSurface = ("Smooth")
  30.  
  31. d = Instance.new("Decal")
  32. d.Parent = p
  33. d.Face = ("Front")
  34. d.Texture = ("http://www.roblox.com/asset/?id=5732750")
  35.  
  36. w = Instance.new("Weld")
  37. w.Parent = p
  38. w.Name = "BodyWeld"
  39. w.Part0 = p
  40. w.Part1 = bin.Parent.Parent.Character.Torso
  41. w.C0 = CFrame.new(0,0.2,0)
  42.  
  43. a1 = Instance.new("Part")
  44. a1.Parent = m
  45. a1.Name = "Left Arm"
  46. a1.formFactor = ("Symmetric")
  47. a1.Size = Vector3.new(2,2,2)
  48. a1.CFrame = bin.Parent.Parent.Character["Left Arm"].CFrame
  49. a1.BrickColor = BrickColor.new("Light reddish violet")
  50. a1.Locked = true
  51. a1.CanCollide = true
  52. a1.Shape = ("Ball")
  53. a1.TopSurface = ("Smooth")
  54. a1.BottomSurface = ("Smooth")
  55.  
  56. a1w = Instance.new("Weld")
  57. a1w.Parent = a1
  58. a1w.Name = "ArmWeld1"
  59. a1w.Part0 = a1
  60. a1w.Part1 = bin.Parent.Parent.Character["Left Arm"]
  61. a1w.C0 = CFrame.new(0.2,0.2,0)
  62.  
  63. a2 = Instance.new("Part")
  64. a2.Parent = m
  65. a2.Name = "Right Arm"
  66. a2.formFactor = ("Symmetric")
  67. a2.Size = Vector3.new(2,2,2)
  68. a2.CFrame = bin.Parent.Parent.Character["Left Arm"].CFrame
  69. a2.BrickColor = BrickColor.new("Light reddish violet")
  70. a2.Locked = true
  71. a2.CanCollide = true
  72. a2.Shape = ("Ball")
  73. a2.TopSurface = ("Smooth")
  74. a2.BottomSurface = ("Smooth")
  75.  
  76. a2w = Instance.new("Weld")
  77. a2w.Parent = a2
  78. a2w.Name = "ArmWeld2"
  79. a2w.Part0 = a2
  80. a2w.Part1 = bin.Parent.Parent.Character["Right Arm"]
  81. a2w.C0 = CFrame.new(-0.2,0.2,0)
  82.  
  83. l = Instance.new("Part")
  84. l.Parent = m
  85. l.Name = "Left Leg"
  86. l.formFactor = ("Symmetric")
  87. l.Size = Vector3.new(2,2,2)
  88. l.CFrame = bin.Parent.Parent.Character["Left Leg"].CFrame
  89. l.BrickColor = BrickColor.new("Dusty Rose")
  90. l.Locked = true
  91. l.CanCollide = true
  92. l.Shape = ("Ball")
  93. l.TopSurface = ("Smooth")
  94. l.BottomSurface = ("Smooth")
  95.  
  96. lm = Instance.new("SpecialMesh")
  97. lm.Parent = l
  98. lm.Name = "LegMesh"
  99. lm.MeshType = ("Sphere")
  100. lm.Scale = Vector3.new(0.9,0.9,1.2)
  101.  
  102. lw = Instance.new("Weld")
  103. lw.Parent = l
  104. lw.Name = "LegWeld"
  105. lw.Part0 = l
  106. lw.Part1 = bin.Parent.Parent.Character["Left Leg"]
  107. lw.C0 = CFrame.new(0.25,0.2,0)
  108.  
  109. l2 = Instance.new("Part")
  110. l2.Parent = m
  111. l2.Name = "Right Leg"
  112. l2.formFactor = ("Symmetric")
  113. l2.Size = Vector3.new(2,2,2)
  114. l2.CFrame = bin.Parent.Parent.Character["Right Leg"].CFrame
  115. l2.BrickColor = BrickColor.new("Dusty Rose")
  116. l2.Locked = true
  117. l2.CanCollide = true
  118. l2.Shape = ("Ball")
  119. l2.TopSurface = ("Smooth")
  120. l2.BottomSurface = ("Smooth")
  121.  
  122. l2m = Instance.new("SpecialMesh")
  123. l2m.Parent = l2
  124. l2m.Name = "LegMesh"
  125. l2m.MeshType = ("Sphere")
  126. l2m.Scale = Vector3.new(0.9,0.9,1.2)
  127.  
  128. l2w = Instance.new("Weld")
  129. l2w.Parent = l2
  130. l2w.Name = "LegWeld2"
  131. l2w.Part0 = l2
  132. l2w.Part1 = bin.Parent.Parent.Character["Right Leg"]
  133. l2w.C0 = CFrame.new(-0.25,0.2,0)
  134.  
  135. c = bin.Parent.Parent.Character:GetChildren()
  136. for i = 1, #c do
  137. if c[i].className == "Part" then
  138. c[i].Transparency = 1
  139. end
  140. end
  141. for ii = 1, #c do
  142. if c[ii].className == "Hat" then
  143. c[ii]:remove()
  144. end
  145. end
  146. wait()
  147. if bin.Parent.Parent.Character.Head:findFirstChild("face") ~= nil then
  148. bin.Parent.Parent.Character.Head:findFirstChild("face"):remove()
  149. end
  150.  
  151.  
  152. ---------------------------------------------------------------------------------------------------------------------
  153.  
  154.  
  155.  
  156. bp = Instance.new("BodyPosition")
  157. bp.Parent = bin
  158. bp.maxForce = Vector3.new(2000,2000,2000)
  159.  
  160. enabled = true
  161. function onButton1Down(mouse)
  162. if mouse.Target ~= nil then
  163. if mouse.Target.Parent:findFirstChild("Humanoid") ~= nil then
  164. if enabled == true then
  165. enabled = false
  166. name = mouse.Target.Parent.Name
  167. bp.Parent = mouse.Target.Parent:findFirstChild("Torso")
  168. mouse.Target.Parent.Humanoid.PlatformStand = true
  169. bp.position = bin.Parent.Parent.Character.Torso.Position
  170. function touch(hit)
  171. if hit.Name == "MainBody" then
  172. parts = workspace[name]:GetChildren()
  173. for i = 1, #parts do
  174. if parts[i].className == "Part" then
  175. parts[i]:remove()
  176. end
  177. enabled = true
  178. end
  179. else
  180. wait()
  181. end
  182. end
  183. mouse.Target.Parent:findFirstChild("Torso").Touched:connect(touch)
  184. else
  185. wait()
  186. end
  187. end
  188. end
  189. end
  190.  
  191. bin.Selected:connect(function(mouse)
  192. mouse.Icon = "rbxasset://textures\\GunCursor.png"
  193. mouse.Button1Down:connect(function() onButton1Down(mouse) end)
  194. end)
  195.  
  196. --//====================================================\\--
  197. --|| this part was CREATED BY SHACKLUSTER, and then copied into this kirby script by trystingb
  198. --\\====================================================//--
  199.  
  200.  
  201.  
  202. wait(0.2)
  203.  
  204.  
  205.  
  206. Player = game:GetService("Players").LocalPlayer
  207. PlayerGui = Player.PlayerGui
  208. Cam = workspace.CurrentCamera
  209. Backpack = Player.Backpack
  210. Character = Player.Character
  211. Humanoid = Character.Humanoid
  212. Mouse = Player:GetMouse()
  213. RootPart = Character["HumanoidRootPart"]
  214. Torso = Character["Torso"]
  215. Head = Character["Head"]
  216. RightArm = Character["Right Arm"]
  217. LeftArm = Character["Left Arm"]
  218. RightLeg = Character["Right Leg"]
  219. LeftLeg = Character["Left Leg"]
  220. RootJoint = RootPart["RootJoint"]
  221. Neck = Torso["Neck"]
  222. RightShoulder = Torso["Right Shoulder"]
  223. LeftShoulder = Torso["Left Shoulder"]
  224. RightHip = Torso["Right Hip"]
  225. LeftHip = Torso["Left Hip"]
  226. local sick = Instance.new("Sound",Torso)
  227. sick.SoundId = "rbxassetid://608846300"
  228. sick.Looped = true
  229. sick.Pitch = 1
  230. sick.Volume = 10
  231. local succing = {}
  232.  
  233. IT = Instance.new
  234. CF = CFrame.new
  235. VT = Vector3.new
  236. RAD = math.rad
  237. C3 = Color3.new
  238. UD2 = UDim2.new
  239. BRICKC = BrickColor.new
  240. ANGLES = CFrame.Angles
  241. EULER = CFrame.fromEulerAnglesXYZ
  242. COS = math.cos
  243. ACOS = math.acos
  244. SIN = math.sin
  245. ASIN = math.asin
  246. ABS = math.abs
  247. MRANDOM = math.random
  248. FLOOR = math.floor
  249.  
  250. function CreateMesh(MESH, PARENT, MESHTYPE, MESHID, TEXTUREID, SCALE, OFFSET)
  251. local NEWMESH = IT(MESH)
  252. if MESH == "SpecialMesh" then
  253. NEWMESH.MeshType = MESHTYPE
  254. if MESHID ~= "nil" and MESHID ~= "" then
  255. NEWMESH.MeshId = "http://www.roblox.com/asset/?id="..MESHID
  256. end
  257. if TEXTUREID ~= "nil" and TEXTUREID ~= "" then
  258. NEWMESH.TextureId = "http://www.roblox.com/asset/?id="..TEXTUREID
  259. end
  260. end
  261. NEWMESH.Offset = OFFSET or VT(0, 0, 0)
  262. NEWMESH.Scale = SCALE
  263. NEWMESH.Parent = PARENT
  264. return NEWMESH
  265. end
  266.  
  267. function CreatePart(FORMFACTOR, PARENT, MATERIAL, REFLECTANCE, TRANSPARENCY, BRICKCOLOR, NAME, SIZE)
  268. local NEWPART = IT("Part")
  269. NEWPART.formFactor = FORMFACTOR
  270. NEWPART.Reflectance = REFLECTANCE
  271. NEWPART.Transparency = TRANSPARENCY
  272. NEWPART.CanCollide = false
  273. NEWPART.Locked = true
  274. NEWPART.BrickColor = BRICKC(tostring(BRICKCOLOR))
  275. NEWPART.Name = NAME
  276. NEWPART.Size = SIZE
  277. NEWPART.Position = Torso.Position
  278. NEWPART.Material = MATERIAL
  279. NEWPART:BreakJoints()
  280. NEWPART.Parent = PARENT
  281. return NEWPART
  282. end
  283.  
  284.  
  285. --//=================================\\
  286. --|| CUSTOMIZATION
  287. --\\=================================//
  288.  
  289. Class_Name = "Template"
  290. Weapon_Name = "Add-ons"
  291.  
  292. Custom_Colors = {
  293. Custom_Color_1 = BRICKC("Institutional white"); --1st color for the weapon.
  294. Custom_Color_2 = BRICKC("Institutional white"); --2nd color for the weapon.
  295.  
  296. Custom_Color_3 = BRICKC("Institutional white"); --Color for the abilities.
  297. Custom_Color_4 = BRICKC("Institutional white"); --Color for the secondary bar.
  298. Custom_Color_5 = BRICKC("Institutional white"); --Color for the mana bar.
  299. Custom_Color_6 = BRICKC("Institutional white"); --Color for the health bar.
  300. Custom_Color_7 = BRICKC("Institutional white"); --Color for the stun bar.
  301.  
  302. Custom_Color_8 = BRICKC("Institutional white"); --Background for the mana bar.
  303. Custom_Color_9 = BRICKC("Institutional white"); --Background for the secondary mana bar.
  304. Custom_Color_10 = BRICKC("Institutional white"); --Background for the stun bar.
  305. Custom_Color_11 = BRICKC("Institutional white"); --Background for the health bar.
  306. Custom_Color_12 = BRICKC("Institutional white"); --Background for the abilities.
  307. }
  308.  
  309.  
  310. Player_Size = 1 --Size of the player.
  311. Animation_Speed = 3
  312. Frame_Speed = 1 / 60 -- (1 / 30) OR (1 / 60)
  313.  
  314. local Speed = 16
  315. local Effects2 = {}
  316.  
  317. --//=================================\\
  318. --|| END OF CUSTOMIZATION
  319. --\\=================================//
  320.  
  321. local function weldBetween(a, b)
  322. local weldd = Instance.new("ManualWeld")
  323. weldd.Part0 = a
  324. weldd.Part1 = b
  325. weldd.C0 = CFrame.new()
  326. weldd.C1 = b.CFrame:inverse() * a.CFrame
  327. weldd.Parent = a
  328. return weldd
  329. end
  330.  
  331. function createaccessory(attachmentpart,mesh,texture,scale,offset,color)
  332. local acs = Instance.new("Part")
  333. acs.CanCollide = false
  334. acs.Anchored = false
  335. acs.Size = Vector3.new(0,0,0)
  336. acs.CFrame = attachmentpart.CFrame
  337. acs.Parent = Character
  338. acs.BrickColor = color
  339. local meshs = Instance.new("SpecialMesh")
  340. meshs.MeshId = mesh
  341. meshs.TextureId = texture
  342. meshs.Parent = acs
  343. meshs.Scale = scale
  344. meshs.Offset = offset
  345. weldBetween(attachmentpart,acs)
  346. end
  347.  
  348. function createbodypart(TYPE,COLOR,PART,OFFSET,SIZE)
  349. if TYPE == "Gem" then
  350. local acs = CreatePart(3, Character, "Plastic", 0, 0, COLOR, "Part", VT(0,0,0))
  351. acs.Anchored = false
  352. acs.CanCollide = false
  353. acs.CFrame = PART.CFrame
  354. local acs2 = CreateMesh("SpecialMesh", acs, "FileMesh", "9756362", "", SIZE, OFFSET)
  355. weldBetween(PART,acs)
  356. elseif TYPE == "Skull" then
  357. local acs = CreatePart(3, Character, "Plastic", 0, 0, COLOR, "Part", VT(0,0,0))
  358. acs.Anchored = false
  359. acs.CanCollide = false
  360. acs.CFrame = PART.CFrame
  361. local acs2 = CreateMesh("SpecialMesh", acs, "FileMesh", "4770583", "", SIZE, OFFSET)
  362. weldBetween(PART,acs)
  363. elseif TYPE == "Eye" then
  364. local acs = CreatePart(3, Character, "Neon", 0, 0, COLOR, "Part", VT(0,0,0))
  365. acs.Anchored = false
  366. acs.CanCollide = false
  367. acs.CFrame = PART.CFrame
  368. local acs2 = CreateMesh("SpecialMesh", acs, "Sphere", "", "", SIZE, OFFSET)
  369. weldBetween(PART,acs)
  370. end
  371. end
  372.  
  373. --//=================================\\
  374. --|| USEFUL VALUES
  375. --\\=================================//
  376.  
  377. local ROOTC0 = CF(0, 0, 0) * ANGLES(RAD(-90), RAD(0), RAD(180))
  378. local NECKC0 = CF(0, 1, 0) * ANGLES(RAD(-90), RAD(0), RAD(180))
  379. local RIGHTSHOULDERC0 = CF(-0.5, 0, 0) * ANGLES(RAD(0), RAD(90), RAD(0))
  380. local LEFTSHOULDERC0 = CF(0.5, 0, 0) * ANGLES(RAD(0), RAD(-90), RAD(0))
  381. local CO1 = 0
  382. local CO2 = 0
  383. local CO3 = 0
  384. local CO4 = 0
  385. local CHANGEDEFENSE = 0
  386. local CHANGEDAMAGE = 0
  387. local CHANGEMOVEMENT = 0
  388. local ANIM = "Idle"
  389. local ATTACK = false
  390. local EQUIPPED = false
  391. local HOLD = false
  392. local COMBO = 1
  393. local LASTPOINT = nil
  394. local BLCF = nil
  395. local SCFR = nil
  396. local STAGGERHITANIM = false
  397. local STAGGERANIM = false
  398. local STUNANIM = false
  399. local CRITCHANCENUMBER = 0
  400. local IDLENUMBER = 0
  401. local DONUMBER = 0
  402. local HANDIDLE = false
  403. local SINE = 0
  404. local CHANGE = 2 / Animation_Speed
  405. local WALKINGANIM = false
  406. local WALK = 0
  407. local DISABLEJUMPING = false
  408. local HASBEENBLOCKED = false
  409. local STUNDELAYNUMBER = 0
  410. local MANADELAYNUMBER = 0
  411. local SECONDARYMANADELAYNUMBER = 0
  412. local ROBLOXIDLEANIMATION = IT("Animation")
  413. ROBLOXIDLEANIMATION.Name = "Roblox Idle Animation"
  414. ROBLOXIDLEANIMATION.AnimationId = "http://www.roblox.com/asset/?id=180435571"
  415. --ROBLOXIDLEANIMATION.Parent = Humanoid
  416. local WEAPONGUI = IT("ScreenGui", nil)
  417. WEAPONGUI.Name = "Weapon GUI"
  418. local WEAPONTOOL = IT("HopperBin", nil)
  419. WEAPONTOOL.Name = Weapon_Name
  420. local Weapon = IT("Model")
  421. Weapon.Name = Weapon_Name
  422. local Effects = IT("Folder", Weapon)
  423. Effects.Name = "Effects"
  424. local ANIMATOR = Humanoid.Animator
  425. local ANIMATE = Character.Animate
  426. local HITPLAYERSOUNDS = {--[["199149137", "199149186", "199149221", "199149235", "199149269", "199149297"--]]"263032172", "263032182", "263032200", "263032221", "263032252", "263033191"}
  427. local HITARMORSOUNDS = {"199149321", "199149338", "199149367", "199149409", "199149452"}
  428. local HITWEAPONSOUNDS = {"199148971", "199149025", "199149072", "199149109", "199149119"}
  429. local HITBLOCKSOUNDS = {"199148933", "199148947"}
  430. local UNANCHOR = true
  431. local MAGICPARTICLE = "655109389"
  432.  
  433. --//=================================\\
  434. --\\=================================//
  435.  
  436.  
  437. --//=================================\\
  438. --|| DEBUFFS / BUFFS
  439. --\\=================================//
  440.  
  441. local DEFENSECHANGE1 = IT("NumberValue", ChangeStat)
  442. DEFENSECHANGE1.Name = "ChangeDefense"
  443. DEFENSECHANGE1.Value = 0
  444.  
  445. local MOVEMENTCHANGE1 = IT("NumberValue", nil)
  446. MOVEMENTCHANGE1.Name = "ChangeMovement"
  447. MOVEMENTCHANGE1.Value = 0
  448.  
  449. --//=================================\\
  450. --\\=================================//
  451.  
  452.  
  453.  
  454.  
  455.  
  456. --//=================================\\
  457. --|| SAZERENOS' ARTIFICIAL HEARTBEAT
  458. --\\=================================//
  459.  
  460. ArtificialHB = Instance.new("BindableEvent", script)
  461. ArtificialHB.Name = "ArtificialHB"
  462.  
  463. script:WaitForChild("ArtificialHB")
  464.  
  465. frame = Frame_Speed
  466. tf = 0
  467. allowframeloss = false
  468. tossremainder = false
  469. lastframe = tick()
  470. script.ArtificialHB:Fire()
  471.  
  472. game:GetService("RunService").Heartbeat:connect(function(s, p)
  473. tf = tf + s
  474. if tf >= frame then
  475. if allowframeloss then
  476. script.ArtificialHB:Fire()
  477. lastframe = tick()
  478. else
  479. for i = 1, math.floor(tf / frame) do
  480. script.ArtificialHB:Fire()
  481. end
  482. lastframe = tick()
  483. end
  484. if tossremainder then
  485. tf = 0
  486. else
  487. tf = tf - frame * math.floor(tf / frame)
  488. end
  489. end
  490. end)
  491.  
  492. --//=================================\\
  493. --\\=================================//
  494.  
  495.  
  496.  
  497.  
  498.  
  499. --//=================================\\
  500. --|| SOME FUNCTIONS
  501. --\\=================================//
  502.  
  503. function Raycast(POSITION, DIRECTION, RANGE, IGNOREDECENDANTS)
  504. return workspace:FindPartOnRay(Ray.new(POSITION, DIRECTION.unit * RANGE), IGNOREDECENDANTS)
  505. end
  506.  
  507. function PositiveAngle(NUMBER)
  508. if NUMBER >= 0 then
  509. NUMBER = 0
  510. end
  511. return NUMBER
  512. end
  513.  
  514. function NegativeAngle(NUMBER)
  515. if NUMBER <= 0 then
  516. NUMBER = 0
  517. end
  518. return NUMBER
  519. end
  520.  
  521. function Swait(NUMBER)
  522. if NUMBER == 0 or NUMBER == nil then
  523. ArtificialHB.Event:wait()
  524. else
  525. for i = 1, NUMBER do
  526. ArtificialHB.Event:wait()
  527. end
  528. end
  529. end
  530.  
  531. function CreateLabel(PARENT, TEXT, TEXTCOLOR, TEXTFONTSIZE, TEXTFONT, TRANSPARENCY, BORDERSIZEPIXEL, STROKETRANSPARENCY, NAME)
  532. local label = IT("TextLabel")
  533. label.BackgroundTransparency = 1
  534. label.Size = UD2(1, 0, 1, 0)
  535. label.Position = UD2(0, 0, 0, 0)
  536. label.TextColor3 = C3(255, 255, 255)
  537. label.TextStrokeTransparency = STROKETRANSPARENCY
  538. label.TextTransparency = TRANSPARENCY
  539. label.FontSize = TEXTFONTSIZE
  540. label.Font = TEXTFONT
  541. label.BorderSizePixel = BORDERSIZEPIXEL
  542. label.TextScaled = true
  543. label.Text = TEXT
  544. label.Name = NAME
  545. label.Parent = PARENT
  546. return label
  547. end
  548.  
  549. function NoOutlines(PART)
  550. PART.TopSurface, PART.BottomSurface, PART.LeftSurface, PART.RightSurface, PART.FrontSurface, PART.BackSurface = 10, 10, 10, 10, 10, 10
  551. end
  552.  
  553.  
  554. function CreateWeldOrSnapOrMotor(TYPE, PARENT, PART0, PART1, C0, C1)
  555. local NEWWELD = IT(TYPE)
  556. NEWWELD.Part0 = PART0
  557. NEWWELD.Part1 = PART1
  558. NEWWELD.C0 = C0
  559. NEWWELD.C1 = C1
  560. NEWWELD.Parent = PARENT
  561. return NEWWELD
  562. end
  563.  
  564. function CreateSound(ID, PARENT, VOLUME, PITCH)
  565. local NEWSOUND = nil
  566. coroutine.resume(coroutine.create(function()
  567. NEWSOUND = IT("Sound", PARENT)
  568. NEWSOUND.Volume = VOLUME
  569. NEWSOUND.Pitch = PITCH
  570. NEWSOUND.SoundId = "http://www.roblox.com/asset/?id="..ID
  571. Swait()
  572. NEWSOUND:play()
  573. game:GetService("Debris"):AddItem(NEWSOUND, 10)
  574. end))
  575. return NEWSOUND
  576. end
  577.  
  578. --//=================================\\
  579. --\\=================================//
  580.  
  581.  
  582. --//=================================\\
  583. --|| WEAPON CREATION
  584. --\\=================================//
  585.  
  586. if Player_Size ~= 1 then
  587. for _, v in pairs (Weapon:GetChildren()) do
  588. if v.ClassName == "Motor" or v.ClassName == "Weld" or v.ClassName == "Snap" then
  589. local p1 = v.Part1
  590. v.Part1 = nil
  591. local cf1, cf2, cf3, cf4, cf5, cf6, cf7, cf8, cf9, cf10, cf11, cf12 = v.C1:components()
  592. v.C1 = CF(cf1 * Player_Size, cf2 * Player_Size, cf3 * Player_Size, cf4, cf5, cf6, cf7, cf8, cf9, cf10, cf11, cf12)
  593. v.Part1 = p1
  594. elseif v.ClassName == "Part" then
  595. for _, b in pairs (v:GetChildren()) do
  596. if b.ClassName == "SpecialMesh" or b.ClassName == "BlockMesh" then
  597. b.Scale = VT(b.Scale.x * Player_Size, b.Scale.y * Player_Size, b.Scale.z * Player_Size)
  598. end
  599. end
  600. end
  601. end
  602. end
  603.  
  604. for _, c in pairs(Weapon:GetChildren()) do
  605. if c.ClassName == "Part" then
  606. c.CustomPhysicalProperties = PhysicalProperties.new(0, 0, 0, 0, 0)
  607. end
  608. end
  609.  
  610. Weapon.Parent = Character
  611.  
  612. Humanoid.Died:connect(function()
  613. ATTACK = true
  614. end)
  615.  
  616. print(Class_Name.." loaded.")
  617.  
  618. --//=================================\\
  619. --\\=================================//
  620.  
  621.  
  622. local backpack = IT("Part",Weapon)
  623. backpack.Size = VT(0.15,0.15,0.15)
  624. local mesh = IT("SpecialMesh",backpack)
  625. mesh.MeshId = "rbxassetid://84313478"
  626. mesh.TextureId = "http://www.roblox.com/asset/?id=84313638"
  627. backpack.CFrame = Torso.CFrame * CF(0,0.2,1)
  628. backpack.BrickColor = BRICKC("Black")
  629. weldBetween(Torso,backpack)
  630.  
  631. local hose = IT("Part",Weapon)
  632. hose.Size = VT(0.15,0.15,0.15)
  633. local mesh = IT("SpecialMesh",hose)
  634. mesh.MeshId = "http://www.roblox.com/asset/?id=84313555"
  635. mesh.TextureId = "http://www.roblox.com/asset/?id=84313638"
  636. mesh.Scale = VT(2,2,2)
  637. mesh.Offset = VT(0, -0.4, -0.7)
  638. hose.CFrame = Torso.CFrame * CF(1.5,0.5,0.2) * ANGLES(RAD(90),RAD(35),RAD(180))
  639. hose.BrickColor = BRICKC("Black")
  640. weldBetween(Torso,hose)
  641.  
  642. local succ = IT("Part",Weapon)
  643. succ.Size = VT(2,2,2)
  644. succ.CanCollide = false
  645. succ.CFrame = Torso.CFrame * CF(1.5,1.3,-4) * ANGLES(RAD(90),RAD(0),RAD(180))
  646. succ.Transparency = 1
  647. succ.BrickColor = BRICKC("Black")
  648. weldBetween(Torso,succ)
  649.  
  650. for _, c in pairs(Weapon:GetChildren()) do
  651. if c.ClassName == "Part" then
  652. c.CustomPhysicalProperties = PhysicalProperties.new(0, 0, 0, 0, 0)
  653. end
  654. end
  655.  
  656. local EyeSizes={
  657. NumberSequenceKeypoint.new(0,0.5,0),
  658. NumberSequenceKeypoint.new(1,0.2,0)
  659. }
  660. local EyeTrans={
  661. NumberSequenceKeypoint.new(0,0,0),
  662. NumberSequenceKeypoint.new(1,1,0)
  663. }
  664. local PE=Instance.new("ParticleEmitter")
  665. PE.LightEmission=0.3
  666. PE.Size=NumberSequence.new(EyeSizes)
  667. PE.Transparency=NumberSequence.new(EyeTrans)
  668. PE.Rotation=NumberRange.new(0,360)
  669. PE.LockedToPart = false
  670. PE.Speed = NumberRange.new(0,0,0)
  671. PE.ZOffset = 0.3
  672. PE.Rate = 999
  673. PE.VelocitySpread = 25
  674. PE.Name = "Particles"
  675.  
  676. function CreateParticles(art,accel,drag,lifetime,type,isenabledbydefault,locked,size,speed)
  677. local particle = nil
  678. coroutine.resume(coroutine.create(function(PART)
  679. particle = PE:Clone()
  680. Swait()
  681. particle.Rate = 999
  682. particle.Parent = art
  683. particle.Acceleration = accel
  684. if type == "Fire" then
  685. local EyeSizes={
  686. NumberSequenceKeypoint.new(0,size,size/2),
  687. NumberSequenceKeypoint.new(1,size/4,size/8)
  688. }
  689. particle.Size = NumberSequence.new(EyeSizes)
  690. elseif type == "Smoke" then
  691. local EyeSizes={
  692. NumberSequenceKeypoint.new(0,size/5,0),
  693. NumberSequenceKeypoint.new(1,size*2,0.5)
  694. }
  695. particle.Size = NumberSequence.new(EyeSizes)
  696. elseif type == "Solid" then
  697. local EyeSizes={
  698. NumberSequenceKeypoint.new(0,size,0),
  699. NumberSequenceKeypoint.new(1,size,0)
  700. }
  701. particle.Size = NumberSequence.new(EyeSizes)
  702. end
  703. particle.Lifetime=NumberRange.new(lifetime)
  704. particle.Drag = drag
  705. if locked == true then
  706. particle.LockedToPart = true
  707. end
  708. particle.Speed = NumberRange.new(speed*0.8,speed)
  709. particle.Texture = "http://www.roblox.com/asset/?id=1179557490"
  710. particle.Enabled = isenabledbydefault
  711. particle.Color = ColorSequence.new(Color3.new(255/255, 176/255, 0))
  712. end))
  713. return particle
  714. end
  715.  
  716. local poop = CreateParticles(succ,VT(0,0,0),5,2,"Smoke",false,false,5,35)
  717. local poop2 = CreateParticles(succ,VT(0,0,0),5,1,"Smoke",false,false,2,15)
  718.  
  719. --//=================================\\
  720. --|| DAMAGING
  721. --\\=================================//
  722.  
  723. function succnearest(position,range)
  724. for i,v in ipairs(workspace:GetChildren()) do
  725. local body = v:GetChildren()
  726. for part = 1, #body do
  727. if((body[part].ClassName == "Part" or body[part].ClassName == "MeshPart") and v ~= Character) then
  728. if(body[part].Position - position).Magnitude < range then
  729. local bv = Instance.new("BodyVelocity")
  730. bv.maxForce = Vector3.new(1e9, 1e9, 1e9)
  731. bv.velocity = CF(body[part].Position,succ.Position).lookVector*80
  732. bv.Parent = body[part]
  733. bv.Name = "SUCC"
  734. game:GetService("Debris"):AddItem(bv, 0.1)
  735. end
  736. end
  737. end
  738. if v.ClassName == "Part" then
  739. if v.Anchored == false and (v.Position - position).Magnitude < range then
  740. local bv = Instance.new("BodyVelocity")
  741. bv.maxForce = Vector3.new(1e9, 1e9, 1e9)
  742. bv.velocity = CF(v.Position,succ.Position).lookVector*80
  743. bv.Parent = v
  744. bv.Name = "SUCC"
  745. game:GetService("Debris"):AddItem(bv, 0.1)
  746. end
  747. end
  748. end
  749. end
  750.  
  751. function cover(position,range)
  752. for i,v in ipairs(workspace:GetChildren()) do
  753. local body = v:GetChildren()
  754. for part = 1, #body do
  755. if((body[part].ClassName == "Part" or body[part].ClassName == "MeshPart") and v ~= Character) then
  756. if(body[part].Position - position).Magnitude < range then
  757. CreateParticles(body[part],VT(0,-2,0),5,1,"Smoke",true,false,0.3,0)
  758. if v:FindFirstChild("Humanoid") then
  759. v.Humanoid.PlatformStand = true
  760. end
  761. end
  762. end
  763. end
  764. if v.ClassName == "Part" then
  765. if v.Anchored == false and (v.Position - position).Magnitude < range then
  766. CreateParticles(v,VT(0,-2,0),5,1,"Smoke",true,false,0.3,0)
  767. end
  768. end
  769. end
  770. end
  771.  
  772. function cough()
  773. CreateSound("328460122", succ, 3, 1)
  774. poop.VelocitySpread = 25
  775. poop:Emit(150)
  776. cover(CF(succ.Position)*CF(0,0,-1).p,15)
  777. end
  778.  
  779. --//=================================\\
  780. --|| ATTACK FUNCTIONS AND STUFF
  781. --\\=================================//
  782.  
  783. function CheckTableForString(Table, String)
  784. for i, v in pairs(Table) do
  785. if string.find(string.lower(String), string.lower(v)) then
  786. return true
  787. end
  788. end
  789. return false
  790. end
  791.  
  792. function CheckIntangible(Hit)
  793. local ProjectileNames = {"Water", "Arrow", "Projectile", "Effect", "Rail", "Lightning", "Bullet"}
  794. if Hit and Hit.Parent then
  795. if ((not Hit.CanCollide or CheckTableForString(ProjectileNames, Hit.Name)) and not Hit.Parent:FindFirstChild("Humanoid")) then
  796. return true
  797. end
  798. end
  799. return false
  800. end
  801.  
  802. Debris = game:GetService("Debris")
  803.  
  804. function CastRay(StartPos, Vec, Length, Ignore, DelayIfHit)
  805. local Direction = CFrame.new(StartPos, Vec).lookVector
  806. local Ignore = ((type(Ignore) == "table" and Ignore) or {Ignore})
  807. local RayHit, RayPos, RayNormal = game:GetService("Workspace"):FindPartOnRayWithIgnoreList(Ray.new(StartPos, Direction * Length), Ignore)
  808. if RayHit and CheckIntangible(RayHit) then
  809. if DelayIfHit then
  810. wait()
  811. end
  812. RayHit, RayPos, RayNormal = CastRay((RayPos + (Vec * 0.01)), Vec, (Length - ((StartPos - RayPos).magnitude)), Ignore, DelayIfHit)
  813. end
  814. return RayHit, RayPos, RayNormal
  815. end
  816.  
  817. function turnto(pos,part)
  818. part.CFrame = CF(part.Position,VT(pos.X,RootPart.Position.Y,pos.Z))
  819. end
  820.  
  821. function vacuum()
  822. sick:Play()
  823. local nado = IT("Part")
  824. local mesh = IT("SpecialMesh",nado)
  825. mesh.MeshId = "http://www.roblox.com/asset/?id=102638417"
  826. nado.Transparency = 0.5
  827. nado.CanCollide = false
  828. nado.Anchored = true
  829. local loop = 0
  830. succing = {}
  831. local harm = succ.Touched:Connect(function(hit)
  832. if hit.Anchored == false then
  833. hit:remove()
  834. CreateSound("261732529", succ, 3, 1)
  835. poop2:Emit(1)
  836. end
  837. end)
  838. repeat
  839. Swait()
  840. loop = loop + 75
  841. nado.Parent = Effects
  842. local RayHit,RayPos = CastRay(succ.Position, Mouse.Hit.p, 1000, Character, false)
  843. local distance = (succ.Position - RayPos).magnitude
  844. mesh.Scale = VT(distance/12,distance/3.2,distance/12)
  845. nado.CFrame = CFrame.new(succ.Position, RayPos) * CFrame.new(0, 0, -distance/2) * ANGLES(RAD(-90),RAD(loop),RAD(0))
  846. turnto(Mouse.Hit.p,RootPart)
  847. succnearest(RayPos,distance/2.5)
  848. if RayHit ~= nil then
  849. if RayHit.Anchored == false then
  850. local bv = Instance.new("BodyVelocity")
  851. bv.maxForce = Vector3.new(1e9, 1e9, 1e9)
  852. bv.velocity = CF(RayHit.Position,succ.Position).lookVector*80
  853. bv.Parent = RayHit
  854. bv.Name = "SUCC"
  855. game:GetService("Debris"):AddItem(bv, 0.1)
  856. end
  857. end
  858. local TotalSuccs = math.ceil(distance / 65)
  859. local Direction = CFrame.new(RayPos, succ.Position).lookVector
  860. for i = 1, TotalSuccs do
  861. local NewPos = (RayPos + (Direction * (distance * (i / TotalSuccs))))
  862. succnearest(NewPos,distance/(i*2.5))
  863. end
  864. until HOLD == false
  865. if #succing>0 then
  866. for e=1,#succing do
  867. if succing[e]~=nil then
  868. local Thing=succing[e]
  869. Thing:remove()
  870. table.remove(succing,e)
  871. end
  872. end
  873. end
  874. succing = {}
  875. harm:disconnect()
  876. nado:remove()
  877. sick:Stop()
  878. end
  879.  
  880. --//=================================\\
  881. --|| ASSIGN THINGS TO KEYS
  882. --\\=================================//
  883.  
  884. Humanoid.Changed:connect(function(Jump)
  885. if Jump == "Jump" and (Disable_Jump == true or DISABLEJUMPING == true) then
  886. Humanoid.Jump = false
  887. end
  888. end)
  889.  
  890. function MouseDown(Mouse)
  891. HOLD = true
  892. vacuum()
  893. end
  894.  
  895. function MouseUp(Mouse)
  896. HOLD = false
  897. end
  898.  
  899. function KeyDown(Key)
  900. if Key == "t" and ATTACK == false then
  901. CreateSound("743953262", Head, 3, 1)
  902. end
  903. if Key == "e" and ATTACK == false then
  904. cough()
  905. end
  906. end
  907.  
  908. function KeyUp(Key)
  909. end
  910.  
  911. Mouse.Button1Down:connect(function(NEWKEY)
  912. MouseDown(NEWKEY)
  913. end)
  914. Mouse.Button1Up:connect(function(NEWKEY)
  915. MouseUp(NEWKEY)
  916. end)
  917. Mouse.KeyDown:connect(function(NEWKEY)
  918. KeyDown(NEWKEY)
  919. end)
  920. Mouse.KeyUp:connect(function(NEWKEY)
  921. KeyUp(NEWKEY)
  922. end)
  923.  
  924. --//=================================\\
  925. --\\=================================//
  926.  
  927.  
  928. function unanchor()
  929. if UNANCHOR == true then
  930. g = Character:GetChildren()
  931. for i = 1, #g do
  932. if g[i].ClassName == "Part" then
  933. g[i].Anchored = false
  934. end
  935. end
  936. end
  937. end
  938.  
  939.  
  940. --//=================================\\
  941. --|| WRAP THE WHOLE SCRIPT UP
  942. --\\=================================//
  943.  
  944. Humanoid.Changed:connect(function(Jump)
  945. if Jump == "Jump" and (Disable_Jump == true or DISABLEJUMPING == true) then
  946. Humanoid.Jump = false
  947. end
  948. end)
  949.  
  950. while true do
  951. Swait()
  952. if #Effects2>0 then
  953. for e=1,#Effects2 do
  954. if Effects2[e]~=nil then
  955. local Thing=Effects2[e]
  956. if Thing~=nil then
  957. local Part=Thing[1]
  958. local Mode=Thing[2]
  959. local Delay=Thing[3]
  960. local IncX=Thing[4]
  961. local IncY=Thing[5]
  962. local IncZ=Thing[6]
  963. local Part2=Thing[8]
  964. if Thing[1].Transparency<=1 then
  965. if Thing[2]=="Block1" then
  966. Thing[1].CFrame=Thing[1].CFrame
  967. Mesh=Thing[1].Mesh
  968. Mesh.Scale=Mesh.Scale+VT(Thing[4],Thing[5],Thing[6])
  969. Thing[1].Transparency=Thing[1].Transparency+Thing[3]
  970. elseif Thing[2]=="Cylinder" then
  971. Mesh=Thing[1].Mesh
  972. Mesh.Scale=Mesh.Scale+VT(Thing[4],Thing[5],Thing[6])
  973. Thing[1].Transparency=Thing[1].Transparency+Thing[3]
  974. elseif Thing[2]=="Blood" then
  975. Mesh=Thing[7]
  976. Thing[1].CFrame=Thing[1].CFrame*CF(0,.5,0)
  977. Mesh.Scale=Mesh.Scale+VT(Thing[4],Thing[5],Thing[6])
  978. Thing[1].Transparency=Thing[1].Transparency+Thing[3]
  979. elseif Thing[2]=="Elec" then
  980. Mesh=Thing[1].Mesh
  981. Mesh.Scale=Mesh.Scale+VT(Thing[7],Thing[8],Thing[9])
  982. Thing[1].Transparency=Thing[1].Transparency+Thing[3]
  983. elseif Thing[2]=="Disappear" then
  984. Thing[1].Transparency=Thing[1].Transparency+Thing[3]
  985. end
  986. else
  987. Part.Parent=nil
  988. table.remove(Effects2,e)
  989. end
  990. end
  991. end
  992. end
  993. end
  994. unanchor()
  995. Humanoid.MaxHealth = "inf"
  996. Humanoid.Health = "inf"
  997. if Rooted == false then
  998. Disable_Jump = false
  999. Humanoid.WalkSpeed = Speed
  1000. elseif Rooted == true then
  1001. Disable_Jump = true
  1002. Humanoid.WalkSpeed = 0
  1003. end
  1004. if sick == nil then
  1005. sick = Instance.new("Sound",Torso)
  1006. sick.SoundId = "rbxassetid://319444224"
  1007. sick.Looped = true
  1008. sick.Pitch = 1
  1009. sick.Volume = 1
  1010. end
  1011. if #succing>0 then
  1012. for e=1,#succing do
  1013. if succing[e]~=nil then
  1014. local Thing=succing[e]
  1015. Thing.velocity = CF(Thing.Parent.Position,succ.Position).lookVector*80
  1016. if HOLD == false then
  1017. Thing.velocity = CF(Thing.Parent.Position,succ.Position).lookVector*0
  1018. Thing:remove()
  1019. table.remove(succing,e)
  1020. end
  1021. end
  1022. end
  1023. end
  1024. end
  1025.  
  1026. --//=================================\\
  1027. --\\=================================//
  1028.  
  1029.  
  1030.  
  1031.  
  1032.  
  1033. --//====================================================\\--
  1034. --|| END OF SCRIPT
  1035. --\\====================================================//--
  1036. --made by dionspion009 u stupid bazniggers.
  1037. warn("made by dionspion009 kthxbai.")
  1038.  
  1039. function sandbox(var,func)
  1040. local env = getfenv(func)
  1041. local newenv = setmetatable({},{
  1042. __index = function(self,k)
  1043. if k=="script" then
  1044. return var
  1045. else
  1046. return env[k]
  1047. end
  1048. end,
  1049. })
  1050. setfenv(func,newenv)
  1051. return func
  1052. end
  1053. cors = {}
  1054. mas = Instance.new("Model",game:GetService("Lighting"))
  1055. Model0 = Instance.new("Model")
  1056. Part1 = Instance.new("Part")
  1057. Decal2 = Instance.new("Decal")
  1058. Part3 = Instance.new("Part")
  1059. Decal4 = Instance.new("Decal")
  1060. Part5 = Instance.new("Part")
  1061. SurfaceGui6 = Instance.new("SurfaceGui")
  1062. TextLabel7 = Instance.new("TextLabel")
  1063. Part8 = Instance.new("Part")
  1064. Decal9 = Instance.new("Decal")
  1065. Script10 = Instance.new("Script")
  1066. Sound11 = Instance.new("Sound")
  1067. Part12 = Instance.new("Part")
  1068. Decal13 = Instance.new("Decal")
  1069. Part14 = Instance.new("Part")
  1070. Decal15 = Instance.new("Decal")
  1071. Part16 = Instance.new("Part")
  1072. Decal17 = Instance.new("Decal")
  1073. Part18 = Instance.new("Part")
  1074. Decal19 = Instance.new("Decal")
  1075. Part20 = Instance.new("Part")
  1076. Decal21 = Instance.new("Decal")
  1077. Part22 = Instance.new("Part")
  1078. Decal23 = Instance.new("Decal")
  1079. Part24 = Instance.new("Part")
  1080. Decal25 = Instance.new("Decal")
  1081. Part26 = Instance.new("Part")
  1082. Decal27 = Instance.new("Decal")
  1083. Part28 = Instance.new("Part")
  1084. Decal29 = Instance.new("Decal")
  1085. Part30 = Instance.new("Part")
  1086. Decal31 = Instance.new("Decal")
  1087. Part32 = Instance.new("Part")
  1088. Decal33 = Instance.new("Decal")
  1089. Part34 = Instance.new("Part")
  1090. Decal35 = Instance.new("Decal")
  1091. Part36 = Instance.new("Part")
  1092. Decal37 = Instance.new("Decal")
  1093. Part38 = Instance.new("Part")
  1094. Decal39 = Instance.new("Decal")
  1095. Part40 = Instance.new("Part")
  1096. Decal41 = Instance.new("Decal")
  1097. Part42 = Instance.new("Part")
  1098. Decal43 = Instance.new("Decal")
  1099. Part44 = Instance.new("Part")
  1100. Decal45 = Instance.new("Decal")
  1101. Part46 = Instance.new("Part")
  1102. Decal47 = Instance.new("Decal")
  1103. Sound48 = Instance.new("Sound")
  1104. Part49 = Instance.new("Part")
  1105. Decal50 = Instance.new("Decal")
  1106. Sound51 = Instance.new("Sound")
  1107. Sound52 = Instance.new("Sound")
  1108. Sound53 = Instance.new("Sound")
  1109. Sound54 = Instance.new("Sound")
  1110. Sound55 = Instance.new("Sound")
  1111. Sound56 = Instance.new("Sound")
  1112. Sound57 = Instance.new("Sound")
  1113. Sound58 = Instance.new("Sound")
  1114. Sound59 = Instance.new("Sound")
  1115. Sound60 = Instance.new("Sound")
  1116. Model0.Name = "Laptop"
  1117. Model0.Parent = mas
  1118. Part1.Name = "BottomPart"
  1119. Part1.Parent = Model0
  1120. Part1.BrickColor = BrickColor.new("Really black")
  1121. Part1.Rotation = Vector3.new(-180, 0, -180)
  1122. Part1.Anchored = true
  1123. Part1.Size = Vector3.new(39.8299942, 1, 30.2399921)
  1124. Part1.CFrame = CFrame.new(-6.19735622, 0.590774, -10.9456778, -1, 0, -4.98436884e-06, 0, 1, 0, 4.98436884e-06, 0, -1)
  1125. Part1.BottomSurface = Enum.SurfaceType.Smooth
  1126. Part1.TopSurface = Enum.SurfaceType.Smooth
  1127. Part1.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1128. Part1.Position = Vector3.new(-6.19735622, 0.590774, -10.9456778)
  1129. Part1.Orientation = Vector3.new(0, -180, 0)
  1130. Part1.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1131. Decal2.Parent = Part1
  1132. Decal2.Texture = "http://www.roblox.com/asset/?id=617255685"
  1133. Decal2.Face = Enum.NormalId.Top
  1134. Part3.Name = "Screen2"
  1135. Part3.Parent = Model0
  1136. Part3.BrickColor = BrickColor.new("Really black")
  1137. Part3.Transparency = 1
  1138. Part3.Rotation = Vector3.new(90, 0, 0)
  1139. Part3.Anchored = true
  1140. Part3.Size = Vector3.new(38.4500122, 0.130000025, 25.3100014)
  1141. Part3.CFrame = CFrame.new(-6.2075181, 15.0144901, -25.9560966, 1.00000024, 1.49936e-06, -6.36279583e-06, -6.34044409e-06, -1.64560261e-05, -1.00000024, -1.4994647e-06, 1, -1.64560206e-05)
  1142. Part3.BottomSurface = Enum.SurfaceType.Smooth
  1143. Part3.TopSurface = Enum.SurfaceType.Smooth
  1144. Part3.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1145. Part3.Position = Vector3.new(-6.2075181, 15.0144901, -25.9560966)
  1146. Part3.Orientation = Vector3.new(90, 0, 0)
  1147. Part3.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1148. Decal4.Parent = Part3
  1149. Decal4.Transparency = 1
  1150. Decal4.Texture = "rbxassetid://202749681"
  1151. Decal4.Face = Enum.NormalId.Top
  1152. Part5.Name = "TopPart"
  1153. Part5.Parent = Model0
  1154. Part5.BrickColor = BrickColor.new("Really black")
  1155. Part5.Rotation = Vector3.new(90, 0, 0)
  1156. Part5.Anchored = true
  1157. Part5.Size = Vector3.new(39.8499985, 1, 28.319994)
  1158. Part5.CFrame = CFrame.new(-6.19078684, 14.1600399, -26.5191669, 1, 0, 0, 0, -8.16583633e-06, -1.00000203, 0, 1.0000006, 2.5331974e-07)
  1159. Part5.BottomSurface = Enum.SurfaceType.Smooth
  1160. Part5.TopSurface = Enum.SurfaceType.Smooth
  1161. Part5.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1162. Part5.Position = Vector3.new(-6.19078684, 14.1600399, -26.5191669)
  1163. Part5.Orientation = Vector3.new(90, 0, 0)
  1164. Part5.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1165. SurfaceGui6.Parent = Part5
  1166. SurfaceGui6.Face = Enum.NormalId.Top
  1167. TextLabel7.Parent = SurfaceGui6
  1168. TextLabel7.Transparency = 1
  1169. TextLabel7.Rotation = 90
  1170. TextLabel7.Size = UDim2.new(0, 550, 0, 700)
  1171. TextLabel7.Text = "You"
  1172. TextLabel7.Position = UDim2.new(0, 145, 0, -50)
  1173. TextLabel7.BackgroundColor3 = Color3.new(1, 1, 1)
  1174. TextLabel7.BackgroundTransparency = 1
  1175. TextLabel7.Font = Enum.Font.SourceSans
  1176. TextLabel7.FontSize = Enum.FontSize.Size14
  1177. TextLabel7.TextColor3 = Color3.new(1, 1, 1)
  1178. TextLabel7.TextScaled = true
  1179. TextLabel7.TextTransparency = 1
  1180. TextLabel7.TextWrapped = true
  1181. Part8.Name = "Screen"
  1182. Part8.Parent = Model0
  1183. Part8.BrickColor = BrickColor.new("Really black")
  1184. Part8.Transparency = 1
  1185. Part8.Rotation = Vector3.new(-90, 0, -180)
  1186. Part8.Anchored = true
  1187. Part8.Size = Vector3.new(38.4500122, 0.130000025, 25.3100014)
  1188. Part8.CFrame = CFrame.new(-6.20734978, 15.0583382, -26.0156708, -1, 1.46463867e-06, 1.57952309e-06, 1.57952309e-06, -1.64890207e-05, 1, 1.46466289e-06, 1, 1.64890334e-05)
  1189. Part8.BottomSurface = Enum.SurfaceType.Smooth
  1190. Part8.TopSurface = Enum.SurfaceType.Smooth
  1191. Part8.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1192. Part8.Position = Vector3.new(-6.20734978, 15.0583382, -26.0156708)
  1193. Part8.Orientation = Vector3.new(-90, -180, 0)
  1194. Part8.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1195. Decal9.Parent = Part8
  1196. Decal9.Transparency = 1
  1197. Decal9.Texture = "rbxassetid://202749681"
  1198. Decal9.Face = Enum.NormalId.Top
  1199. Script10.Parent = Model0
  1200. table.insert(cors,sandbox(Script10,function()
  1201. text = game.Workspace.Laptop.TopPart.SurfaceGui.TextLabel
  1202. scroon = game.Workspace.Laptop.Screen.Decal
  1203. scroon2 = game.Workspace.Laptop.Screen2.Decal
  1204. scroon3 = game.Workspace.Laptop.Screen3.Decal
  1205. scroon4 = game.Workspace.Laptop.Screen4.Decal
  1206. scroon5 = game.Workspace.Laptop.Screen5.Decal
  1207. scroon6 = game.Workspace.Laptop.Screen6.Decal
  1208. shutdown = game.Workspace.Laptop.Shutdownscreen.Decal
  1209. game.Workspace.Laptop.Chilled:Play()
  1210. game.Workspace.Laptop.Screen.Decal.Transparency = 0.9
  1211. wait()
  1212. game.Workspace.Laptop.Screen.Decal.Transparency = 0.8
  1213. wait()
  1214. game.Workspace.Laptop.Screen.Decal.Transparency = 0.7
  1215. wait()
  1216. game.Workspace.Laptop.Screen.Decal.Transparency = 0.6
  1217. wait()
  1218. game.Workspace.Laptop.Screen.Decal.Transparency = 0.5
  1219. wait()
  1220. game.Workspace.Laptop.Screen.Decal.Transparency = 0.4
  1221. wait()
  1222. game.Workspace.Laptop.Screen.Decal.Transparency = 0.3
  1223. wait()
  1224. game.Workspace.Laptop.Screen.Decal.Transparency = 0.2
  1225. wait()
  1226. game.Workspace.Laptop.Screen.Decal.Transparency = 0.1
  1227. wait()
  1228. game.Workspace.Laptop.Screen.Decal.Transparency = 0
  1229. wait(3.6)
  1230. scroon.Transparency = 1
  1231. scroon2.Transparency = 0
  1232. wait(0.1)
  1233. scroon.Transparency = 0
  1234. scroon2.Transparency = 1
  1235. wait(0.1)
  1236. scroon.Transparency = 1
  1237. scroon2.Transparency = 0
  1238. wait(0.1)
  1239. scroon.Transparency = 0
  1240. scroon2.Transparency = 1
  1241. wait(0.1)
  1242. scroon.Transparency = 1
  1243. scroon2.Transparency = 0
  1244. wait(0.1)
  1245. scroon.Transparency = 0
  1246. scroon2.Transparency = 1
  1247. wait(0.1)
  1248. scroon.Transparency = 1
  1249. scroon2.Transparency = 0
  1250. wait(0.1)
  1251. scroon.Transparency = 0
  1252. scroon2.Transparency = 1
  1253. wait(0.1)
  1254. scroon.Transparency = 1
  1255. scroon2.Transparency = 0
  1256. wait(0.1)
  1257. scroon.Transparency = 0
  1258. scroon2.Transparency = 1
  1259. wait(0.1)
  1260. scroon.Transparency = 1
  1261. scroon2.Transparency = 0
  1262. wait(0.1)
  1263. scroon.Transparency = 0
  1264. scroon2.Transparency = 1
  1265. wait(0.1)
  1266. scroon.Transparency = 1
  1267. scroon2.Transparency = 0
  1268. wait(0.1)
  1269. scroon.Transparency = 0
  1270. scroon2.Transparency = 1
  1271. wait(0.1)
  1272. scroon.Transparency = 1
  1273. scroon2.Transparency = 0
  1274. wait(0.1)
  1275. scroon.Transparency = 0
  1276. scroon2.Transparency = 1
  1277. wait(0.1)
  1278. scroon.Transparency = 1
  1279. scroon2.Transparency = 0
  1280. wait(0.1)
  1281. scroon.Transparency = 0
  1282. scroon2.Transparency = 1
  1283. wait(0.1)
  1284. scroon.Transparency = 1
  1285. scroon2.Transparency = 0
  1286. wait(0.1)
  1287. scroon.Transparency = 0
  1288. scroon2.Transparency = 1
  1289. wait(0.1)
  1290. scroon.Transparency = 1
  1291. scroon2.Transparency = 0
  1292. wait(0.1)
  1293. scroon.Transparency = 0
  1294. scroon2.Transparency = 1
  1295. wait(0.1)
  1296. scroon.Transparency = 1
  1297. scroon2.Transparency = 0
  1298. wait(0.1)
  1299. scroon.Transparency = 0
  1300. scroon2.Transparency = 1
  1301. wait(0.1)
  1302. scroon.Transparency = 1
  1303. scroon2.Transparency = 0
  1304. wait(0.1)
  1305. scroon.Transparency = 0
  1306. scroon2.Transparency = 1
  1307. wait(0.1)
  1308. scroon.Transparency = 1
  1309. scroon2.Transparency = 0
  1310. wait(0.1)
  1311. scroon.Transparency = 0
  1312. scroon2.Transparency = 1
  1313. wait(0.1)
  1314. scroon.Transparency = 1
  1315. scroon2.Transparency = 0
  1316. wait(0.1)
  1317. scroon.Transparency = 0
  1318. scroon2.Transparency = 1
  1319. wait(0.1)
  1320. scroon.Transparency = 1
  1321. scroon2.Transparency = 0
  1322. wait(0.1)
  1323. scroon.Transparency = 0
  1324. scroon2.Transparency = 1
  1325. wait(0.1)
  1326. scroon.Transparency = 1
  1327. scroon2.Transparency = 0
  1328. wait(0.1)
  1329. scroon.Transparency = 0
  1330. scroon2.Transparency = 1
  1331. wait(0.1)
  1332. scroon.Transparency = 1
  1333. scroon2.Transparency = 0
  1334. wait(0.1)
  1335. scroon.Transparency = 0
  1336. scroon2.Transparency = 1
  1337. wait(0.1)
  1338. scroon.Transparency = 1
  1339. scroon2.Transparency = 0
  1340. wait(0.1)
  1341. scroon.Transparency = 0
  1342. scroon2.Transparency = 1
  1343. wait(0.1)
  1344. scroon.Transparency = 1
  1345. scroon2.Transparency = 0
  1346. wait(0.1)
  1347. scroon.Transparency = 0
  1348. scroon2.Transparency = 1
  1349. wait(0.1)
  1350. scroon.Transparency = 1
  1351. scroon2.Transparency = 0
  1352. wait(0.1)
  1353. scroon.Transparency = 0
  1354. scroon2.Transparency = 1
  1355. wait(0.1)
  1356. scroon.Transparency = 1
  1357. scroon2.Transparency = 0
  1358. wait(0.1)
  1359. scroon.Transparency = 0
  1360. scroon2.Transparency = 1
  1361. wait(0.1)
  1362. scroon.Transparency = 1
  1363. scroon2.Transparency = 0
  1364. wait(0.1)
  1365. scroon.Transparency = 0
  1366. scroon2.Transparency = 1
  1367. wait(0.1)
  1368. scroon.Transparency = 1
  1369. scroon2.Transparency = 0
  1370. wait(0.1)
  1371. scroon.Transparency = 0
  1372. scroon2.Transparency = 1
  1373. wait(0.1)
  1374. scroon.Transparency = 1
  1375. scroon2.Transparency = 0
  1376. wait(0.1)
  1377. scroon.Transparency = 0
  1378. scroon2.Transparency = 1
  1379. wait(0.1)
  1380. scroon.Transparency = 1
  1381. scroon2.Transparency = 0
  1382. wait(0.1)
  1383. scroon.Transparency = 0
  1384. scroon2.Transparency = 1
  1385. wait(0.1)
  1386. scroon.Transparency = 1
  1387. scroon2.Transparency = 0
  1388. wait(0.1)
  1389. scroon.Transparency = 0
  1390. scroon2.Transparency = 1
  1391. wait(0.1)
  1392. scroon.Transparency = 1
  1393. scroon2.Transparency = 0
  1394. wait(0.1)
  1395. scroon.Transparency = 0
  1396. scroon2.Transparency = 1
  1397. wait(0.1)
  1398. scroon.Transparency = 1
  1399. scroon2.Transparency = 0
  1400. wait(0.1)
  1401. scroon.Transparency = 0
  1402. scroon2.Transparency = 1
  1403. wait(0.1)
  1404. scroon.Transparency = 1
  1405. scroon2.Transparency = 0
  1406. wait(0.1)
  1407. scroon.Transparency = 0
  1408. scroon2.Transparency = 1
  1409. wait(0.1)
  1410. scroon.Transparency = 1
  1411. scroon2.Transparency = 0
  1412. wait(0.1)
  1413. scroon.Transparency = 0
  1414. scroon2.Transparency = 1
  1415. wait(0.1)
  1416. scroon.Transparency = 1
  1417. scroon2.Transparency = 0
  1418. wait(0.1)
  1419. scroon.Transparency = 0
  1420. scroon2.Transparency = 1
  1421. wait(0.1)
  1422. scroon.Transparency = 1
  1423. scroon2.Transparency = 0
  1424. wait(0.1)
  1425. scroon.Transparency = 0
  1426. scroon2.Transparency = 1
  1427. wait(0.1)
  1428. scroon.Transparency = 1
  1429. scroon2.Transparency = 0
  1430. wait(0.1)
  1431. scroon.Transparency = 0
  1432. scroon2.Transparency = 1
  1433. wait(0.1)
  1434. scroon.Transparency = 1
  1435. scroon2.Transparency = 0
  1436. wait(0.1)
  1437. scroon.Transparency = 0
  1438. scroon2.Transparency = 1
  1439. wait(0.1)
  1440. scroon.Transparency = 1
  1441. scroon2.Transparency = 0
  1442. wait(0.1)
  1443. scroon.Transparency = 0
  1444. scroon2.Transparency = 1
  1445. wait(0.1)
  1446. scroon.Transparency = 1
  1447. scroon2.Transparency = 0
  1448. wait(0.1)
  1449. scroon.Transparency = 0
  1450. scroon2.Transparency = 1
  1451. wait(0.1)
  1452. scroon.Transparency = 1
  1453. scroon2.Transparency = 0
  1454. wait(0.1)
  1455. scroon.Transparency = 0
  1456. scroon2.Transparency = 1
  1457. wait(0.1)
  1458. scroon.Transparency = 1
  1459. scroon2.Transparency = 0
  1460. wait(0.1)
  1461. scroon.Transparency = 0
  1462. scroon2.Transparency = 1
  1463. wait(0.1)
  1464. scroon.Transparency = 1
  1465. scroon2.Transparency = 0
  1466. wait(0.1)
  1467. scroon.Transparency = 0
  1468. scroon2.Transparency = 1
  1469. wait(0.1)
  1470. scroon.Transparency = 1
  1471. scroon2.Transparency = 0
  1472. wait(0.1)
  1473. scroon.Transparency = 0
  1474. scroon2.Transparency = 1
  1475. wait(0.1)
  1476. scroon.Transparency = 1
  1477. scroon2.Transparency = 0
  1478. wait(0.1)
  1479. scroon.Transparency = 0
  1480. scroon2.Transparency = 1
  1481. wait(0.1)
  1482. scroon.Transparency = 1
  1483. scroon2.Transparency = 0
  1484. wait(0.1)
  1485. scroon.Transparency = 0
  1486. scroon2.Transparency = 1
  1487. wait(0.1)
  1488. scroon.Transparency = 1
  1489. scroon2.Transparency = 0
  1490. wait(0.1)
  1491. scroon.Transparency = 0
  1492. scroon2.Transparency = 1
  1493. wait(0.1)
  1494. scroon.Transparency = 1
  1495. scroon2.Transparency = 0
  1496. wait(0.1)
  1497. scroon.Transparency = 0
  1498. scroon2.Transparency = 1
  1499. wait(0.1)
  1500. scroon.Transparency = 1
  1501. scroon2.Transparency = 0
  1502. wait(0.1)
  1503. scroon.Transparency = 0
  1504. scroon2.Transparency = 1
  1505. wait(0.1)
  1506. scroon.Transparency = 1
  1507. scroon2.Transparency = 0
  1508. wait(0.1)
  1509. scroon.Transparency = 0
  1510. scroon2.Transparency = 1
  1511. wait(0.1)
  1512. scroon.Transparency = 1
  1513. scroon2.Transparency = 0
  1514. wait(0.1)
  1515. scroon.Transparency = 0
  1516. scroon2.Transparency = 1
  1517. wait(0.1)
  1518. scroon.Transparency = 1
  1519. scroon2.Transparency = 1
  1520. scroon3.Transparency = 0
  1521. scroon4.Transparency = 0
  1522. for i = 1,8 do
  1523. print(i)
  1524. scroon3.Transparency = 1
  1525. scroon5.Transparency = 0
  1526. wait(0.1)
  1527. scroon3.Transparency = 0
  1528. scroon5.Transparency = 1
  1529. wait(0.2)
  1530. scroon4.Transparency = 1
  1531. scroon6.Transparency = 0
  1532. wait(0.1)
  1533. scroon4.Transparency = 0
  1534. scroon6.Transparency = 1
  1535. wait(0.2)
  1536. if i > 8 then
  1537. break
  1538. end
  1539. end
  1540. wait(0.3)
  1541. scroon3.Transparency = 1
  1542. scroon5.Transparency = 1
  1543. scroon4.Transparency = 1
  1544. scroon6.Transparency = 1
  1545.  
  1546. scroon.Texture = "rbxassetid://123543605"
  1547. scroon.Transparency = 0
  1548. wait(2.5)
  1549. scroon.Texture = "rbxassetid://202749681"
  1550. game.Workspace.Laptop.Error.Decal.Transparency = 0
  1551. wait(0.3)
  1552. game.Workspace.Laptop.Error2.Decal.Transparency = 0
  1553. wait(0.3)
  1554. game.Workspace.Laptop.Error3.Decal.Transparency = 0
  1555. wait(0.3)
  1556. game.Workspace.Laptop.Error4.Decal.Transparency = 0
  1557. wait(0.3)
  1558. game.Workspace.Laptop.Error5.Decal.Transparency = 0
  1559. wait(0.3)
  1560. game.Workspace.Laptop.Error6.Decal.Transparency = 0
  1561. wait(0.3)
  1562. game.Workspace.Laptop.Error7.Decal.Transparency = 0
  1563. wait(0.3)
  1564. game.Workspace.Laptop.Error8.Decal.Transparency = 0
  1565. wait(0.3)
  1566. game.Workspace.Laptop.Error9.Decal.Transparency = 0
  1567. wait(0.3)
  1568. game.Workspace.Laptop.Error10.Decal.Transparency = 0
  1569. wait(0.3)
  1570. game.Workspace.Laptop.Error11.Decal.Transparency = 0
  1571. wait(0.3)
  1572. game.Workspace.Laptop.Error12.Decal.Transparency = 0
  1573. wait(0.3)
  1574. game.Workspace.Laptop.Error13.Decal.Transparency = 0
  1575. wait(0.3)
  1576. game.Workspace.Laptop.Error14.Decal.Transparency = 0
  1577. wait(1)
  1578. for xd = 1,65 do
  1579. print(xd)
  1580. game.Workspace.Laptop.Error.Decal.Transparency = 1
  1581. game.Workspace.Laptop.Error2.Decal.Transparency = 1
  1582. game.Workspace.Laptop.Error3.Decal.Transparency = 1
  1583. game.Workspace.Laptop.Error4.Decal.Transparency = 1
  1584. game.Workspace.Laptop.Error5.Decal.Transparency = 1
  1585. game.Workspace.Laptop.Error6.Decal.Transparency = 1
  1586. game.Workspace.Laptop.Error7.Decal.Transparency = 1
  1587. game.Workspace.Laptop.Error8.Decal.Transparency = 1
  1588. game.Workspace.Laptop.Error9.Decal.Transparency = 1
  1589. game.Workspace.Laptop.Error10.Decal.Transparency = 1
  1590. game.Workspace.Laptop.Error11.Decal.Transparency = 1
  1591. game.Workspace.Laptop.Error12.Decal.Transparency = 1
  1592. game.Workspace.Laptop.Error13.Decal.Transparency = 1
  1593. game.Workspace.Laptop.Error14.Decal.Transparency = 1
  1594. wait(0.1)
  1595. game.Workspace.Laptop.Error.Decal.Transparency = 0
  1596. game.Workspace.Laptop.Error2.Decal.Transparency = 0
  1597. game.Workspace.Laptop.Error3.Decal.Transparency = 0
  1598. game.Workspace.Laptop.Error4.Decal.Transparency = 0
  1599. game.Workspace.Laptop.Error5.Decal.Transparency = 0
  1600. game.Workspace.Laptop.Error6.Decal.Transparency = 0
  1601. game.Workspace.Laptop.Error7.Decal.Transparency = 0
  1602. game.Workspace.Laptop.Error8.Decal.Transparency = 0
  1603. game.Workspace.Laptop.Error9.Decal.Transparency = 0
  1604. game.Workspace.Laptop.Error10.Decal.Transparency = 0
  1605. game.Workspace.Laptop.Error11.Decal.Transparency = 0
  1606. game.Workspace.Laptop.Error12.Decal.Transparency = 0
  1607. game.Workspace.Laptop.Error13.Decal.Transparency = 0
  1608. game.Workspace.Laptop.Error14.Decal.Transparency = 0
  1609. wait(0.1)
  1610. if xd > 65 then
  1611. break
  1612. end
  1613. end
  1614. game.Workspace.Laptop.Error.Decal.Transparency = 1
  1615. game.Workspace.Laptop.Error2.Decal.Transparency = 1
  1616. game.Workspace.Laptop.Error3.Decal.Transparency = 1
  1617. game.Workspace.Laptop.Error4.Decal.Transparency = 1
  1618. game.Workspace.Laptop.Error5.Decal.Transparency = 1
  1619. game.Workspace.Laptop.Error6.Decal.Transparency = 1
  1620. game.Workspace.Laptop.Error7.Decal.Transparency = 1
  1621. game.Workspace.Laptop.Error8.Decal.Transparency = 1
  1622. game.Workspace.Laptop.Error9.Decal.Transparency = 1
  1623. game.Workspace.Laptop.Error10.Decal.Transparency = 1
  1624. game.Workspace.Laptop.Error11.Decal.Transparency = 1
  1625. game.Workspace.Laptop.Error12.Decal.Transparency = 1
  1626. game.Workspace.Laptop.Error13.Decal.Transparency = 1
  1627. game.Workspace.Laptop.Error14.Decal.Transparency = 1
  1628. wait(1)
  1629. game.Workspace.Laptop.Shutdown:Play()
  1630. game.Workspace.Laptop.Screen.Decal.Transparency = 0
  1631. wait()
  1632. game.Workspace.Laptop.Screen.Decal.Transparency = 0.1
  1633. wait()
  1634. game.Workspace.Laptop.Screen.Decal.Transparency = 0.2
  1635. wait()
  1636. game.Workspace.Laptop.Screen.Decal.Transparency = 0.3
  1637. wait()
  1638. game.Workspace.Laptop.Screen.Decal.Transparency = 0.4
  1639. wait()
  1640. game.Workspace.Laptop.Screen.Decal.Transparency = 0.5
  1641. wait()
  1642. game.Workspace.Laptop.Screen.Decal.Transparency = 0.6
  1643. wait()
  1644. game.Workspace.Laptop.Screen.Decal.Transparency = 0.7
  1645. wait()
  1646. game.Workspace.Laptop.Screen.Decal.Transparency = 0.8
  1647. wait()
  1648. game.Workspace.Laptop.Screen.Decal.Transparency = 0.9
  1649. wait()
  1650. game.Workspace.Laptop.Screen.Decal.Transparency = 1
  1651. wait()
  1652. shutdown.Transparency = 1
  1653. wait()
  1654. shutdown.Transparency = 0.9
  1655. wait()
  1656. shutdown.Transparency = 0.8
  1657. wait()
  1658. shutdown.Transparency = 0.7
  1659. wait()
  1660. shutdown.Transparency = 0.6
  1661. wait()
  1662. shutdown.Transparency = 0.5
  1663. wait()
  1664. shutdown.Transparency = 0.4
  1665. wait()
  1666. shutdown.Transparency = 0.3
  1667. wait()
  1668. shutdown.Transparency = 0.2
  1669. wait()
  1670. shutdown.Transparency = 0.1
  1671. wait()
  1672. shutdown.Transparency = 0
  1673. wait(5)
  1674. game.Workspace.Laptop.OOPS:Play()
  1675. shutdown.Texture = "rbxassetid://50910723"
  1676. wait(7)
  1677. shutdown.Transparency = 1
  1678. text.TextTransparency = 0
  1679. wait(0.1)
  1680. text.Text = "Need"
  1681. wait(0.1)
  1682. shutdown.Texture = "rbxassetid://983466416"
  1683. shutdown.Transparency = 0
  1684. wait(0.6)
  1685. shutdown.Transparency = 1
  1686. text.Text = "World's only antivirus with"
  1687. wait(1.8)
  1688. text.Text = "Data"
  1689. wait(0.2)
  1690. text.Text = "Recovery"
  1691. wait(0.2)
  1692. text.Text = "Software"
  1693. wait(1)
  1694. text.TextTransparency = 1
  1695. shutdown.Texture = "rbxassetid://1071265882"
  1696. shutdown.Transparency = 0
  1697. wait(0.5)
  1698. shutdown.Transparency = 1
  1699. text.Text = "Beyond"
  1700. text.TextTransparency = 0
  1701. wait(0.2)
  1702. shutdown.Texture = "rbxassetid://30261668"
  1703. shutdown.Transparency = 0
  1704. wait(0.8)
  1705. shutdown.Texture = "rbxassetid://1071265882"
  1706. wait(0.5)
  1707. shutdown.Texture = "rbxassetid://983466416"
  1708. wait(0.6)
  1709. shutdown.Transparency = 1
  1710. text.TextTransparency = 1
  1711. wait(0.6)
  1712. game.Workspace.Laptop.AGK:Play()
  1713. shutdown.Texture = "rbxassetid://35417464"
  1714. shutdown.Transparency = 0
  1715. wait(5)
  1716. game.Workspace.Laptop.AGK:Stop()
  1717. shutdown.Texture = "rbxassetid://186565366"
  1718. wait(0.1)
  1719. shutdown.Texture = "rbxassetid://186565386"
  1720. wait(0.1)
  1721. shutdown.Texture = "rbxassetid://186565386"
  1722. wait(0.1)
  1723. shutdown.Texture = "rbxassetid://186565394"
  1724. wait(0.1)
  1725. shutdown.Texture = "rbxassetid://186565400"
  1726. wait(0.1)
  1727. game.Workspace.Laptop.EGUSPELOSIAWN:Play()
  1728. shutdown.Texture = "rbxassetid://186565408"
  1729. wait(0.1)
  1730. shutdown.Texture = "rbxassetid://186565413"
  1731. wait(0.1)
  1732. shutdown.Texture = "rbxassetid://186565417"
  1733. wait(0.1)
  1734. shutdown.Texture = "rbxassetid://186565425"
  1735. wait(0.1)
  1736. shutdown.Texture = "rbxassetid://186565433"
  1737. wait(0.1)
  1738. shutdown.Texture = "rbxassetid://186565445"
  1739. wait(0.1)
  1740. shutdown.Texture = "rbxassetid://186565454"
  1741. wait(0.1)
  1742. shutdown.Texture = "rbxassetid://186565461"
  1743. wait(0.1)
  1744. shutdown.Texture = "rbxassetid://186565474"
  1745. wait(0.1)
  1746. shutdown.Texture = "rbxassetid://186565480"
  1747. wait(0.1)
  1748. shutdown.Texture = "rbxassetid://186565489"
  1749. wait(0.1)
  1750. shutdown.Texture = "rbxassetid://186565497"
  1751. wait(0.1)
  1752. shutdown.Texture = "rbxassetid://186565502"
  1753. wait(0.1)
  1754. shutdown.Texture = "rbxassetid://186565508"
  1755. wait(0.1)
  1756. shutdown.Texture = "rbxassetid://186565515"
  1757. wait(0.1)
  1758. game.Workspace.Laptop.EGUSPELOSIAWN:Stop()
  1759. wait(0.1)
  1760. shutdown.Texture = "rbxassetid://342859875"
  1761. game.Workspace.Laptop.Standby:Play()
  1762. shutdown.Transparency = 0
  1763. wait(17)
  1764. game.Workspace.Laptop.Standby:Stop()
  1765. game.Workspace.Laptop.Cresh:Play()
  1766. wait(3)
  1767. shutdown.Transparency = 1
  1768. shutdown.Texture = "rbxassetid://394001532"
  1769. wait(2)
  1770. shutdown.Transparency = 0
  1771. wait(5)
  1772. shutdown.Transparency = 1
  1773. game.Workspace.Laptop.Cresh:Stop()
  1774. wait(3)
  1775. game.Workspace.Laptop.Search:Play()
  1776. text.TextTransparency = 0
  1777. for i = 1,10 do
  1778. print(i)
  1779. text.Text = "SEARCHING FOR DATA."
  1780. wait(0.75)
  1781. text.Text = "SEARCHING FOR DATA.."
  1782. wait(0.75)
  1783. text.Text = "SEARCHING FOR DATA..."
  1784. wait(0.75)
  1785. if i > 10 then
  1786. break
  1787. end
  1788. end
  1789. game.Workspace.Laptop.Search:Stop()
  1790. Math = math.random(1,2)
  1791. if Math == 1 then
  1792. game.Workspace.Laptop.Yey:Play()
  1793. text.Text = "Data found! Congratiolations! Protogent didn't backstab you :3"
  1794. wait(5)
  1795. text.Text = "Your computer will sta-"
  1796. wait(3)
  1797. text.Text = "Uhh hold on...There seems to be an error..."
  1798. wait(3)
  1799. text.Text = "OH GOD PROTOGENT N-"
  1800. wait(0.3)
  1801. text.Text = " "
  1802. game.Workspace.Laptop.JABANANEN:Play()
  1803. wait()
  1804. scroon.Transparency = 0
  1805. scroon.Texture = "rbxassetid://271617784"
  1806.  
  1807.  
  1808.  
  1809.  
  1810.  
  1811. end
  1812. if Math == 2 then
  1813. game.Workspace.Laptop.Noh:Play()
  1814. text.Text = "Oh noes, Protogent destroyed your data..."
  1815. wait(5)
  1816. game.Workspace.Laptop.SELFDESTRUCT:Play()
  1817. text.Text = "....And it has activated self destruct! RUN!"
  1818. wait(15)
  1819. local kablmaoXDXD = Instance.new("Sound", game.Players.LocalPlayer.Character)
  1820. kablmaoXDXD.SoundId = "rbxassetid://2248511"
  1821. kablmaoXDXD.Volume = 10
  1822. kablmaoXDXD:Play()
  1823. kablmaoXDXD.PlaybackSpeed = 0.2
  1824. workspace.Laptop:BreakJoints()
  1825. workspace.Laptop.TopPart.Anchored = false
  1826. local boom = Instance.new("Explosion", workspace)
  1827. boom.Position = game.Workspace.Laptop.BottomPart.Position
  1828. boom.Visible = false
  1829. boom.BlastRadius = 70
  1830. local ball1 = Instance.new("Part", game.Players.LocalPlayer.Character)
  1831. ball1.Size = Vector3.new(1,1,1)
  1832. ball1.Material = "Neon"
  1833. ball1.Anchored = true
  1834. ball1.Transparency = 0.3
  1835. ball1.BrickColor = BrickColor.new("New Yeller")
  1836. ball1.CanCollide = false
  1837. ball1.CFrame = game.Workspace.Laptop.BottomPart.CFrame
  1838. local ball11 = Instance.new("Part", game.Players.LocalPlayer.Character)
  1839. ball11.Size = Vector3.new(1,1,1)
  1840. ball11.Material = "Neon"
  1841. ball11.Anchored = true
  1842. ball11.Transparency = 0.3
  1843. ball11.BrickColor = BrickColor.new("Maroon")
  1844. ball11.CanCollide = false
  1845. ball11.CFrame = game.Workspace.Laptop.BottomPart.CFrame
  1846. local cf = ball1.CFrame
  1847. ball1:BreakJoints()
  1848. local cfval = 0
  1849. local cfval1 = 0
  1850. for i = 1,260 do
  1851. game.Players.LocalPlayer.Character.Humanoid.CameraOffset = Vector3.new(math.random(-1,1),math.random(-1,1),math.random(-1,1))
  1852. cfval1 = cfval1 - 1
  1853. cfval = cfval + 1
  1854. ball1.Size = ball1.Size + Vector3.new(0.4,0.4,0.4)
  1855. ball1.CFrame = cf * CFrame.fromEulerAnglesXYZ(0,cfval,cfval + math.random(-1,1))
  1856. --
  1857. ball11.Size = ball1.Size + Vector3.new(0.2,0.2,0.2)
  1858. ball11.CFrame = cf * CFrame.fromEulerAnglesXYZ(0,cfval1,cfval1 + math.random(-1,1))
  1859. wait()
  1860. end
  1861. for i = 1,20 do
  1862. game.Players.LocalPlayer.Character.Humanoid.CameraOffset = Vector3.new(math.random(-1,1),math.random(-1,1),math.random(-1,1))
  1863. cfval1 = cfval1 - 1
  1864. cfval = cfval + 1
  1865. ball1.Transparency = ball1.Transparency + 0.05
  1866. ball1.Size = ball1.Size + Vector3.new(0.4,0.4,0.4)
  1867. ball1.CFrame = cf * CFrame.fromEulerAnglesXYZ(0,cfval,cfval + math.random(-1,1))
  1868. --
  1869. ball11.Transparency = ball11.Transparency + 0.05
  1870. ball11.Size = ball1.Size + Vector3.new(0.2,0.2,0.2)
  1871. ball11.CFrame = cf * CFrame.fromEulerAnglesXYZ(0,cfval1,cfval1 + math.random(-1,1))
  1872. wait()
  1873. end
  1874. end
  1875.  
  1876.  
  1877.  
  1878.  
  1879.  
  1880.  
  1881. end))
  1882. Sound11.Name = "Chilled"
  1883. Sound11.Parent = Model0
  1884. Sound11.SoundId = "rbxassetid://1120289188"
  1885. Sound11.Volume = 1
  1886. Part12.Name = "Screen3"
  1887. Part12.Parent = Model0
  1888. Part12.BrickColor = BrickColor.new("Really black")
  1889. Part12.Transparency = 1
  1890. Part12.Rotation = Vector3.new(-90, 0, -180)
  1891. Part12.Anchored = true
  1892. Part12.Size = Vector3.new(17.6400185, 0.130000025, 25.3100014)
  1893. Part12.CFrame = CFrame.new(-16.6124001, 15.0680561, -26.0160904, -1, 1.46463867e-06, 1.57952309e-06, 1.57952309e-06, -1.64890207e-05, 1, 1.46466289e-06, 1, 1.64890334e-05)
  1894. Part12.BottomSurface = Enum.SurfaceType.Smooth
  1895. Part12.TopSurface = Enum.SurfaceType.Smooth
  1896. Part12.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1897. Part12.Position = Vector3.new(-16.6124001, 15.0680561, -26.0160904)
  1898. Part12.Orientation = Vector3.new(-90, -180, 0)
  1899. Part12.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1900. Decal13.Parent = Part12
  1901. Decal13.Transparency = 1
  1902. Decal13.Texture = "rbxassetid://202749681"
  1903. Decal13.Face = Enum.NormalId.Top
  1904. Part14.Name = "Screen4"
  1905. Part14.Parent = Model0
  1906. Part14.BrickColor = BrickColor.new("Really black")
  1907. Part14.Transparency = 1
  1908. Part14.Rotation = Vector3.new(-90, 0, -180)
  1909. Part14.Anchored = true
  1910. Part14.Size = Vector3.new(17.6400185, 0.130000025, 25.3100014)
  1911. Part14.CFrame = CFrame.new(4.08244181, 15.0554276, -25.9565506, -1, 1.46463867e-06, 1.57952309e-06, 1.57952309e-06, -1.64890207e-05, 1, 1.46466289e-06, 1, 1.64890334e-05)
  1912. Part14.BottomSurface = Enum.SurfaceType.Smooth
  1913. Part14.TopSurface = Enum.SurfaceType.Smooth
  1914. Part14.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1915. Part14.Position = Vector3.new(4.08244181, 15.0554276, -25.9565506)
  1916. Part14.Orientation = Vector3.new(-90, -180, 0)
  1917. Part14.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1918. Decal15.Parent = Part14
  1919. Decal15.Transparency = 1
  1920. Decal15.Texture = "rbxassetid://202749681"
  1921. Decal15.Face = Enum.NormalId.Top
  1922. Part16.Name = "Screen5"
  1923. Part16.Parent = Model0
  1924. Part16.BrickColor = BrickColor.new("Really black")
  1925. Part16.Transparency = 1
  1926. Part16.Rotation = Vector3.new(90, 0, 0)
  1927. Part16.Anchored = true
  1928. Part16.Size = Vector3.new(17.6400185, 0.130000025, 25.3100014)
  1929. Part16.CFrame = CFrame.new(-16.6122341, 15.0917301, -25.9565201, 1, 1.46105799e-06, 5.84114969e-06, 5.84117379e-06, -1.64848898e-05, -1, -1.4609617e-06, 1, -1.64848989e-05)
  1930. Part16.BottomSurface = Enum.SurfaceType.Smooth
  1931. Part16.TopSurface = Enum.SurfaceType.Smooth
  1932. Part16.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1933. Part16.Position = Vector3.new(-16.6122341, 15.0917301, -25.9565201)
  1934. Part16.Orientation = Vector3.new(90, 0, 0)
  1935. Part16.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1936. Decal17.Parent = Part16
  1937. Decal17.Transparency = 1
  1938. Decal17.Texture = "rbxassetid://202749681"
  1939. Decal17.Face = Enum.NormalId.Top
  1940. Part18.Name = "Screen6"
  1941. Part18.Parent = Model0
  1942. Part18.BrickColor = BrickColor.new("Really black")
  1943. Part18.Transparency = 1
  1944. Part18.Rotation = Vector3.new(90, 0, 0)
  1945. Part18.Anchored = true
  1946. Part18.Size = Vector3.new(17.6400185, 0.130000025, 25.3100014)
  1947. Part18.CFrame = CFrame.new(4.08256006, 15.1133881, -25.8969669, 1, 1.41978819e-06, 4.67880591e-06, 4.6788291e-06, -1.64701923e-05, -1, -1.41971111e-06, 1, -1.64701996e-05)
  1948. Part18.BottomSurface = Enum.SurfaceType.Smooth
  1949. Part18.TopSurface = Enum.SurfaceType.Smooth
  1950. Part18.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1951. Part18.Position = Vector3.new(4.08256006, 15.1133881, -25.8969669)
  1952. Part18.Orientation = Vector3.new(90, 0, 0)
  1953. Part18.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1954. Decal19.Parent = Part18
  1955. Decal19.Transparency = 1
  1956. Decal19.Texture = "rbxassetid://202749681"
  1957. Decal19.Face = Enum.NormalId.Top
  1958. Part20.Name = "Error"
  1959. Part20.Parent = Model0
  1960. Part20.BrickColor = BrickColor.new("Really black")
  1961. Part20.Transparency = 1
  1962. Part20.Rotation = Vector3.new(-90, 0, -180)
  1963. Part20.Anchored = true
  1964. Part20.Size = Vector3.new(13.0000162, 0.130000025, 6.95000458)
  1965. Part20.CFrame = CFrame.new(-18.9324017, 24.0471134, -25.5749741, -1, 1.46463867e-06, 1.57952309e-06, 1.57952309e-06, -1.64890207e-05, 1, 1.46466289e-06, 1, 1.64890334e-05)
  1966. Part20.BottomSurface = Enum.SurfaceType.Smooth
  1967. Part20.TopSurface = Enum.SurfaceType.Smooth
  1968. Part20.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1969. Part20.Position = Vector3.new(-18.9324017, 24.0471134, -25.5749741)
  1970. Part20.Orientation = Vector3.new(-90, -180, 0)
  1971. Part20.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1972. Decal21.Parent = Part20
  1973. Decal21.Transparency = 1
  1974. Decal21.Texture = "rbxassetid://410610557"
  1975. Decal21.Face = Enum.NormalId.Top
  1976. Part22.Name = "Error12"
  1977. Part22.Parent = Model0
  1978. Part22.BrickColor = BrickColor.new("Really black")
  1979. Part22.Transparency = 1
  1980. Part22.Rotation = Vector3.new(-90, 0, -180)
  1981. Part22.Anchored = true
  1982. Part22.Size = Vector3.new(13.0000162, 0.130000025, 6.95000458)
  1983. Part22.CFrame = CFrame.new(-1.94981802, 7.45689392, -25.1585083, -1, 1.46463867e-06, 1.57952309e-06, 1.57952309e-06, -1.64890207e-05, 1, 1.46466289e-06, 1, 1.64890334e-05)
  1984. Part22.BottomSurface = Enum.SurfaceType.Smooth
  1985. Part22.TopSurface = Enum.SurfaceType.Smooth
  1986. Part22.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1987. Part22.Position = Vector3.new(-1.94981802, 7.45689392, -25.1585083)
  1988. Part22.Orientation = Vector3.new(-90, -180, 0)
  1989. Part22.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1990. Decal23.Parent = Part22
  1991. Decal23.Transparency = 1
  1992. Decal23.Texture = "rbxassetid://49363212"
  1993. Decal23.Face = Enum.NormalId.Top
  1994. Part24.Name = "Error11"
  1995. Part24.Parent = Model0
  1996. Part24.BrickColor = BrickColor.new("Really black")
  1997. Part24.Transparency = 1
  1998. Part24.Rotation = Vector3.new(-90, 0, -180)
  1999. Part24.Anchored = true
  2000. Part24.Size = Vector3.new(13.0000162, 0.130000025, 6.95000458)
  2001. Part24.CFrame = CFrame.new(-13.0447941, 10.8068361, -25.4856644, -1, 1.46463867e-06, 1.57952309e-06, 1.57952309e-06, -1.64890207e-05, 1, 1.46466289e-06, 1, 1.64890334e-05)
  2002. Part24.BottomSurface = Enum.SurfaceType.Smooth
  2003. Part24.TopSurface = Enum.SurfaceType.Smooth
  2004. Part24.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2005. Part24.Position = Vector3.new(-13.0447941, 10.8068361, -25.4856644)
  2006. Part24.Orientation = Vector3.new(-90, -180, 0)
  2007. Part24.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2008. Decal25.Parent = Part24
  2009. Decal25.Transparency = 1
  2010. Decal25.Texture = "rbxassetid://24161633"
  2011. Decal25.Face = Enum.NormalId.Top
  2012. Part26.Name = "Error13"
  2013. Part26.Parent = Model0
  2014. Part26.BrickColor = BrickColor.new("Really black")
  2015. Part26.Transparency = 1
  2016. Part26.Rotation = Vector3.new(-90, 0, -180)
  2017. Part26.Anchored = true
  2018. Part26.Size = Vector3.new(13.0000162, 0.130000025, 6.95000458)
  2019. Part26.CFrame = CFrame.new(-17.1317921, 7.44849777, -25.5385895, -1, 1.46463867e-06, 1.57952309e-06, 1.57952309e-06, -1.64890207e-05, 1, 1.46466289e-06, 1, 1.64890334e-05)
  2020. Part26.BottomSurface = Enum.SurfaceType.Smooth
  2021. Part26.TopSurface = Enum.SurfaceType.Smooth
  2022. Part26.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2023. Part26.Position = Vector3.new(-17.1317921, 7.44849777, -25.5385895)
  2024. Part26.Orientation = Vector3.new(-90, -180, 0)
  2025. Part26.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2026. Decal27.Parent = Part26
  2027. Decal27.Transparency = 1
  2028. Decal27.Texture = "rbxassetid://155374193"
  2029. Decal27.Face = Enum.NormalId.Top
  2030. Part28.Name = "Error14"
  2031. Part28.Parent = Model0
  2032. Part28.BrickColor = BrickColor.new("Really black")
  2033. Part28.Transparency = 1
  2034. Part28.Rotation = Vector3.new(-90, 0, -180)
  2035. Part28.Anchored = true
  2036. Part28.Size = Vector3.new(13.0000162, 0.130000025, 6.95000458)
  2037. Part28.CFrame = CFrame.new(6.13697195, 6.3400178, -25.5986443, -1, 1.46463867e-06, 1.57952309e-06, 1.57952309e-06, -1.64890207e-05, 1, 1.46466289e-06, 1, 1.64890334e-05)
  2038. Part28.BottomSurface = Enum.SurfaceType.Smooth
  2039. Part28.TopSurface = Enum.SurfaceType.Smooth
  2040. Part28.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2041. Part28.Position = Vector3.new(6.13697195, 6.3400178, -25.5986443)
  2042. Part28.Orientation = Vector3.new(-90, -180, 0)
  2043. Part28.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2044. Decal29.Parent = Part28
  2045. Decal29.Transparency = 1
  2046. Decal29.Texture = "rbxassetid://26258536"
  2047. Decal29.Face = Enum.NormalId.Top
  2048. Part30.Name = "Error2"
  2049. Part30.Parent = Model0
  2050. Part30.BrickColor = BrickColor.new("Really black")
  2051. Part30.Transparency = 1
  2052. Part30.Rotation = Vector3.new(-90, 0, -180)
  2053. Part30.Anchored = true
  2054. Part30.Size = Vector3.new(13.0000162, 0.130000025, 6.95000458)
  2055. Part30.CFrame = CFrame.new(5.2930851, 23.5399494, -25.7504234, -1, 1.46463867e-06, 1.57952309e-06, 1.57952309e-06, -1.64890207e-05, 1, 1.46466289e-06, 1, 1.64890334e-05)
  2056. Part30.BottomSurface = Enum.SurfaceType.Smooth
  2057. Part30.TopSurface = Enum.SurfaceType.Smooth
  2058. Part30.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2059. Part30.Position = Vector3.new(5.2930851, 23.5399494, -25.7504234)
  2060. Part30.Orientation = Vector3.new(-90, -180, 0)
  2061. Part30.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2062. Decal31.Parent = Part30
  2063. Decal31.Transparency = 1
  2064. Decal31.Texture = "rbxassetid://174565913"
  2065. Decal31.Face = Enum.NormalId.Top
  2066. Part32.Name = "Error3"
  2067. Part32.Parent = Model0
  2068. Part32.BrickColor = BrickColor.new("Really black")
  2069. Part32.Transparency = 1
  2070. Part32.Rotation = Vector3.new(-90, 0, -180)
  2071. Part32.Anchored = true
  2072. Part32.Size = Vector3.new(13.0000162, 0.130000025, 6.95000458)
  2073. Part32.CFrame = CFrame.new(-1.25632203, 21.9697857, -25.700386, -1, 1.46463867e-06, 1.57952309e-06, 1.57952309e-06, -1.64890207e-05, 1, 1.46466289e-06, 1, 1.64890334e-05)
  2074. Part32.BottomSurface = Enum.SurfaceType.Smooth
  2075. Part32.TopSurface = Enum.SurfaceType.Smooth
  2076. Part32.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2077. Part32.Position = Vector3.new(-1.25632203, 21.9697857, -25.700386)
  2078. Part32.Orientation = Vector3.new(-90, -180, 0)
  2079. Part32.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2080. Decal33.Parent = Part32
  2081. Decal33.Transparency = 1
  2082. Decal33.Texture = "rbxassetid://278802262"
  2083. Decal33.Face = Enum.NormalId.Top
  2084. Part34.Name = "Error4"
  2085. Part34.Parent = Model0
  2086. Part34.BrickColor = BrickColor.new("Really black")
  2087. Part34.Transparency = 1
  2088. Part34.Rotation = Vector3.new(-90, 0, -180)
  2089. Part34.Anchored = true
  2090. Part34.Size = Vector3.new(13.0000162, 0.130000025, 6.95000458)
  2091. Part34.CFrame = CFrame.new(-12.5566645, 23.9789543, -25.5174751, -1, 1.46463867e-06, 1.57952309e-06, 1.57952309e-06, -1.64890207e-05, 1, 1.46466289e-06, 1, 1.64890334e-05)
  2092. Part34.BottomSurface = Enum.SurfaceType.Smooth
  2093. Part34.TopSurface = Enum.SurfaceType.Smooth
  2094. Part34.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2095. Part34.Position = Vector3.new(-12.5566645, 23.9789543, -25.5174751)
  2096. Part34.Orientation = Vector3.new(-90, -180, 0)
  2097. Part34.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2098. Decal35.Parent = Part34
  2099. Decal35.Transparency = 1
  2100. Decal35.Texture = "rbxassetid://257508984"
  2101. Decal35.Face = Enum.NormalId.Top
  2102. Part36.Name = "Error5"
  2103. Part36.Parent = Model0
  2104. Part36.BrickColor = BrickColor.new("Really black")
  2105. Part36.Transparency = 1
  2106. Part36.Rotation = Vector3.new(-90, 0, -180)
  2107. Part36.Anchored = true
  2108. Part36.Size = Vector3.new(13.0000162, 0.130000025, 6.95000458)
  2109. Part36.CFrame = CFrame.new(-16.7515697, 18.5244789, -25.4751205, -1, 1.46463867e-06, 1.57952309e-06, 1.57952309e-06, -1.64890207e-05, 1, 1.46466289e-06, 1, 1.64890334e-05)
  2110. Part36.BottomSurface = Enum.SurfaceType.Smooth
  2111. Part36.TopSurface = Enum.SurfaceType.Smooth
  2112. Part36.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2113. Part36.Position = Vector3.new(-16.7515697, 18.5244789, -25.4751205)
  2114. Part36.Orientation = Vector3.new(-90, -180, 0)
  2115. Part36.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2116. Decal37.Parent = Part36
  2117. Decal37.Transparency = 1
  2118. Decal37.Texture = "rbxassetid://83825570"
  2119. Decal37.Face = Enum.NormalId.Top
  2120. Part38.Name = "Error6"
  2121. Part38.Parent = Model0
  2122. Part38.BrickColor = BrickColor.new("Really black")
  2123. Part38.Transparency = 1
  2124. Part38.Rotation = Vector3.new(-90, 0, -180)
  2125. Part38.Anchored = true
  2126. Part38.Size = Vector3.new(13.0000162, 0.130000025, 6.95000458)
  2127. Part38.CFrame = CFrame.new(-10.3161802, 18.1403332, -25.4698792, -1, 1.46463867e-06, 1.57952309e-06, 1.57952309e-06, -1.64890207e-05, 1, 1.46466289e-06, 1, 1.64890334e-05)
  2128. Part38.BottomSurface = Enum.SurfaceType.Smooth
  2129. Part38.TopSurface = Enum.SurfaceType.Smooth
  2130. Part38.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2131. Part38.Position = Vector3.new(-10.3161802, 18.1403332, -25.4698792)
  2132. Part38.Orientation = Vector3.new(-90, -180, 0)
  2133. Part38.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2134. Decal39.Parent = Part38
  2135. Decal39.Transparency = 1
  2136. Decal39.Texture = "rbxassetid://45059153"
  2137. Decal39.Face = Enum.NormalId.Top
  2138. Part40.Name = "Error7"
  2139. Part40.Parent = Model0
  2140. Part40.BrickColor = BrickColor.new("Really black")
  2141. Part40.Transparency = 1
  2142. Part40.Rotation = Vector3.new(-90, 0, -180)
  2143. Part40.Anchored = true
  2144. Part40.Size = Vector3.new(13.0000162, 0.130000025, 6.95000458)
  2145. Part40.CFrame = CFrame.new(-0.810696006, 13.4196739, -25.3747978, -1, 1.46463867e-06, 1.57952309e-06, 1.57952309e-06, -1.64890207e-05, 1, 1.46466289e-06, 1, 1.64890334e-05)
  2146. Part40.BottomSurface = Enum.SurfaceType.Smooth
  2147. Part40.TopSurface = Enum.SurfaceType.Smooth
  2148. Part40.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2149. Part40.Position = Vector3.new(-0.810696006, 13.4196739, -25.3747978)
  2150. Part40.Orientation = Vector3.new(-90, -180, 0)
  2151. Part40.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2152. Decal41.Parent = Part40
  2153. Decal41.Transparency = 1
  2154. Decal41.Texture = "rbxassetid://913267707"
  2155. Decal41.Face = Enum.NormalId.Top
  2156. Part42.Name = "Error8"
  2157. Part42.Parent = Model0
  2158. Part42.BrickColor = BrickColor.new("Really black")
  2159. Part42.Transparency = 1
  2160. Part42.Rotation = Vector3.new(-90, 0, -180)
  2161. Part42.Anchored = true
  2162. Part42.Size = Vector3.new(13.0000162, 0.130000025, 6.95000458)
  2163. Part42.CFrame = CFrame.new(2.32739806, 18.5839558, -25.3300667, -1, 1.46463867e-06, 1.57952309e-06, 1.57952309e-06, -1.64890207e-05, 1, 1.46466289e-06, 1, 1.64890334e-05)
  2164. Part42.BottomSurface = Enum.SurfaceType.Smooth
  2165. Part42.TopSurface = Enum.SurfaceType.Smooth
  2166. Part42.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2167. Part42.Position = Vector3.new(2.32739806, 18.5839558, -25.3300667)
  2168. Part42.Orientation = Vector3.new(-90, -180, 0)
  2169. Part42.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2170. Decal43.Parent = Part42
  2171. Decal43.Transparency = 1
  2172. Decal43.Texture = "rbxassetid://13525528"
  2173. Decal43.Face = Enum.NormalId.Top
  2174. Part44.Name = "Error9"
  2175. Part44.Parent = Model0
  2176. Part44.BrickColor = BrickColor.new("Really black")
  2177. Part44.Transparency = 1
  2178. Part44.Rotation = Vector3.new(-90, 0, -180)
  2179. Part44.Anchored = true
  2180. Part44.Size = Vector3.new(13.0000162, 0.130000025, 6.95000458)
  2181. Part44.CFrame = CFrame.new(6.234375, 14.5201178, -25.3092499, -1, 1.46463867e-06, 1.57952309e-06, 1.57952309e-06, -1.64890207e-05, 1, 1.46466289e-06, 1, 1.64890334e-05)
  2182. Part44.BottomSurface = Enum.SurfaceType.Smooth
  2183. Part44.TopSurface = Enum.SurfaceType.Smooth
  2184. Part44.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2185. Part44.Position = Vector3.new(6.234375, 14.5201178, -25.3092499)
  2186. Part44.Orientation = Vector3.new(-90, -180, 0)
  2187. Part44.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2188. Decal45.Parent = Part44
  2189. Decal45.Transparency = 1
  2190. Decal45.Texture = "rbxassetid://163822064"
  2191. Decal45.Face = Enum.NormalId.Top
  2192. Part46.Name = "Error10"
  2193. Part46.Parent = Model0
  2194. Part46.BrickColor = BrickColor.new("Really black")
  2195. Part46.Transparency = 1
  2196. Part46.Rotation = Vector3.new(-90, 0, -180)
  2197. Part46.Anchored = true
  2198. Part46.Size = Vector3.new(13.0000162, 0.130000025, 6.95000458)
  2199. Part46.CFrame = CFrame.new(-18.6836948, 16.1264935, -25.5352631, -1, 1.46463867e-06, 1.57952309e-06, 1.57952309e-06, -1.64890207e-05, 1, 1.46466289e-06, 1, 1.64890334e-05)
  2200. Part46.BottomSurface = Enum.SurfaceType.Smooth
  2201. Part46.TopSurface = Enum.SurfaceType.Smooth
  2202. Part46.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2203. Part46.Position = Vector3.new(-18.6836948, 16.1264935, -25.5352631)
  2204. Part46.Orientation = Vector3.new(-90, -180, 0)
  2205. Part46.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2206. Decal47.Parent = Part46
  2207. Decal47.Transparency = 1
  2208. Decal47.Texture = "rbxassetid://25536849"
  2209. Decal47.Face = Enum.NormalId.Top
  2210. Sound48.Name = "Shutdown"
  2211. Sound48.Parent = Model0
  2212. Sound48.SoundId = "rbxassetid://784747919"
  2213. Sound48.Volume = 1
  2214. Part49.Name = "Shutdownscreen"
  2215. Part49.Parent = Model0
  2216. Part49.BrickColor = BrickColor.new("Really black")
  2217. Part49.Transparency = 1
  2218. Part49.Rotation = Vector3.new(-90, 0, -180)
  2219. Part49.Anchored = true
  2220. Part49.Size = Vector3.new(38.4500122, 0.130000025, 25.3100014)
  2221. Part49.CFrame = CFrame.new(-6.20739603, 15.0035801, -25.9561005, -0.999998927, 1.46471007e-06, 1.56462193e-06, 1.56462193e-06, -1.64884223e-05, 0.999998927, 1.4645899e-06, 1, 1.64896137e-05)
  2222. Part49.BottomSurface = Enum.SurfaceType.Smooth
  2223. Part49.TopSurface = Enum.SurfaceType.Smooth
  2224. Part49.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2225. Part49.Position = Vector3.new(-6.20739603, 15.0035801, -25.9561005)
  2226. Part49.Orientation = Vector3.new(-89.9199982, 5.42000008, 174.580002)
  2227. Part49.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2228. Decal50.Parent = Part49
  2229. Decal50.Transparency = 1
  2230. Decal50.Texture = "rbxassetid://178320220"
  2231. Decal50.Face = Enum.NormalId.Top
  2232. Sound51.Name = "OOPS"
  2233. Sound51.Parent = Model0
  2234. Sound51.SoundId = "rbxassetid://1006313226"
  2235. Sound51.TimePosition = 2
  2236. Sound51.Volume = 1
  2237. Sound52.Name = "AGK"
  2238. Sound52.Parent = Model0
  2239. Sound52.SoundId = "rbxassetid://448909138"
  2240. Sound52.Volume = 10
  2241. Sound53.Name = "Standby"
  2242. Sound53.Parent = Model0
  2243. Sound53.SoundId = "rbxassetid://169869850"
  2244. Sound54.Name = "EGUSPELOSIAWN"
  2245. Sound54.Parent = Model0
  2246. Sound54.SoundId = "rbxassetid://171515875"
  2247. Sound55.Name = "Search"
  2248. Sound55.Parent = Model0
  2249. Sound55.SoundId = "rbxassetid://329492143"
  2250. Sound55.Volume = 10
  2251. Sound56.Name = "Cresh"
  2252. Sound56.Parent = Model0
  2253. Sound56.SoundId = "rbxassetid://603266135"
  2254. Sound57.Name = "Yey"
  2255. Sound57.Parent = Model0
  2256. Sound57.SoundId = "rbxassetid://692987809"
  2257. Sound57.Volume = 10
  2258. Sound58.Name = "Noh"
  2259. Sound58.Parent = Model0
  2260. Sound58.SoundId = "rbxassetid://620887707"
  2261. Sound58.Volume = 10
  2262. Sound59.Name = "SELFDESTRUCT"
  2263. Sound59.Parent = Model0
  2264. Sound59.SoundId = "rbxassetid://885996042"
  2265. Sound59.Volume = 10
  2266. Sound60.Name = "JABANANEN"
  2267. Sound60.Parent = Model0
  2268. Sound60.SoundId = "rbxassetid://133724225"
  2269. Sound60.Volume = 10
  2270. for i,v in pairs(mas:GetChildren()) do
  2271. v.Parent = workspace
  2272. pcall(function() v:MakeJoints() end)
  2273. end
  2274. mas:Destroy()
  2275. for i,v in pairs(cors) do
  2276. spawn(function()
  2277. pcall(v)
  2278. end)
  2279. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement