Advertisement
Mediakiller7Cool

AEgsg

Apr 1st, 2020
219
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 47.31 KB | None | 0 0
  1. --https://github.com/Mokiros/roblox-FE-compatibility
  2. if game:GetService("RunService"):IsClient() then error("Script must be server-side in order to work; use h/ and not hl/") end
  3. local Player,game,owner = owner,game
  4. local RealPlayer = Player
  5. do
  6. print("FE Compatibility code V2 by Mokiros")
  7. local RealPlayer = RealPlayer
  8. script.Parent = RealPlayer.Character
  9.  
  10. --Fake event to make stuff like Mouse.KeyDown work
  11. local Disconnect_Function = function(this)
  12. this[1].Functions[this[2]] = nil
  13. end
  14. local Disconnect_Metatable = {__index={disconnect=Disconnect_Function,Disconnect=Disconnect_Function}}
  15. local FakeEvent_Metatable = {__index={
  16. Connect = function(this,f)
  17. local i = tostring(math.random(0,10000))
  18. while this.Functions[i] do
  19. i = tostring(math.random(0,10000))
  20. end
  21. this.Functions[i] = f
  22. return setmetatable({this,i},Disconnect_Metatable)
  23. end
  24. }}
  25. FakeEvent_Metatable.__index.connect = FakeEvent_Metatable.__index.Connect
  26. local function fakeEvent()
  27. return setmetatable({Functions={}},FakeEvent_Metatable)
  28. end
  29.  
  30. --Creating fake input objects with fake variables
  31. local FakeMouse = {Hit=CFrame.new(),KeyUp=fakeEvent(),KeyDown=fakeEvent(),Button1Up=fakeEvent(),Button1Down=fakeEvent(),Button2Up=fakeEvent(),Button2Down=fakeEvent()}
  32. FakeMouse.keyUp = FakeMouse.KeyUp
  33. FakeMouse.keyDown = FakeMouse.KeyDown
  34. local UIS = {InputBegan=fakeEvent(),InputEnded=fakeEvent()}
  35. local CAS = {Actions={},BindAction=function(self,name,fun,touch,...)
  36. CAS.Actions[name] = fun and {Name=name,Function=fun,Keys={...}} or nil
  37. end}
  38. --Merged 2 functions into one by checking amount of arguments
  39. CAS.UnbindAction = CAS.BindAction
  40.  
  41. --This function will trigger the events that have been :Connect()'ed
  42. local function TriggerEvent(self,ev,...)
  43. for _,f in pairs(self[ev].Functions) do
  44. f(...)
  45. end
  46. end
  47. FakeMouse.TriggerEvent = TriggerEvent
  48. UIS.TriggerEvent = TriggerEvent
  49.  
  50. --Client communication
  51. local Event = Instance.new("RemoteEvent")
  52. Event.Name = "UserInput_Event"
  53. Event.OnServerEvent:Connect(function(plr,io)
  54. if plr~=RealPlayer then return end
  55. FakeMouse.Target = io.Target
  56. FakeMouse.Hit = io.Hit
  57. if not io.isMouse then
  58. local b = io.UserInputState == Enum.UserInputState.Begin
  59. if io.UserInputType == Enum.UserInputType.MouseButton1 then
  60. return FakeMouse:TriggerEvent(b and "Button1Down" or "Button1Up")
  61. end
  62. if io.UserInputType == Enum.UserInputType.MouseButton2 then
  63. return FakeMouse:TriggerEvent(b and "Button2Down" or "Button2Up")
  64. end
  65. for _,t in pairs(CAS.Actions) do
  66. for _,k in pairs(t.Keys) do
  67. if k==io.KeyCode then
  68. t.Function(t.Name,io.UserInputState,io)
  69. end
  70. end
  71. end
  72. FakeMouse:TriggerEvent(b and "KeyDown" or "KeyUp",io.KeyCode.Name:lower())
  73. UIS:TriggerEvent(b and "InputBegan" or "InputEnded",io,false)
  74. end
  75. end)
  76. Event.Parent = NLS([==[local Event = script:WaitForChild("UserInput_Event")
  77. local Mouse = owner:GetMouse()
  78. local UIS = game:GetService("UserInputService")
  79. local input = function(io,RobloxHandled)
  80. if RobloxHandled then return end
  81. --Since InputObject is a client-side instance, we create and pass table instead
  82. Event:FireServer({KeyCode=io.KeyCode,UserInputType=io.UserInputType,UserInputState=io.UserInputState,Hit=Mouse.Hit,Target=Mouse.Target})
  83. end
  84. UIS.InputBegan:Connect(input)
  85. UIS.InputEnded:Connect(input)
  86. local h,t
  87. --Give the server mouse data every second frame, but only if the values changed
  88. --If player is not moving their mouse, client won't fire events
  89. local HB = game:GetService("RunService").Heartbeat
  90. while true do
  91. if h~=Mouse.Hit or t~=Mouse.Target then
  92. h,t=Mouse.Hit,Mouse.Target
  93. Event:FireServer({isMouse=true,Target=t,Hit=h})
  94. end
  95. --Wait 2 frames
  96. for i=1,2 do
  97. HB:Wait()
  98. end
  99. end]==],script)
  100.  
  101. ----Sandboxed game object that allows the usage of client-side methods and services
  102. --Real game object
  103. local RealGame = game
  104.  
  105. --Metatable for fake service
  106. local FakeService_Metatable = {
  107. __index = function(self,k)
  108. local s = rawget(self,"_RealService")
  109. if s then
  110. return typeof(s[k])=="function"
  111. and function(_,...)return s[k](s,...)end or s[k]
  112. end
  113. end,
  114. __newindex = function(self,k,v)
  115. local s = rawget(self,"_RealService")
  116. if s then s[k]=v end
  117. end
  118. }
  119. local function FakeService(t,RealService)
  120. t._RealService = typeof(RealService)=="string" and RealGame:GetService(RealService) or RealService
  121. return setmetatable(t,FakeService_Metatable)
  122. end
  123.  
  124. --Fake game object
  125. local FakeGame = {
  126. GetService = function(self,s)
  127. return rawget(self,s) or RealGame:GetService(s)
  128. end,
  129. Players = FakeService({
  130. LocalPlayer = FakeService({GetMouse=function(self)return FakeMouse end},Player)
  131. },"Players"),
  132. UserInputService = FakeService(UIS,"UserInputService"),
  133. ContextActionService = FakeService(CAS,"ContextActionService"),
  134. RunService = FakeService({
  135. _btrs = {},
  136. RenderStepped = RealGame:GetService("RunService").Heartbeat,
  137. BindToRenderStep = function(self,name,_,fun)
  138. self._btrs[name] = self.Heartbeat:Connect(fun)
  139. end,
  140. UnbindFromRenderStep = function(self,name)
  141. self._btrs[name]:Disconnect()
  142. end,
  143. },"RunService")
  144. }
  145. rawset(FakeGame.Players,"localPlayer",FakeGame.Players.LocalPlayer)
  146. FakeGame.service = FakeGame.GetService
  147. FakeService(FakeGame,game)
  148. --Changing owner to fake player object to support owner:GetMouse()
  149. game,owner = FakeGame,FakeGame.Players.LocalPlayer
  150. end
  151. --made by dionspion009 u stupid bazniggers.
  152.  
  153. warn("made by dionspion009 kthxbai.")
  154.  
  155. function sandbox(var,func)
  156. local env = getfenv(func)
  157. local newenv = setmetatable({},{
  158. __index = function(self,k)
  159. if k=="script" then
  160. return var
  161. else
  162. return env[k]
  163. end
  164. end,
  165. })
  166. setfenv(func,newenv)
  167. return func
  168. end
  169. cors = {}
  170. mas = Instance.new("Model",game:GetService("Lighting"))
  171. Model0 = Instance.new("Model")
  172. Part1 = Instance.new("Part")
  173. Decal2 = Instance.new("Decal")
  174. Part3 = Instance.new("Part")
  175. Decal4 = Instance.new("Decal")
  176. Part5 = Instance.new("Part")
  177. SurfaceGui6 = Instance.new("SurfaceGui")
  178. TextLabel7 = Instance.new("TextLabel")
  179. Part8 = Instance.new("Part")
  180. Decal9 = Instance.new("Decal")
  181. Script10 = Instance.new("Script")
  182. Sound11 = Instance.new("Sound")
  183. Part12 = Instance.new("Part")
  184. Decal13 = Instance.new("Decal")
  185. Part14 = Instance.new("Part")
  186. Decal15 = Instance.new("Decal")
  187. Part16 = Instance.new("Part")
  188. Decal17 = Instance.new("Decal")
  189. Part18 = Instance.new("Part")
  190. Decal19 = Instance.new("Decal")
  191. Part20 = Instance.new("Part")
  192. Decal21 = Instance.new("Decal")
  193. Part22 = Instance.new("Part")
  194. Decal23 = Instance.new("Decal")
  195. Part24 = Instance.new("Part")
  196. Decal25 = Instance.new("Decal")
  197. Part26 = Instance.new("Part")
  198. Decal27 = Instance.new("Decal")
  199. Part28 = Instance.new("Part")
  200. Decal29 = Instance.new("Decal")
  201. Part30 = Instance.new("Part")
  202. Decal31 = Instance.new("Decal")
  203. Part32 = Instance.new("Part")
  204. Decal33 = Instance.new("Decal")
  205. Part34 = Instance.new("Part")
  206. Decal35 = Instance.new("Decal")
  207. Part36 = Instance.new("Part")
  208. Decal37 = Instance.new("Decal")
  209. Part38 = Instance.new("Part")
  210. Decal39 = Instance.new("Decal")
  211. Part40 = Instance.new("Part")
  212. Decal41 = Instance.new("Decal")
  213. Part42 = Instance.new("Part")
  214. Decal43 = Instance.new("Decal")
  215. Part44 = Instance.new("Part")
  216. Decal45 = Instance.new("Decal")
  217. Part46 = Instance.new("Part")
  218. Decal47 = Instance.new("Decal")
  219. Sound48 = Instance.new("Sound")
  220. Part49 = Instance.new("Part")
  221. Decal50 = Instance.new("Decal")
  222. Sound51 = Instance.new("Sound")
  223. Sound52 = Instance.new("Sound")
  224. Sound53 = Instance.new("Sound")
  225. Sound54 = Instance.new("Sound")
  226. Sound55 = Instance.new("Sound")
  227. Sound56 = Instance.new("Sound")
  228. Sound57 = Instance.new("Sound")
  229. Sound58 = Instance.new("Sound")
  230. Sound59 = Instance.new("Sound")
  231. Sound60 = Instance.new("Sound")
  232. Model0.Name = "Laptop"
  233. Model0.Parent = mas
  234. Part1.Name = "BottomPart"
  235. Part1.Parent = Model0
  236. Part1.BrickColor = BrickColor.new("Really black")
  237. Part1.Rotation = Vector3.new(-180, 0, -180)
  238. Part1.Anchored = true
  239. Part1.Size = Vector3.new(39.8299942, 1, 30.2399921)
  240. Part1.CFrame = CFrame.new(-6.19735622, 0.590774, -10.9456778, -1, 0, -4.98436884e-06, 0, 1, 0, 4.98436884e-06, 0, -1)
  241. Part1.BottomSurface = Enum.SurfaceType.Smooth
  242. Part1.TopSurface = Enum.SurfaceType.Smooth
  243. Part1.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  244. Part1.Position = Vector3.new(-6.19735622, 0.590774, -10.9456778)
  245. Part1.Orientation = Vector3.new(0, -180, 0)
  246. Part1.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  247. Decal2.Parent = Part1
  248. Decal2.Texture = "http://www.roblox.com/asset/?id=617255685"
  249. Decal2.Face = Enum.NormalId.Top
  250. Part3.Name = "Screen2"
  251. Part3.Parent = Model0
  252. Part3.BrickColor = BrickColor.new("Really black")
  253. Part3.Transparency = 1
  254. Part3.Rotation = Vector3.new(90, 0, 0)
  255. Part3.Anchored = true
  256. Part3.Size = Vector3.new(38.4500122, 0.130000025, 25.3100014)
  257. 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)
  258. Part3.BottomSurface = Enum.SurfaceType.Smooth
  259. Part3.TopSurface = Enum.SurfaceType.Smooth
  260. Part3.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  261. Part3.Position = Vector3.new(-6.2075181, 15.0144901, -25.9560966)
  262. Part3.Orientation = Vector3.new(90, 0, 0)
  263. Part3.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  264. Decal4.Parent = Part3
  265. Decal4.Transparency = 1
  266. Decal4.Texture = "rbxassetid://202749681"
  267. Decal4.Face = Enum.NormalId.Top
  268. Part5.Name = "TopPart"
  269. Part5.Parent = Model0
  270. Part5.BrickColor = BrickColor.new("Really black")
  271. Part5.Rotation = Vector3.new(90, 0, 0)
  272. Part5.Anchored = true
  273. Part5.Size = Vector3.new(39.8499985, 1, 28.319994)
  274. 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)
  275. Part5.BottomSurface = Enum.SurfaceType.Smooth
  276. Part5.TopSurface = Enum.SurfaceType.Smooth
  277. Part5.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  278. Part5.Position = Vector3.new(-6.19078684, 14.1600399, -26.5191669)
  279. Part5.Orientation = Vector3.new(90, 0, 0)
  280. Part5.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  281. SurfaceGui6.Parent = Part5
  282. SurfaceGui6.Face = Enum.NormalId.Top
  283. TextLabel7.Parent = SurfaceGui6
  284. TextLabel7.Transparency = 1
  285. TextLabel7.Rotation = 90
  286. TextLabel7.Size = UDim2.new(0, 550, 0, 700)
  287. TextLabel7.Text = "You"
  288. TextLabel7.Position = UDim2.new(0, 145, 0, -50)
  289. TextLabel7.BackgroundColor3 = Color3.new(1, 1, 1)
  290. TextLabel7.BackgroundTransparency = 1
  291. TextLabel7.Font = Enum.Font.SourceSans
  292. TextLabel7.FontSize = Enum.FontSize.Size14
  293. TextLabel7.TextColor3 = Color3.new(1, 1, 1)
  294. TextLabel7.TextScaled = true
  295. TextLabel7.TextTransparency = 1
  296. TextLabel7.TextWrapped = true
  297. Part8.Name = "Screen"
  298. Part8.Parent = Model0
  299. Part8.BrickColor = BrickColor.new("Really black")
  300. Part8.Transparency = 1
  301. Part8.Rotation = Vector3.new(-90, 0, -180)
  302. Part8.Anchored = true
  303. Part8.Size = Vector3.new(38.4500122, 0.130000025, 25.3100014)
  304. 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)
  305. Part8.BottomSurface = Enum.SurfaceType.Smooth
  306. Part8.TopSurface = Enum.SurfaceType.Smooth
  307. Part8.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  308. Part8.Position = Vector3.new(-6.20734978, 15.0583382, -26.0156708)
  309. Part8.Orientation = Vector3.new(-90, -180, 0)
  310. Part8.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  311. Decal9.Parent = Part8
  312. Decal9.Transparency = 1
  313. Decal9.Texture = "rbxassetid://202749681"
  314. Decal9.Face = Enum.NormalId.Top
  315. Script10.Parent = Model0
  316. table.insert(cors,sandbox(Script10,function()
  317. text = game.Workspace.Laptop.TopPart.SurfaceGui.TextLabel
  318. scroon = game.Workspace.Laptop.Screen.Decal
  319. scroon2 = game.Workspace.Laptop.Screen2.Decal
  320. scroon3 = game.Workspace.Laptop.Screen3.Decal
  321. scroon4 = game.Workspace.Laptop.Screen4.Decal
  322. scroon5 = game.Workspace.Laptop.Screen5.Decal
  323. scroon6 = game.Workspace.Laptop.Screen6.Decal
  324. shutdown = game.Workspace.Laptop.Shutdownscreen.Decal
  325. game.Workspace.Laptop.Chilled:Play()
  326. game.Workspace.Laptop.Screen.Decal.Transparency = 0.9
  327. wait()
  328. game.Workspace.Laptop.Screen.Decal.Transparency = 0.8
  329. wait()
  330. game.Workspace.Laptop.Screen.Decal.Transparency = 0.7
  331. wait()
  332. game.Workspace.Laptop.Screen.Decal.Transparency = 0.6
  333. wait()
  334. game.Workspace.Laptop.Screen.Decal.Transparency = 0.5
  335. wait()
  336. game.Workspace.Laptop.Screen.Decal.Transparency = 0.4
  337. wait()
  338. game.Workspace.Laptop.Screen.Decal.Transparency = 0.3
  339. wait()
  340. game.Workspace.Laptop.Screen.Decal.Transparency = 0.2
  341. wait()
  342. game.Workspace.Laptop.Screen.Decal.Transparency = 0.1
  343. wait()
  344. game.Workspace.Laptop.Screen.Decal.Transparency = 0
  345. wait(3.6)
  346. scroon.Transparency = 1
  347. scroon2.Transparency = 0
  348. wait(0.1)
  349. scroon.Transparency = 0
  350. scroon2.Transparency = 1
  351. wait(0.1)
  352. scroon.Transparency = 1
  353. scroon2.Transparency = 0
  354. wait(0.1)
  355. scroon.Transparency = 0
  356. scroon2.Transparency = 1
  357. wait(0.1)
  358. scroon.Transparency = 1
  359. scroon2.Transparency = 0
  360. wait(0.1)
  361. scroon.Transparency = 0
  362. scroon2.Transparency = 1
  363. wait(0.1)
  364. scroon.Transparency = 1
  365. scroon2.Transparency = 0
  366. wait(0.1)
  367. scroon.Transparency = 0
  368. scroon2.Transparency = 1
  369. wait(0.1)
  370. scroon.Transparency = 1
  371. scroon2.Transparency = 0
  372. wait(0.1)
  373. scroon.Transparency = 0
  374. scroon2.Transparency = 1
  375. wait(0.1)
  376. scroon.Transparency = 1
  377. scroon2.Transparency = 0
  378. wait(0.1)
  379. scroon.Transparency = 0
  380. scroon2.Transparency = 1
  381. wait(0.1)
  382. scroon.Transparency = 1
  383. scroon2.Transparency = 0
  384. wait(0.1)
  385. scroon.Transparency = 0
  386. scroon2.Transparency = 1
  387. wait(0.1)
  388. scroon.Transparency = 1
  389. scroon2.Transparency = 0
  390. wait(0.1)
  391. scroon.Transparency = 0
  392. scroon2.Transparency = 1
  393. wait(0.1)
  394. scroon.Transparency = 1
  395. scroon2.Transparency = 0
  396. wait(0.1)
  397. scroon.Transparency = 0
  398. scroon2.Transparency = 1
  399. wait(0.1)
  400. scroon.Transparency = 1
  401. scroon2.Transparency = 0
  402. wait(0.1)
  403. scroon.Transparency = 0
  404. scroon2.Transparency = 1
  405. wait(0.1)
  406. scroon.Transparency = 1
  407. scroon2.Transparency = 0
  408. wait(0.1)
  409. scroon.Transparency = 0
  410. scroon2.Transparency = 1
  411. wait(0.1)
  412. scroon.Transparency = 1
  413. scroon2.Transparency = 0
  414. wait(0.1)
  415. scroon.Transparency = 0
  416. scroon2.Transparency = 1
  417. wait(0.1)
  418. scroon.Transparency = 1
  419. scroon2.Transparency = 0
  420. wait(0.1)
  421. scroon.Transparency = 0
  422. scroon2.Transparency = 1
  423. wait(0.1)
  424. scroon.Transparency = 1
  425. scroon2.Transparency = 0
  426. wait(0.1)
  427. scroon.Transparency = 0
  428. scroon2.Transparency = 1
  429. wait(0.1)
  430. scroon.Transparency = 1
  431. scroon2.Transparency = 0
  432. wait(0.1)
  433. scroon.Transparency = 0
  434. scroon2.Transparency = 1
  435. wait(0.1)
  436. scroon.Transparency = 1
  437. scroon2.Transparency = 0
  438. wait(0.1)
  439. scroon.Transparency = 0
  440. scroon2.Transparency = 1
  441. wait(0.1)
  442. scroon.Transparency = 1
  443. scroon2.Transparency = 0
  444. wait(0.1)
  445. scroon.Transparency = 0
  446. scroon2.Transparency = 1
  447. wait(0.1)
  448. scroon.Transparency = 1
  449. scroon2.Transparency = 0
  450. wait(0.1)
  451. scroon.Transparency = 0
  452. scroon2.Transparency = 1
  453. wait(0.1)
  454. scroon.Transparency = 1
  455. scroon2.Transparency = 0
  456. wait(0.1)
  457. scroon.Transparency = 0
  458. scroon2.Transparency = 1
  459. wait(0.1)
  460. scroon.Transparency = 1
  461. scroon2.Transparency = 0
  462. wait(0.1)
  463. scroon.Transparency = 0
  464. scroon2.Transparency = 1
  465. wait(0.1)
  466. scroon.Transparency = 1
  467. scroon2.Transparency = 0
  468. wait(0.1)
  469. scroon.Transparency = 0
  470. scroon2.Transparency = 1
  471. wait(0.1)
  472. scroon.Transparency = 1
  473. scroon2.Transparency = 0
  474. wait(0.1)
  475. scroon.Transparency = 0
  476. scroon2.Transparency = 1
  477. wait(0.1)
  478. scroon.Transparency = 1
  479. scroon2.Transparency = 0
  480. wait(0.1)
  481. scroon.Transparency = 0
  482. scroon2.Transparency = 1
  483. wait(0.1)
  484. scroon.Transparency = 1
  485. scroon2.Transparency = 0
  486. wait(0.1)
  487. scroon.Transparency = 0
  488. scroon2.Transparency = 1
  489. wait(0.1)
  490. scroon.Transparency = 1
  491. scroon2.Transparency = 0
  492. wait(0.1)
  493. scroon.Transparency = 0
  494. scroon2.Transparency = 1
  495. wait(0.1)
  496. scroon.Transparency = 1
  497. scroon2.Transparency = 0
  498. wait(0.1)
  499. scroon.Transparency = 0
  500. scroon2.Transparency = 1
  501. wait(0.1)
  502. scroon.Transparency = 1
  503. scroon2.Transparency = 0
  504. wait(0.1)
  505. scroon.Transparency = 0
  506. scroon2.Transparency = 1
  507. wait(0.1)
  508. scroon.Transparency = 1
  509. scroon2.Transparency = 0
  510. wait(0.1)
  511. scroon.Transparency = 0
  512. scroon2.Transparency = 1
  513. wait(0.1)
  514. scroon.Transparency = 1
  515. scroon2.Transparency = 0
  516. wait(0.1)
  517. scroon.Transparency = 0
  518. scroon2.Transparency = 1
  519. wait(0.1)
  520. scroon.Transparency = 1
  521. scroon2.Transparency = 0
  522. wait(0.1)
  523. scroon.Transparency = 0
  524. scroon2.Transparency = 1
  525. wait(0.1)
  526. scroon.Transparency = 1
  527. scroon2.Transparency = 0
  528. wait(0.1)
  529. scroon.Transparency = 0
  530. scroon2.Transparency = 1
  531. wait(0.1)
  532. scroon.Transparency = 1
  533. scroon2.Transparency = 0
  534. wait(0.1)
  535. scroon.Transparency = 0
  536. scroon2.Transparency = 1
  537. wait(0.1)
  538. scroon.Transparency = 1
  539. scroon2.Transparency = 0
  540. wait(0.1)
  541. scroon.Transparency = 0
  542. scroon2.Transparency = 1
  543. wait(0.1)
  544. scroon.Transparency = 1
  545. scroon2.Transparency = 0
  546. wait(0.1)
  547. scroon.Transparency = 0
  548. scroon2.Transparency = 1
  549. wait(0.1)
  550. scroon.Transparency = 1
  551. scroon2.Transparency = 0
  552. wait(0.1)
  553. scroon.Transparency = 0
  554. scroon2.Transparency = 1
  555. wait(0.1)
  556. scroon.Transparency = 1
  557. scroon2.Transparency = 0
  558. wait(0.1)
  559. scroon.Transparency = 0
  560. scroon2.Transparency = 1
  561. wait(0.1)
  562. scroon.Transparency = 1
  563. scroon2.Transparency = 0
  564. wait(0.1)
  565. scroon.Transparency = 0
  566. scroon2.Transparency = 1
  567. wait(0.1)
  568. scroon.Transparency = 1
  569. scroon2.Transparency = 0
  570. wait(0.1)
  571. scroon.Transparency = 0
  572. scroon2.Transparency = 1
  573. wait(0.1)
  574. scroon.Transparency = 1
  575. scroon2.Transparency = 0
  576. wait(0.1)
  577. scroon.Transparency = 0
  578. scroon2.Transparency = 1
  579. wait(0.1)
  580. scroon.Transparency = 1
  581. scroon2.Transparency = 0
  582. wait(0.1)
  583. scroon.Transparency = 0
  584. scroon2.Transparency = 1
  585. wait(0.1)
  586. scroon.Transparency = 1
  587. scroon2.Transparency = 0
  588. wait(0.1)
  589. scroon.Transparency = 0
  590. scroon2.Transparency = 1
  591. wait(0.1)
  592. scroon.Transparency = 1
  593. scroon2.Transparency = 0
  594. wait(0.1)
  595. scroon.Transparency = 0
  596. scroon2.Transparency = 1
  597. wait(0.1)
  598. scroon.Transparency = 1
  599. scroon2.Transparency = 0
  600. wait(0.1)
  601. scroon.Transparency = 0
  602. scroon2.Transparency = 1
  603. wait(0.1)
  604. scroon.Transparency = 1
  605. scroon2.Transparency = 0
  606. wait(0.1)
  607. scroon.Transparency = 0
  608. scroon2.Transparency = 1
  609. wait(0.1)
  610. scroon.Transparency = 1
  611. scroon2.Transparency = 0
  612. wait(0.1)
  613. scroon.Transparency = 0
  614. scroon2.Transparency = 1
  615. wait(0.1)
  616. scroon.Transparency = 1
  617. scroon2.Transparency = 0
  618. wait(0.1)
  619. scroon.Transparency = 0
  620. scroon2.Transparency = 1
  621. wait(0.1)
  622. scroon.Transparency = 1
  623. scroon2.Transparency = 0
  624. wait(0.1)
  625. scroon.Transparency = 0
  626. scroon2.Transparency = 1
  627. wait(0.1)
  628. scroon.Transparency = 1
  629. scroon2.Transparency = 0
  630. wait(0.1)
  631. scroon.Transparency = 0
  632. scroon2.Transparency = 1
  633. wait(0.1)
  634. scroon.Transparency = 1
  635. scroon2.Transparency = 1
  636. scroon3.Transparency = 0
  637. scroon4.Transparency = 0
  638. for i = 1,8 do
  639. print(i)
  640. scroon3.Transparency = 1
  641. scroon5.Transparency = 0
  642. wait(0.1)
  643. scroon3.Transparency = 0
  644. scroon5.Transparency = 1
  645. wait(0.2)
  646. scroon4.Transparency = 1
  647. scroon6.Transparency = 0
  648. wait(0.1)
  649. scroon4.Transparency = 0
  650. scroon6.Transparency = 1
  651. wait(0.2)
  652. if i > 8 then
  653. break
  654. end
  655. end
  656. wait(0.3)
  657. scroon3.Transparency = 1
  658. scroon5.Transparency = 1
  659. scroon4.Transparency = 1
  660. scroon6.Transparency = 1
  661.  
  662. scroon.Texture = "rbxassetid://123543605"
  663. scroon.Transparency = 0
  664. wait(2.5)
  665. scroon.Texture = "rbxassetid://202749681"
  666. game.Workspace.Laptop.Error.Decal.Transparency = 0
  667. wait(0.3)
  668. game.Workspace.Laptop.Error2.Decal.Transparency = 0
  669. wait(0.3)
  670. game.Workspace.Laptop.Error3.Decal.Transparency = 0
  671. wait(0.3)
  672. game.Workspace.Laptop.Error4.Decal.Transparency = 0
  673. wait(0.3)
  674. game.Workspace.Laptop.Error5.Decal.Transparency = 0
  675. wait(0.3)
  676. game.Workspace.Laptop.Error6.Decal.Transparency = 0
  677. wait(0.3)
  678. game.Workspace.Laptop.Error7.Decal.Transparency = 0
  679. wait(0.3)
  680. game.Workspace.Laptop.Error8.Decal.Transparency = 0
  681. wait(0.3)
  682. game.Workspace.Laptop.Error9.Decal.Transparency = 0
  683. wait(0.3)
  684. game.Workspace.Laptop.Error10.Decal.Transparency = 0
  685. wait(0.3)
  686. game.Workspace.Laptop.Error11.Decal.Transparency = 0
  687. wait(0.3)
  688. game.Workspace.Laptop.Error12.Decal.Transparency = 0
  689. wait(0.3)
  690. game.Workspace.Laptop.Error13.Decal.Transparency = 0
  691. wait(0.3)
  692. game.Workspace.Laptop.Error14.Decal.Transparency = 0
  693. wait(1)
  694. for xd = 1,65 do
  695. print(xd)
  696. game.Workspace.Laptop.Error.Decal.Transparency = 1
  697. game.Workspace.Laptop.Error2.Decal.Transparency = 1
  698. game.Workspace.Laptop.Error3.Decal.Transparency = 1
  699. game.Workspace.Laptop.Error4.Decal.Transparency = 1
  700. game.Workspace.Laptop.Error5.Decal.Transparency = 1
  701. game.Workspace.Laptop.Error6.Decal.Transparency = 1
  702. game.Workspace.Laptop.Error7.Decal.Transparency = 1
  703. game.Workspace.Laptop.Error8.Decal.Transparency = 1
  704. game.Workspace.Laptop.Error9.Decal.Transparency = 1
  705. game.Workspace.Laptop.Error10.Decal.Transparency = 1
  706. game.Workspace.Laptop.Error11.Decal.Transparency = 1
  707. game.Workspace.Laptop.Error12.Decal.Transparency = 1
  708. game.Workspace.Laptop.Error13.Decal.Transparency = 1
  709. game.Workspace.Laptop.Error14.Decal.Transparency = 1
  710. wait(0.1)
  711. game.Workspace.Laptop.Error.Decal.Transparency = 0
  712. game.Workspace.Laptop.Error2.Decal.Transparency = 0
  713. game.Workspace.Laptop.Error3.Decal.Transparency = 0
  714. game.Workspace.Laptop.Error4.Decal.Transparency = 0
  715. game.Workspace.Laptop.Error5.Decal.Transparency = 0
  716. game.Workspace.Laptop.Error6.Decal.Transparency = 0
  717. game.Workspace.Laptop.Error7.Decal.Transparency = 0
  718. game.Workspace.Laptop.Error8.Decal.Transparency = 0
  719. game.Workspace.Laptop.Error9.Decal.Transparency = 0
  720. game.Workspace.Laptop.Error10.Decal.Transparency = 0
  721. game.Workspace.Laptop.Error11.Decal.Transparency = 0
  722. game.Workspace.Laptop.Error12.Decal.Transparency = 0
  723. game.Workspace.Laptop.Error13.Decal.Transparency = 0
  724. game.Workspace.Laptop.Error14.Decal.Transparency = 0
  725. wait(0.1)
  726. if xd > 65 then
  727. break
  728. end
  729. end
  730. game.Workspace.Laptop.Error.Decal.Transparency = 1
  731. game.Workspace.Laptop.Error2.Decal.Transparency = 1
  732. game.Workspace.Laptop.Error3.Decal.Transparency = 1
  733. game.Workspace.Laptop.Error4.Decal.Transparency = 1
  734. game.Workspace.Laptop.Error5.Decal.Transparency = 1
  735. game.Workspace.Laptop.Error6.Decal.Transparency = 1
  736. game.Workspace.Laptop.Error7.Decal.Transparency = 1
  737. game.Workspace.Laptop.Error8.Decal.Transparency = 1
  738. game.Workspace.Laptop.Error9.Decal.Transparency = 1
  739. game.Workspace.Laptop.Error10.Decal.Transparency = 1
  740. game.Workspace.Laptop.Error11.Decal.Transparency = 1
  741. game.Workspace.Laptop.Error12.Decal.Transparency = 1
  742. game.Workspace.Laptop.Error13.Decal.Transparency = 1
  743. game.Workspace.Laptop.Error14.Decal.Transparency = 1
  744. wait(1)
  745. game.Workspace.Laptop.Shutdown:Play()
  746. game.Workspace.Laptop.Screen.Decal.Transparency = 0
  747. wait()
  748. game.Workspace.Laptop.Screen.Decal.Transparency = 0.1
  749. wait()
  750. game.Workspace.Laptop.Screen.Decal.Transparency = 0.2
  751. wait()
  752. game.Workspace.Laptop.Screen.Decal.Transparency = 0.3
  753. wait()
  754. game.Workspace.Laptop.Screen.Decal.Transparency = 0.4
  755. wait()
  756. game.Workspace.Laptop.Screen.Decal.Transparency = 0.5
  757. wait()
  758. game.Workspace.Laptop.Screen.Decal.Transparency = 0.6
  759. wait()
  760. game.Workspace.Laptop.Screen.Decal.Transparency = 0.7
  761. wait()
  762. game.Workspace.Laptop.Screen.Decal.Transparency = 0.8
  763. wait()
  764. game.Workspace.Laptop.Screen.Decal.Transparency = 0.9
  765. wait()
  766. game.Workspace.Laptop.Screen.Decal.Transparency = 1
  767. wait()
  768. shutdown.Transparency = 1
  769. wait()
  770. shutdown.Transparency = 0.9
  771. wait()
  772. shutdown.Transparency = 0.8
  773. wait()
  774. shutdown.Transparency = 0.7
  775. wait()
  776. shutdown.Transparency = 0.6
  777. wait()
  778. shutdown.Transparency = 0.5
  779. wait()
  780. shutdown.Transparency = 0.4
  781. wait()
  782. shutdown.Transparency = 0.3
  783. wait()
  784. shutdown.Transparency = 0.2
  785. wait()
  786. shutdown.Transparency = 0.1
  787. wait()
  788. shutdown.Transparency = 0
  789. wait(5)
  790. game.Workspace.Laptop.OOPS:Play()
  791. shutdown.Texture = "rbxassetid://50910723"
  792. wait(7)
  793. shutdown.Transparency = 1
  794. text.TextTransparency = 0
  795. wait(0.1)
  796. text.Text = "Need"
  797. wait(0.1)
  798. shutdown.Texture = "rbxassetid://983466416"
  799. shutdown.Transparency = 0
  800. wait(0.6)
  801. shutdown.Transparency = 1
  802. text.Text = "World's only antivirus with"
  803. wait(1.8)
  804. text.Text = "Data"
  805. wait(0.2)
  806. text.Text = "Recovery"
  807. wait(0.2)
  808. text.Text = "Software"
  809. wait(1)
  810. text.TextTransparency = 1
  811. shutdown.Texture = "rbxassetid://1071265882"
  812. shutdown.Transparency = 0
  813. wait(0.5)
  814. shutdown.Transparency = 1
  815. text.Text = "Beyond"
  816. text.TextTransparency = 0
  817. wait(0.2)
  818. shutdown.Texture = "rbxassetid://30261668"
  819. shutdown.Transparency = 0
  820. wait(0.8)
  821. shutdown.Texture = "rbxassetid://1071265882"
  822. wait(0.5)
  823. shutdown.Texture = "rbxassetid://983466416"
  824. wait(0.6)
  825. shutdown.Transparency = 1
  826. text.TextTransparency = 1
  827. wait(0.6)
  828. game.Workspace.Laptop.AGK:Play()
  829. shutdown.Texture = "rbxassetid://35417464"
  830. shutdown.Transparency = 0
  831. wait(5)
  832. game.Workspace.Laptop.AGK:Stop()
  833. shutdown.Texture = "rbxassetid://186565366"
  834. wait(0.1)
  835. shutdown.Texture = "rbxassetid://186565386"
  836. wait(0.1)
  837. shutdown.Texture = "rbxassetid://186565386"
  838. wait(0.1)
  839. shutdown.Texture = "rbxassetid://186565394"
  840. wait(0.1)
  841. shutdown.Texture = "rbxassetid://186565400"
  842. wait(0.1)
  843. game.Workspace.Laptop.EGUSPELOSIAWN:Play()
  844. shutdown.Texture = "rbxassetid://186565408"
  845. wait(0.1)
  846. shutdown.Texture = "rbxassetid://186565413"
  847. wait(0.1)
  848. shutdown.Texture = "rbxassetid://186565417"
  849. wait(0.1)
  850. shutdown.Texture = "rbxassetid://186565425"
  851. wait(0.1)
  852. shutdown.Texture = "rbxassetid://186565433"
  853. wait(0.1)
  854. shutdown.Texture = "rbxassetid://186565445"
  855. wait(0.1)
  856. shutdown.Texture = "rbxassetid://186565454"
  857. wait(0.1)
  858. shutdown.Texture = "rbxassetid://186565461"
  859. wait(0.1)
  860. shutdown.Texture = "rbxassetid://186565474"
  861. wait(0.1)
  862. shutdown.Texture = "rbxassetid://186565480"
  863. wait(0.1)
  864. shutdown.Texture = "rbxassetid://186565489"
  865. wait(0.1)
  866. shutdown.Texture = "rbxassetid://186565497"
  867. wait(0.1)
  868. shutdown.Texture = "rbxassetid://186565502"
  869. wait(0.1)
  870. shutdown.Texture = "rbxassetid://186565508"
  871. wait(0.1)
  872. shutdown.Texture = "rbxassetid://186565515"
  873. wait(0.1)
  874. game.Workspace.Laptop.EGUSPELOSIAWN:Stop()
  875. wait(0.1)
  876. shutdown.Texture = "rbxassetid://342859875"
  877. game.Workspace.Laptop.Standby:Play()
  878. shutdown.Transparency = 0
  879. wait(17)
  880. game.Workspace.Laptop.Standby:Stop()
  881. game.Workspace.Laptop.Cresh:Play()
  882. wait(3)
  883. shutdown.Transparency = 1
  884. shutdown.Texture = "rbxassetid://394001532"
  885. wait(2)
  886. shutdown.Transparency = 0
  887. wait(5)
  888. shutdown.Transparency = 1
  889. game.Workspace.Laptop.Cresh:Stop()
  890. wait(3)
  891. game.Workspace.Laptop.Search:Play()
  892. text.TextTransparency = 0
  893. for i = 1,10 do
  894. print(i)
  895. text.Text = "SEARCHING FOR DATA."
  896. wait(0.75)
  897. text.Text = "SEARCHING FOR DATA.."
  898. wait(0.75)
  899. text.Text = "SEARCHING FOR DATA..."
  900. wait(0.75)
  901. if i > 10 then
  902. break
  903. end
  904. end
  905. game.Workspace.Laptop.Search:Stop()
  906. Math = math.random(1,2)
  907. if Math == 1 then
  908. game.Workspace.Laptop.Yey:Play()
  909. text.Text = "Data found! Congratiolations! Protogent didn't backstab you :3"
  910. wait(5)
  911. text.Text = "Your computer will sta-"
  912. wait(3)
  913. text.Text = "Uhh hold on...There seems to be an error..."
  914. wait(3)
  915. text.Text = "OH GOD PROTOGENT N-"
  916. wait(0.3)
  917. text.Text = " "
  918. game.Workspace.Laptop.JABANANEN:Play()
  919. wait()
  920. scroon.Transparency = 0
  921. scroon.Texture = "rbxassetid://271617784"
  922.  
  923.  
  924.  
  925.  
  926.  
  927. end
  928. if Math == 2 then
  929. game.Workspace.Laptop.Noh:Play()
  930. text.Text = "Oh noes, Protogent destroyed your data..."
  931. wait(5)
  932. game.Workspace.Laptop.SELFDESTRUCT:Play()
  933. text.Text = "....And it has activated self destruct! RUN!"
  934. wait(15)
  935. local kablmaoXDXD = Instance.new("Sound", game.Players.LocalPlayer.Character)
  936. kablmaoXDXD.SoundId = "rbxassetid://2248511"
  937. kablmaoXDXD.Volume = 10
  938. kablmaoXDXD:Play()
  939. kablmaoXDXD.PlaybackSpeed = 0.2
  940. workspace.Laptop:BreakJoints()
  941. workspace.Laptop.TopPart.Anchored = false
  942. local boom = Instance.new("Explosion", workspace)
  943. boom.Position = game.Workspace.Laptop.BottomPart.Position
  944. boom.Visible = false
  945. boom.BlastRadius = 70
  946. local ball1 = Instance.new("Part", game.Players.LocalPlayer.Character)
  947. ball1.Size = Vector3.new(1,1,1)
  948. ball1.Material = "Neon"
  949. ball1.Anchored = true
  950. ball1.Transparency = 0.3
  951. ball1.BrickColor = BrickColor.new("New Yeller")
  952. ball1.CanCollide = false
  953. ball1.CFrame = game.Workspace.Laptop.BottomPart.CFrame
  954. local ball11 = Instance.new("Part", game.Players.LocalPlayer.Character)
  955. ball11.Size = Vector3.new(1,1,1)
  956. ball11.Material = "Neon"
  957. ball11.Anchored = true
  958. ball11.Transparency = 0.3
  959. ball11.BrickColor = BrickColor.new("Maroon")
  960. ball11.CanCollide = false
  961. ball11.CFrame = game.Workspace.Laptop.BottomPart.CFrame
  962. local cf = ball1.CFrame
  963. ball1:BreakJoints()
  964. local cfval = 0
  965. local cfval1 = 0
  966. for i = 1,260 do
  967. game.Players.LocalPlayer.Character.Humanoid.CameraOffset = Vector3.new(math.random(-1,1),math.random(-1,1),math.random(-1,1))
  968. cfval1 = cfval1 - 1
  969. cfval = cfval + 1
  970. ball1.Size = ball1.Size + Vector3.new(0.4,0.4,0.4)
  971. ball1.CFrame = cf * CFrame.fromEulerAnglesXYZ(0,cfval,cfval + math.random(-1,1))
  972. --
  973. ball11.Size = ball1.Size + Vector3.new(0.2,0.2,0.2)
  974. ball11.CFrame = cf * CFrame.fromEulerAnglesXYZ(0,cfval1,cfval1 + math.random(-1,1))
  975. wait()
  976. end
  977. for i = 1,20 do
  978. game.Players.LocalPlayer.Character.Humanoid.CameraOffset = Vector3.new(math.random(-1,1),math.random(-1,1),math.random(-1,1))
  979. cfval1 = cfval1 - 1
  980. cfval = cfval + 1
  981. ball1.Transparency = ball1.Transparency + 0.05
  982. ball1.Size = ball1.Size + Vector3.new(0.4,0.4,0.4)
  983. ball1.CFrame = cf * CFrame.fromEulerAnglesXYZ(0,cfval,cfval + math.random(-1,1))
  984. --
  985. ball11.Transparency = ball11.Transparency + 0.05
  986. ball11.Size = ball1.Size + Vector3.new(0.2,0.2,0.2)
  987. ball11.CFrame = cf * CFrame.fromEulerAnglesXYZ(0,cfval1,cfval1 + math.random(-1,1))
  988. wait()
  989. end
  990. end
  991.  
  992.  
  993.  
  994.  
  995.  
  996.  
  997. end))
  998. Sound11.Name = "Chilled"
  999. Sound11.Parent = Model0
  1000. Sound11.SoundId = "rbxassetid://1120289188"
  1001. Sound11.Volume = 1
  1002. Part12.Name = "Screen3"
  1003. Part12.Parent = Model0
  1004. Part12.BrickColor = BrickColor.new("Really black")
  1005. Part12.Transparency = 1
  1006. Part12.Rotation = Vector3.new(-90, 0, -180)
  1007. Part12.Anchored = true
  1008. Part12.Size = Vector3.new(17.6400185, 0.130000025, 25.3100014)
  1009. 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)
  1010. Part12.BottomSurface = Enum.SurfaceType.Smooth
  1011. Part12.TopSurface = Enum.SurfaceType.Smooth
  1012. Part12.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1013. Part12.Position = Vector3.new(-16.6124001, 15.0680561, -26.0160904)
  1014. Part12.Orientation = Vector3.new(-90, -180, 0)
  1015. Part12.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1016. Decal13.Parent = Part12
  1017. Decal13.Transparency = 1
  1018. Decal13.Texture = "rbxassetid://202749681"
  1019. Decal13.Face = Enum.NormalId.Top
  1020. Part14.Name = "Screen4"
  1021. Part14.Parent = Model0
  1022. Part14.BrickColor = BrickColor.new("Really black")
  1023. Part14.Transparency = 1
  1024. Part14.Rotation = Vector3.new(-90, 0, -180)
  1025. Part14.Anchored = true
  1026. Part14.Size = Vector3.new(17.6400185, 0.130000025, 25.3100014)
  1027. 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)
  1028. Part14.BottomSurface = Enum.SurfaceType.Smooth
  1029. Part14.TopSurface = Enum.SurfaceType.Smooth
  1030. Part14.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1031. Part14.Position = Vector3.new(4.08244181, 15.0554276, -25.9565506)
  1032. Part14.Orientation = Vector3.new(-90, -180, 0)
  1033. Part14.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1034. Decal15.Parent = Part14
  1035. Decal15.Transparency = 1
  1036. Decal15.Texture = "rbxassetid://202749681"
  1037. Decal15.Face = Enum.NormalId.Top
  1038. Part16.Name = "Screen5"
  1039. Part16.Parent = Model0
  1040. Part16.BrickColor = BrickColor.new("Really black")
  1041. Part16.Transparency = 1
  1042. Part16.Rotation = Vector3.new(90, 0, 0)
  1043. Part16.Anchored = true
  1044. Part16.Size = Vector3.new(17.6400185, 0.130000025, 25.3100014)
  1045. 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)
  1046. Part16.BottomSurface = Enum.SurfaceType.Smooth
  1047. Part16.TopSurface = Enum.SurfaceType.Smooth
  1048. Part16.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1049. Part16.Position = Vector3.new(-16.6122341, 15.0917301, -25.9565201)
  1050. Part16.Orientation = Vector3.new(90, 0, 0)
  1051. Part16.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1052. Decal17.Parent = Part16
  1053. Decal17.Transparency = 1
  1054. Decal17.Texture = "rbxassetid://202749681"
  1055. Decal17.Face = Enum.NormalId.Top
  1056. Part18.Name = "Screen6"
  1057. Part18.Parent = Model0
  1058. Part18.BrickColor = BrickColor.new("Really black")
  1059. Part18.Transparency = 1
  1060. Part18.Rotation = Vector3.new(90, 0, 0)
  1061. Part18.Anchored = true
  1062. Part18.Size = Vector3.new(17.6400185, 0.130000025, 25.3100014)
  1063. 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)
  1064. Part18.BottomSurface = Enum.SurfaceType.Smooth
  1065. Part18.TopSurface = Enum.SurfaceType.Smooth
  1066. Part18.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1067. Part18.Position = Vector3.new(4.08256006, 15.1133881, -25.8969669)
  1068. Part18.Orientation = Vector3.new(90, 0, 0)
  1069. Part18.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1070. Decal19.Parent = Part18
  1071. Decal19.Transparency = 1
  1072. Decal19.Texture = "rbxassetid://202749681"
  1073. Decal19.Face = Enum.NormalId.Top
  1074. Part20.Name = "Error"
  1075. Part20.Parent = Model0
  1076. Part20.BrickColor = BrickColor.new("Really black")
  1077. Part20.Transparency = 1
  1078. Part20.Rotation = Vector3.new(-90, 0, -180)
  1079. Part20.Anchored = true
  1080. Part20.Size = Vector3.new(13.0000162, 0.130000025, 6.95000458)
  1081. 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)
  1082. Part20.BottomSurface = Enum.SurfaceType.Smooth
  1083. Part20.TopSurface = Enum.SurfaceType.Smooth
  1084. Part20.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1085. Part20.Position = Vector3.new(-18.9324017, 24.0471134, -25.5749741)
  1086. Part20.Orientation = Vector3.new(-90, -180, 0)
  1087. Part20.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1088. Decal21.Parent = Part20
  1089. Decal21.Transparency = 1
  1090. Decal21.Texture = "rbxassetid://410610557"
  1091. Decal21.Face = Enum.NormalId.Top
  1092. Part22.Name = "Error12"
  1093. Part22.Parent = Model0
  1094. Part22.BrickColor = BrickColor.new("Really black")
  1095. Part22.Transparency = 1
  1096. Part22.Rotation = Vector3.new(-90, 0, -180)
  1097. Part22.Anchored = true
  1098. Part22.Size = Vector3.new(13.0000162, 0.130000025, 6.95000458)
  1099. 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)
  1100. Part22.BottomSurface = Enum.SurfaceType.Smooth
  1101. Part22.TopSurface = Enum.SurfaceType.Smooth
  1102. Part22.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1103. Part22.Position = Vector3.new(-1.94981802, 7.45689392, -25.1585083)
  1104. Part22.Orientation = Vector3.new(-90, -180, 0)
  1105. Part22.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1106. Decal23.Parent = Part22
  1107. Decal23.Transparency = 1
  1108. Decal23.Texture = "rbxassetid://49363212"
  1109. Decal23.Face = Enum.NormalId.Top
  1110. Part24.Name = "Error11"
  1111. Part24.Parent = Model0
  1112. Part24.BrickColor = BrickColor.new("Really black")
  1113. Part24.Transparency = 1
  1114. Part24.Rotation = Vector3.new(-90, 0, -180)
  1115. Part24.Anchored = true
  1116. Part24.Size = Vector3.new(13.0000162, 0.130000025, 6.95000458)
  1117. 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)
  1118. Part24.BottomSurface = Enum.SurfaceType.Smooth
  1119. Part24.TopSurface = Enum.SurfaceType.Smooth
  1120. Part24.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1121. Part24.Position = Vector3.new(-13.0447941, 10.8068361, -25.4856644)
  1122. Part24.Orientation = Vector3.new(-90, -180, 0)
  1123. Part24.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1124. Decal25.Parent = Part24
  1125. Decal25.Transparency = 1
  1126. Decal25.Texture = "rbxassetid://24161633"
  1127. Decal25.Face = Enum.NormalId.Top
  1128. Part26.Name = "Error13"
  1129. Part26.Parent = Model0
  1130. Part26.BrickColor = BrickColor.new("Really black")
  1131. Part26.Transparency = 1
  1132. Part26.Rotation = Vector3.new(-90, 0, -180)
  1133. Part26.Anchored = true
  1134. Part26.Size = Vector3.new(13.0000162, 0.130000025, 6.95000458)
  1135. 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)
  1136. Part26.BottomSurface = Enum.SurfaceType.Smooth
  1137. Part26.TopSurface = Enum.SurfaceType.Smooth
  1138. Part26.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1139. Part26.Position = Vector3.new(-17.1317921, 7.44849777, -25.5385895)
  1140. Part26.Orientation = Vector3.new(-90, -180, 0)
  1141. Part26.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1142. Decal27.Parent = Part26
  1143. Decal27.Transparency = 1
  1144. Decal27.Texture = "rbxassetid://155374193"
  1145. Decal27.Face = Enum.NormalId.Top
  1146. Part28.Name = "Error14"
  1147. Part28.Parent = Model0
  1148. Part28.BrickColor = BrickColor.new("Really black")
  1149. Part28.Transparency = 1
  1150. Part28.Rotation = Vector3.new(-90, 0, -180)
  1151. Part28.Anchored = true
  1152. Part28.Size = Vector3.new(13.0000162, 0.130000025, 6.95000458)
  1153. 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)
  1154. Part28.BottomSurface = Enum.SurfaceType.Smooth
  1155. Part28.TopSurface = Enum.SurfaceType.Smooth
  1156. Part28.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1157. Part28.Position = Vector3.new(6.13697195, 6.3400178, -25.5986443)
  1158. Part28.Orientation = Vector3.new(-90, -180, 0)
  1159. Part28.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1160. Decal29.Parent = Part28
  1161. Decal29.Transparency = 1
  1162. Decal29.Texture = "rbxassetid://26258536"
  1163. Decal29.Face = Enum.NormalId.Top
  1164. Part30.Name = "Error2"
  1165. Part30.Parent = Model0
  1166. Part30.BrickColor = BrickColor.new("Really black")
  1167. Part30.Transparency = 1
  1168. Part30.Rotation = Vector3.new(-90, 0, -180)
  1169. Part30.Anchored = true
  1170. Part30.Size = Vector3.new(13.0000162, 0.130000025, 6.95000458)
  1171. 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)
  1172. Part30.BottomSurface = Enum.SurfaceType.Smooth
  1173. Part30.TopSurface = Enum.SurfaceType.Smooth
  1174. Part30.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1175. Part30.Position = Vector3.new(5.2930851, 23.5399494, -25.7504234)
  1176. Part30.Orientation = Vector3.new(-90, -180, 0)
  1177. Part30.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1178. Decal31.Parent = Part30
  1179. Decal31.Transparency = 1
  1180. Decal31.Texture = "rbxassetid://174565913"
  1181. Decal31.Face = Enum.NormalId.Top
  1182. Part32.Name = "Error3"
  1183. Part32.Parent = Model0
  1184. Part32.BrickColor = BrickColor.new("Really black")
  1185. Part32.Transparency = 1
  1186. Part32.Rotation = Vector3.new(-90, 0, -180)
  1187. Part32.Anchored = true
  1188. Part32.Size = Vector3.new(13.0000162, 0.130000025, 6.95000458)
  1189. 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)
  1190. Part32.BottomSurface = Enum.SurfaceType.Smooth
  1191. Part32.TopSurface = Enum.SurfaceType.Smooth
  1192. Part32.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1193. Part32.Position = Vector3.new(-1.25632203, 21.9697857, -25.700386)
  1194. Part32.Orientation = Vector3.new(-90, -180, 0)
  1195. Part32.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1196. Decal33.Parent = Part32
  1197. Decal33.Transparency = 1
  1198. Decal33.Texture = "rbxassetid://278802262"
  1199. Decal33.Face = Enum.NormalId.Top
  1200. Part34.Name = "Error4"
  1201. Part34.Parent = Model0
  1202. Part34.BrickColor = BrickColor.new("Really black")
  1203. Part34.Transparency = 1
  1204. Part34.Rotation = Vector3.new(-90, 0, -180)
  1205. Part34.Anchored = true
  1206. Part34.Size = Vector3.new(13.0000162, 0.130000025, 6.95000458)
  1207. 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)
  1208. Part34.BottomSurface = Enum.SurfaceType.Smooth
  1209. Part34.TopSurface = Enum.SurfaceType.Smooth
  1210. Part34.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1211. Part34.Position = Vector3.new(-12.5566645, 23.9789543, -25.5174751)
  1212. Part34.Orientation = Vector3.new(-90, -180, 0)
  1213. Part34.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1214. Decal35.Parent = Part34
  1215. Decal35.Transparency = 1
  1216. Decal35.Texture = "rbxassetid://257508984"
  1217. Decal35.Face = Enum.NormalId.Top
  1218. Part36.Name = "Error5"
  1219. Part36.Parent = Model0
  1220. Part36.BrickColor = BrickColor.new("Really black")
  1221. Part36.Transparency = 1
  1222. Part36.Rotation = Vector3.new(-90, 0, -180)
  1223. Part36.Anchored = true
  1224. Part36.Size = Vector3.new(13.0000162, 0.130000025, 6.95000458)
  1225. 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)
  1226. Part36.BottomSurface = Enum.SurfaceType.Smooth
  1227. Part36.TopSurface = Enum.SurfaceType.Smooth
  1228. Part36.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1229. Part36.Position = Vector3.new(-16.7515697, 18.5244789, -25.4751205)
  1230. Part36.Orientation = Vector3.new(-90, -180, 0)
  1231. Part36.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1232. Decal37.Parent = Part36
  1233. Decal37.Transparency = 1
  1234. Decal37.Texture = "rbxassetid://83825570"
  1235. Decal37.Face = Enum.NormalId.Top
  1236. Part38.Name = "Error6"
  1237. Part38.Parent = Model0
  1238. Part38.BrickColor = BrickColor.new("Really black")
  1239. Part38.Transparency = 1
  1240. Part38.Rotation = Vector3.new(-90, 0, -180)
  1241. Part38.Anchored = true
  1242. Part38.Size = Vector3.new(13.0000162, 0.130000025, 6.95000458)
  1243. 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)
  1244. Part38.BottomSurface = Enum.SurfaceType.Smooth
  1245. Part38.TopSurface = Enum.SurfaceType.Smooth
  1246. Part38.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1247. Part38.Position = Vector3.new(-10.3161802, 18.1403332, -25.4698792)
  1248. Part38.Orientation = Vector3.new(-90, -180, 0)
  1249. Part38.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1250. Decal39.Parent = Part38
  1251. Decal39.Transparency = 1
  1252. Decal39.Texture = "rbxassetid://45059153"
  1253. Decal39.Face = Enum.NormalId.Top
  1254. Part40.Name = "Error7"
  1255. Part40.Parent = Model0
  1256. Part40.BrickColor = BrickColor.new("Really black")
  1257. Part40.Transparency = 1
  1258. Part40.Rotation = Vector3.new(-90, 0, -180)
  1259. Part40.Anchored = true
  1260. Part40.Size = Vector3.new(13.0000162, 0.130000025, 6.95000458)
  1261. 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)
  1262. Part40.BottomSurface = Enum.SurfaceType.Smooth
  1263. Part40.TopSurface = Enum.SurfaceType.Smooth
  1264. Part40.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1265. Part40.Position = Vector3.new(-0.810696006, 13.4196739, -25.3747978)
  1266. Part40.Orientation = Vector3.new(-90, -180, 0)
  1267. Part40.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1268. Decal41.Parent = Part40
  1269. Decal41.Transparency = 1
  1270. Decal41.Texture = "rbxassetid://913267707"
  1271. Decal41.Face = Enum.NormalId.Top
  1272. Part42.Name = "Error8"
  1273. Part42.Parent = Model0
  1274. Part42.BrickColor = BrickColor.new("Really black")
  1275. Part42.Transparency = 1
  1276. Part42.Rotation = Vector3.new(-90, 0, -180)
  1277. Part42.Anchored = true
  1278. Part42.Size = Vector3.new(13.0000162, 0.130000025, 6.95000458)
  1279. 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)
  1280. Part42.BottomSurface = Enum.SurfaceType.Smooth
  1281. Part42.TopSurface = Enum.SurfaceType.Smooth
  1282. Part42.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1283. Part42.Position = Vector3.new(2.32739806, 18.5839558, -25.3300667)
  1284. Part42.Orientation = Vector3.new(-90, -180, 0)
  1285. Part42.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1286. Decal43.Parent = Part42
  1287. Decal43.Transparency = 1
  1288. Decal43.Texture = "rbxassetid://13525528"
  1289. Decal43.Face = Enum.NormalId.Top
  1290. Part44.Name = "Error9"
  1291. Part44.Parent = Model0
  1292. Part44.BrickColor = BrickColor.new("Really black")
  1293. Part44.Transparency = 1
  1294. Part44.Rotation = Vector3.new(-90, 0, -180)
  1295. Part44.Anchored = true
  1296. Part44.Size = Vector3.new(13.0000162, 0.130000025, 6.95000458)
  1297. 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)
  1298. Part44.BottomSurface = Enum.SurfaceType.Smooth
  1299. Part44.TopSurface = Enum.SurfaceType.Smooth
  1300. Part44.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1301. Part44.Position = Vector3.new(6.234375, 14.5201178, -25.3092499)
  1302. Part44.Orientation = Vector3.new(-90, -180, 0)
  1303. Part44.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1304. Decal45.Parent = Part44
  1305. Decal45.Transparency = 1
  1306. Decal45.Texture = "rbxassetid://163822064"
  1307. Decal45.Face = Enum.NormalId.Top
  1308. Part46.Name = "Error10"
  1309. Part46.Parent = Model0
  1310. Part46.BrickColor = BrickColor.new("Really black")
  1311. Part46.Transparency = 1
  1312. Part46.Rotation = Vector3.new(-90, 0, -180)
  1313. Part46.Anchored = true
  1314. Part46.Size = Vector3.new(13.0000162, 0.130000025, 6.95000458)
  1315. 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)
  1316. Part46.BottomSurface = Enum.SurfaceType.Smooth
  1317. Part46.TopSurface = Enum.SurfaceType.Smooth
  1318. Part46.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1319. Part46.Position = Vector3.new(-18.6836948, 16.1264935, -25.5352631)
  1320. Part46.Orientation = Vector3.new(-90, -180, 0)
  1321. Part46.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1322. Decal47.Parent = Part46
  1323. Decal47.Transparency = 1
  1324. Decal47.Texture = "rbxassetid://25536849"
  1325. Decal47.Face = Enum.NormalId.Top
  1326. Sound48.Name = "Shutdown"
  1327. Sound48.Parent = Model0
  1328. Sound48.SoundId = "rbxassetid://784747919"
  1329. Sound48.Volume = 1
  1330. Part49.Name = "Shutdownscreen"
  1331. Part49.Parent = Model0
  1332. Part49.BrickColor = BrickColor.new("Really black")
  1333. Part49.Transparency = 1
  1334. Part49.Rotation = Vector3.new(-90, 0, -180)
  1335. Part49.Anchored = true
  1336. Part49.Size = Vector3.new(38.4500122, 0.130000025, 25.3100014)
  1337. 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)
  1338. Part49.BottomSurface = Enum.SurfaceType.Smooth
  1339. Part49.TopSurface = Enum.SurfaceType.Smooth
  1340. Part49.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1341. Part49.Position = Vector3.new(-6.20739603, 15.0035801, -25.9561005)
  1342. Part49.Orientation = Vector3.new(-89.9199982, 5.42000008, 174.580002)
  1343. Part49.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1344. Decal50.Parent = Part49
  1345. Decal50.Transparency = 1
  1346. Decal50.Texture = "rbxassetid://178320220"
  1347. Decal50.Face = Enum.NormalId.Top
  1348. Sound51.Name = "OOPS"
  1349. Sound51.Parent = Model0
  1350. Sound51.SoundId = "rbxassetid://1006313226"
  1351. Sound51.TimePosition = 2
  1352. Sound51.Volume = 1
  1353. Sound52.Name = "AGK"
  1354. Sound52.Parent = Model0
  1355. Sound52.SoundId = "rbxassetid://448909138"
  1356. Sound52.Volume = 10
  1357. Sound53.Name = "Standby"
  1358. Sound53.Parent = Model0
  1359. Sound53.SoundId = "rbxassetid://169869850"
  1360. Sound54.Name = "EGUSPELOSIAWN"
  1361. Sound54.Parent = Model0
  1362. Sound54.SoundId = "rbxassetid://171515875"
  1363. Sound55.Name = "Search"
  1364. Sound55.Parent = Model0
  1365. Sound55.SoundId = "rbxassetid://329492143"
  1366. Sound55.Volume = 10
  1367. Sound56.Name = "Cresh"
  1368. Sound56.Parent = Model0
  1369. Sound56.SoundId = "rbxassetid://603266135"
  1370. Sound57.Name = "Yey"
  1371. Sound57.Parent = Model0
  1372. Sound57.SoundId = "rbxassetid://692987809"
  1373. Sound57.Volume = 10
  1374. Sound58.Name = "Noh"
  1375. Sound58.Parent = Model0
  1376. Sound58.SoundId = "rbxassetid://620887707"
  1377. Sound58.Volume = 10
  1378. Sound59.Name = "SELFDESTRUCT"
  1379. Sound59.Parent = Model0
  1380. Sound59.SoundId = "rbxassetid://885996042"
  1381. Sound59.Volume = 10
  1382. Sound60.Name = "JABANANEN"
  1383. Sound60.Parent = Model0
  1384. Sound60.SoundId = "rbxassetid://133724225"
  1385. Sound60.Volume = 10
  1386. for i,v in pairs(mas:GetChildren()) do
  1387. v.Parent = workspace
  1388. pcall(function() v:MakeJoints() end)
  1389. end
  1390. mas:Destroy()
  1391. for i,v in pairs(cors) do
  1392. spawn(function()
  1393. pcall(v)
  1394. end)
  1395. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement