Advertisement
DaOMEGAa32

fe pc boss

May 14th, 2019
194
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 23.20 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.  
  87. local h,t
  88. --Give the server mouse data every second frame, but only if the values changed
  89. --If player is not moving their mouse, client won't fire events
  90. local HB = game:GetService("RunService").Heartbeat
  91. while true do
  92. if h~=Mouse.Hit or t~=Mouse.Target then
  93. h,t=Mouse.Hit,Mouse.Target
  94. Event:FireServer({isMouse=true,Target=t,Hit=h})
  95. end
  96. --Wait 2 frames
  97. for i=1,2 do
  98. HB:Wait()
  99. end
  100. end]==],script)
  101.  
  102. ----Sandboxed game object that allows the usage of client-side methods and services
  103. --Real game object
  104. local RealGame = game
  105.  
  106. --Metatable for fake service
  107. local FakeService_Metatable = {
  108. __index = function(self,k)
  109. local s = rawget(self,"_RealService")
  110. if s then
  111. return typeof(s[k])=="function"
  112. and function(_,...)return s[k](s,...)end or s[k]
  113. end
  114. end,
  115. __newindex = function(self,k,v)
  116. local s = rawget(self,"_RealService")
  117. if s then s[k]=v end
  118. end
  119. }
  120. local function FakeService(t,RealService)
  121. t._RealService = typeof(RealService)=="string" and RealGame:GetService(RealService) or RealService
  122. return setmetatable(t,FakeService_Metatable)
  123. end
  124.  
  125. --Fake game object
  126. local FakeGame = {
  127. GetService = function(self,s)
  128. return rawget(self,s) or RealGame:GetService(s)
  129. end,
  130. Players = FakeService({
  131. LocalPlayer = FakeService({GetMouse=function(self)return FakeMouse end},Player)
  132. },"Players"),
  133. UserInputService = FakeService(UIS,"UserInputService"),
  134. ContextActionService = FakeService(CAS,"ContextActionService"),
  135. RunService = FakeService({
  136. _btrs = {},
  137. RenderStepped = RealGame:GetService("RunService").Heartbeat,
  138. BindToRenderStep = function(self,name,_,fun)
  139. self._btrs[name] = self.Heartbeat:Connect(fun)
  140. end,
  141. UnbindFromRenderStep = function(self,name)
  142. self._btrs[name]:Disconnect()
  143. end,
  144. },"RunService")
  145. }
  146. rawset(FakeGame.Players,"localPlayer",FakeGame.Players.LocalPlayer)
  147. FakeGame.service = FakeGame.GetService
  148. FakeService(FakeGame,game)
  149. --Changing owner to fake player object to support owner:GetMouse()
  150. game,owner = FakeGame,FakeGame.Players.LocalPlayer
  151. end
  152.  
  153. --made by dion stupid bamzookis
  154. warn("made by dion stupid bamzookis jk luv u all <3")
  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. Decal3 = Instance.new("Decal")
  175. Decal4 = Instance.new("Decal")
  176. Decal5 = Instance.new("Decal")
  177. Part6 = Instance.new("Part")
  178. Decal7 = Instance.new("Decal")
  179. Part8 = Instance.new("Part")
  180. Script9 = Instance.new("Script")
  181. Sound10 = Instance.new("Sound")
  182. Sound11 = Instance.new("Sound")
  183. Sound12 = Instance.new("Sound")
  184. Sound13 = Instance.new("Sound")
  185. Sound14 = Instance.new("Sound")
  186. Sound15 = Instance.new("Sound")
  187. Sound16 = Instance.new("Sound")
  188. Sound17 = Instance.new("Sound")
  189. Sound18 = Instance.new("Sound")
  190. Sound19 = Instance.new("Sound")
  191. Sound20 = Instance.new("Sound")
  192. Sound21 = Instance.new("Sound")
  193. Model0.Name = "leppie"
  194. Model0.Parent = mas
  195. Model0.PrimaryPart = Part6
  196. Part1.Name = "Screen"
  197. Part1.Parent = Model0
  198. Part1.BrickColor = BrickColor.new("Maroon")
  199. Part1.Rotation = Vector3.new(-180, 0, -180)
  200. Part1.Anchored = true
  201. Part1.Size = Vector3.new(75.8799591, 55.930027, 1.35998762)
  202. Part1.CFrame = CFrame.new(13.20014, -31.7921829, -39.5804062, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  203. Part1.BottomSurface = Enum.SurfaceType.Smooth
  204. Part1.TopSurface = Enum.SurfaceType.Smooth
  205. Part1.Color = Color3.new(0.458824, 0, 0)
  206. Part1.Position = Vector3.new(13.20014, -31.7921829, -39.5804062)
  207. Part1.Orientation = Vector3.new(0, 180, 0)
  208. Part1.Color = Color3.new(0.458824, 0, 0)
  209. Decal2.Name = "face"
  210. Decal2.Parent = Part1
  211. Decal2.Texture = "rbxassetid://90662479"
  212. Decal3.Name = "eyes"
  213. Decal3.Parent = Part1
  214. Decal3.Texture = "rbxassetid://90662469"
  215. Decal4.Name = "mouth"
  216. Decal4.Parent = Part1
  217. Decal5.Name = "breek"
  218. Decal5.Parent = Part1
  219. Decal5.Transparency = 1
  220. Decal5.Texture = "rbxassetid://1186442668"
  221. Part6.Name = "Keyboard"
  222. Part6.Parent = Model0
  223. Part6.BrickColor = BrickColor.new("Really black")
  224. Part6.Rotation = Vector3.new(-180, 0, -180)
  225. Part6.Anchored = true
  226. Part6.Size = Vector3.new(79.1299744, 1, 69.2299881)
  227. Part6.CFrame = CFrame.new(13.20014, -62.288559, -4.82504272, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  228. Part6.BottomSurface = Enum.SurfaceType.Smooth
  229. Part6.TopSurface = Enum.SurfaceType.Smooth
  230. Part6.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  231. Part6.Position = Vector3.new(13.20014, -62.288559, -4.82504272)
  232. Part6.Orientation = Vector3.new(0, 180, 0)
  233. Part6.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  234. Decal7.Parent = Part6
  235. Decal7.Texture = "http://www.roblox.com/asset/?id=244679164"
  236. Decal7.Face = Enum.NormalId.Top
  237. Part8.Name = "Toppart"
  238. Part8.Parent = Model0
  239. Part8.BrickColor = BrickColor.new("Really black")
  240. Part8.Rotation = Vector3.new(-180, 0, 0)
  241. Part8.Anchored = true
  242. Part8.Size = Vector3.new(79.1299744, 60.3200264, 1.35998762)
  243. Part8.CFrame = CFrame.new(13.20014, -31.7921829, -39.7079086, 1, 0, 0, 0, -1, 0, 0, 0, -1)
  244. Part8.BottomSurface = Enum.SurfaceType.Smooth
  245. Part8.TopSurface = Enum.SurfaceType.Smooth
  246. Part8.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  247. Part8.Position = Vector3.new(13.20014, -31.7921829, -39.7079086)
  248. Part8.Orientation = Vector3.new(0, 180, 180)
  249. Part8.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  250. Script9.Parent = Model0
  251. table.insert(cors,sandbox(Script9,function()
  252. leppie = script.Parent
  253. keyboard = script.Parent.Keyboard
  254. screen = script.Parent.Screen
  255. top = script.Parent.Toppart
  256. eyes = leppie.Screen.eyes
  257. face = leppie.Screen.face
  258. mouth = leppie.Screen.mouth
  259.  
  260. local puddle = Instance.new("Part", workspace)
  261. puddle.Transparency = 1
  262. puddle.Anchored = true
  263. puddle.CanCollide = false
  264. puddle.Locked = true
  265. puddle.Position = Vector3.new(13.2, 0.386, -4.825)
  266. puddle.BrickColor = BrickColor.new("Really red")
  267. puddle.Shape = "Cylinder"
  268. puddle.Size = Vector3.new(0.6, 129.53, 132.12)
  269. puddle.Orientation = Vector3.new(0,0,90)
  270. puddle.Material = "Neon"
  271.  
  272. wait(1)
  273. script.Parent.Screen.face.Transparency = 0
  274. script.Parent.portal:Play()
  275. puddle.Transparency = 0.9
  276. wait()
  277. puddle.Transparency = 0.8
  278. wait()
  279. puddle.Transparency = 0.7
  280. wait()
  281. puddle.Transparency = 0.6
  282. wait()
  283. puddle.Transparency = 0.5
  284. wait()
  285. puddle.Transparency = 0.4
  286. wait()
  287. puddle.Transparency = 0.3
  288. wait()
  289. puddle.Transparency = 0.2
  290. wait()
  291. puddle.Transparency = 0.1
  292. wait()
  293. puddle.Transparency = 0
  294. wait(3)
  295. script.Parent.quake:Play()
  296. wait(1)
  297. script.Parent.intro:Play()
  298.  
  299. for i = 1,500 do
  300. leppie:SetPrimaryPartCFrame(leppie:GetPrimaryPartCFrame() * CFrame.new(0,0.125,0))
  301. wait()
  302. end
  303. script.Parent.quake:Stop()
  304. wait(3)
  305. script.Parent.intro:Stop()
  306. wait()
  307. puddle.Transparency = 0
  308. wait()
  309. puddle.Transparency = 0.1
  310. wait()
  311. puddle.Transparency = 0.2
  312. wait()
  313. puddle.Transparency = 0.3
  314. wait()
  315. puddle.Transparency = 0.4
  316. wait()
  317. puddle.Transparency = 0.5
  318. wait()
  319. puddle.Transparency = 0.6
  320. wait()
  321. puddle.Transparency = 0.7
  322. wait()
  323. puddle.Transparency = 0.8
  324. wait()
  325. puddle.Transparency = 0.9
  326. wait()
  327. puddle.Transparency = 1
  328. wait()
  329. puddle:Destroy()
  330. wait(1)
  331. leppie.Screen.face.Transparency = 1
  332. leppie.Screen.eyes.Transparency = 0
  333. leppie.Screen.mouth.Transparency = 0
  334. leppie.taunt:Play()
  335. wait()
  336. mouth.Texture = "http://www.roblox.com/asset/?id=920432772"
  337. wait(0.1)
  338. mouth.Texture = "http://www.roblox.com/asset/?id=920432367"
  339. wait(0.1)
  340. mouth.Texture = "http://www.roblox.com/asset/?id=920432772"
  341. wait(0.3)
  342. mouth.Texture = "http://www.roblox.com/asset/?id=920435550"
  343. wait(0.1)
  344. mouth.Texture = "http://www.roblox.com/asset/?id=920434668"
  345. wait()
  346. mouth.Texture = "http://www.roblox.com/asset/?id=920434523"
  347. wait(0.2)
  348. mouth.Texture = "http://www.roblox.com/asset/?id=920434815"
  349. wait(0.2)
  350. mouth.Texture = "http://www.roblox.com/asset/?id=920432772"
  351. wait(0.1)
  352. mouth.Texture = "http://www.roblox.com/asset/?id=920435550"
  353. wait(0.2)
  354. mouth.Texture = "http://www.roblox.com/asset/?id=920432772"
  355. wait(0.2)
  356. mouth.Texture = "http://www.roblox.com/asset/?id=920434524"
  357. wait()
  358. mouth.Texture = "http://www.roblox.com/asset/?id=920432367"
  359. wait(0.1)
  360. mouth.Texture = "http://www.roblox.com/asset/?id=920434668"
  361. wait(0.2)
  362. mouth.Texture = "http://www.roblox.com/asset/?id=920432367"
  363. wait()
  364. mouth.Texture = "http://www.roblox.com/asset/?id=920434949"
  365. wait(0.1)
  366. mouth.Texture = "http://www.roblox.com/asset/?id=920432772"
  367. wait()
  368. mouth.Texture = "http://www.roblox.com/asset/?id=920435550"
  369. wait(0.2)
  370. mouth.Texture = "http://www.roblox.com/asset/?id=920432772"
  371. wait()
  372. mouth.Texture = "http://www.roblox.com/asset/?id=920432367"
  373. wait(0.1)
  374. mouth.Texture = "http://www.roblox.com/asset/?id=920432772"
  375. wait(1)
  376. mouth.Transparency = 1
  377. eyes.Transparency = 1
  378. face.Texture = "http://www.roblox.com/asset/?id=90662479"
  379. face.Transparency = 0
  380. wait(2)
  381. eyes.Texture = "http://www.roblox.com/asset/?id=1136339833"
  382. mouth.Texture = "http://www.roblox.com/asset/?id=920432772"
  383. face.Transparency = 1
  384. eyes.Transparency = 0
  385. mouth.Transparency = 0
  386. script.Parent.laugh:Play()
  387. wait()
  388. mouth.Texture = "http://www.roblox.com/asset/?id=920432367"
  389. wait(0.8)
  390. mouth.Texture = "http://www.roblox.com/asset/?id=920434523"
  391. wait(0.1)
  392. mouth.Texture = "http://www.roblox.com/asset/?id=920432367"
  393. wait(0.1)
  394. mouth.Texture = "http://www.roblox.com/asset/?id=920434523"
  395. wait(0.1)
  396. mouth.Texture = "http://www.roblox.com/asset/?id=920432367"
  397. wait(0.1)
  398. mouth.Texture = "http://www.roblox.com/asset/?id=920434523"
  399. wait(0.1)
  400. mouth.Texture = "http://www.roblox.com/asset/?id=920432367"
  401. wait(0.1)
  402. mouth.Texture = "http://www.roblox.com/asset/?id=920434523"
  403. wait(0.1)
  404. mouth.Texture = "http://www.roblox.com/asset/?id=920432367"
  405. wait(0.1)
  406. mouth.Texture = "http://www.roblox.com/asset/?id=920434523"
  407. wait(0.1)
  408. mouth.Texture = "http://www.roblox.com/asset/?id=920432367"
  409. wait(0.1)
  410. leppie.laugh:Stop()
  411. mouth.Transparency = 1
  412. eyes.Transparency = 1
  413. face.Transparency = 0
  414. leppie.static:Play()
  415. face.Texture = "http://www.roblox.com/asset/?id=1437986267"
  416. wait(0.1)
  417. face.Texture = "http://www.roblox.com/asset/?id=161123846"
  418. wait(0.1)
  419. face.Texture = "http://www.roblox.com/asset/?id=1437986267"
  420. wait(0.1)
  421. face.Texture = "http://www.roblox.com/asset/?id=161123846"
  422. wait(0.1)
  423. face.Texture = "http://www.roblox.com/asset/?id=1437986267"
  424. wait(0.1)
  425. face.Texture = "http://www.roblox.com/asset/?id=161123846"
  426. wait(0.1)
  427. face.Texture = "http://www.roblox.com/asset/?id=1437986267"
  428. wait(0.1)
  429. face.Texture = "http://www.roblox.com/asset/?id=161123846"
  430. wait(0.1)
  431. leppie.static:Stop()
  432. wait()
  433. leppie.milkncereal:Play()
  434. face.Texture = "http://www.roblox.com/asset/?id=1452644310"
  435. wait(0.5)
  436. face.Texture = "http://www.roblox.com/asset/?id=1454229375"
  437. wait(0.5)
  438. face.Texture = "http://www.roblox.com/asset/?id=1452644930"
  439. wait(0.75)
  440. face.Texture = "http://www.roblox.com/asset/?id=1452644310"
  441. wait(0.4)
  442. face.Texture = "http://www.roblox.com/asset/?id=1454229375"
  443. wait(0.4)
  444. face.Texture = "http://www.roblox.com/asset/?id=1452644930"
  445. wait(0.60)
  446. face.Texture = "http://www.roblox.com/asset/?id=1452644310"
  447. wait(0.4)
  448. face.Texture = "http://www.roblox.com/asset/?id=1454229375"
  449. wait(0.4)
  450. face.Texture = "http://www.roblox.com/asset/?id=1452644930"
  451. wait(0.60)
  452. face.Texture = "http://www.roblox.com/asset/?id=1452644930"
  453. wait(0.2)
  454. face.Texture = "http://www.roblox.com/asset/?id=1454229375"
  455. wait(0.2)
  456. face.Texture = "http://www.roblox.com/asset/?id=1452644310"
  457. wait(0.2)
  458. leppie.milkncereal:Stop()
  459. leppie.static:Play()
  460. face.Texture = "http://www.roblox.com/asset/?id=1437986267"
  461. wait(0.1)
  462. face.Texture = "http://www.roblox.com/asset/?id=161123846"
  463. wait(0.1)
  464. face.Texture = "http://www.roblox.com/asset/?id=1437986267"
  465. wait(0.1)
  466. face.Texture = "http://www.roblox.com/asset/?id=161123846"
  467. wait(0.1)
  468. face.Texture = "http://www.roblox.com/asset/?id=1437986267"
  469. wait(0.1)
  470. face.Texture = "http://www.roblox.com/asset/?id=161123846"
  471. wait(0.1)
  472. face.Texture = "http://www.roblox.com/asset/?id=1437986267"
  473. wait(0.1)
  474. face.Texture = "http://www.roblox.com/asset/?id=161123846"
  475. wait(0.1)
  476. leppie.static:Stop()
  477. leppie.reee:Play()
  478. face.Texture = "http://www.roblox.com/asset/?id=1342394240"
  479. wait(1)
  480. face.Texture = "http://www.roblox.com/asset/?id=48129430"
  481. wait(3)
  482. leppie.static:Play()
  483. face.Texture = "http://www.roblox.com/asset/?id=1437986267"
  484. wait(0.1)
  485. face.Texture = "http://www.roblox.com/asset/?id=161123846"
  486. wait(0.1)
  487. face.Texture = "http://www.roblox.com/asset/?id=1437986267"
  488. wait(0.1)
  489. face.Texture = "http://www.roblox.com/asset/?id=161123846"
  490. wait(0.1)
  491. face.Texture = "http://www.roblox.com/asset/?id=1437986267"
  492. wait(0.1)
  493. face.Texture = "http://www.roblox.com/asset/?id=161123846"
  494. wait(0.1)
  495. face.Texture = "http://www.roblox.com/asset/?id=1437986267"
  496. wait(0.1)
  497. face.Texture = "http://www.roblox.com/asset/?id=161123846"
  498. wait(0.1)
  499. leppie.static:Stop()
  500. wait()
  501. face.Texture = "http://www.roblox.com/asset/?id=873240105"
  502. wait(0.3)
  503. leppie.static:Play()
  504. face.Texture = "http://www.roblox.com/asset/?id=1437986267"
  505. wait(0.1)
  506. face.Texture = "http://www.roblox.com/asset/?id=161123846"
  507. wait(0.1)
  508. face.Texture = "http://www.roblox.com/asset/?id=1437986267"
  509. wait(0.1)
  510. face.Texture = "http://www.roblox.com/asset/?id=161123846"
  511. wait(0.1)
  512. face.Texture = "http://www.roblox.com/asset/?id=1437986267"
  513. leppie.static:Stop()
  514. wait(0.05)
  515. leppie.static:Play()
  516. face.Texture = "http://www.roblox.com/asset/?id=1437986267"
  517. wait(0.1)
  518. face.Texture = "http://www.roblox.com/asset/?id=161123846"
  519. wait(0.1)
  520. face.Texture = "http://www.roblox.com/asset/?id=1437986267"
  521. leppie.static:Stop()
  522. face.Transparency = 1
  523. eyes.Texture = "http://www.roblox.com/asset/?id=238113668"
  524. eyes.Transparency = 0
  525. mouth.Texture = "http://www.roblox.com/asset/?id=377495903"
  526. mouth.Transparency = 0
  527. leppie.tooterals:Play()
  528. wait(3.2)
  529. eyes.Texture = "http://www.roblox.com/asset/?id=1136341716"
  530. mouth.Texture = "http://www.roblox.com/asset/?id=920432772"
  531. wait(0.1)
  532. mouth.Texture = "http://www.roblox.com/asset/?id=920435550"
  533. wait(0.2)
  534. mouth.Texture = "http://www.roblox.com/asset/?id=591848611"
  535. eyes.Transparency = 1
  536. wait(2)
  537. eyes.Transparency = 0
  538. eyes.Texture = "http://www.roblox.com/asset/?id=1136341716"
  539. mouth.Texture = "http://www.roblox.com/asset/?id=920432772"
  540. wait(0.1)
  541. mouth.Texture = "http://www.roblox.com/asset/?id=920435550"
  542. wait(0.1)
  543. mouth.Texture = "http://www.roblox.com/asset/?id=920434949"
  544. wait(2)
  545. mouth.Texture = "http://www.roblox.com/asset/?id=920432772"
  546. wait(0.1)
  547. mouth.Texture = "http://www.roblox.com/asset/?id=920435550"
  548. wait(0.1)
  549. mouth.Texture = "http://www.roblox.com/asset/?id=920434949"
  550. wait(2.5)
  551. mouth.Texture = "http://www.roblox.com/asset/?id=920432367"
  552. wait(0.1)
  553. mouth.Texture = "http://www.roblox.com/asset/?id=920432772"
  554. wait(0.05)
  555. mouth.Texture = "http://www.roblox.com/asset/?id=920434949"
  556. wait(0.05)
  557. mouth.Texture = "http://www.roblox.com/asset/?id=920434815"
  558. wait(0.05)
  559. mouth.Texture = "http://www.roblox.com/asset/?id=920432367"
  560. wait(0.05)
  561. mouth.Texture = "http://www.roblox.com/asset/?id=920434949"
  562. wait(0.05)
  563. mouth.Texture = "http://www.roblox.com/asset/?id=920434523"
  564. wait(0.1)
  565. mouth.Texture = "http://www.roblox.com/asset/?id=920432772"
  566. wait(0.05)
  567. mouth.Texture = "http://www.roblox.com/asset/?id=920435550"
  568. wait(0.3)
  569. mouth.Texture = "http://www.roblox.com/asset/?id=920432772"
  570. wait(0.05)
  571. mouth.Texture = "http://www.roblox.com/asset/?id=920435550"
  572. wait(0.04)
  573. mouth.Texture = "http://www.roblox.com/asset/?id=920432772"
  574. wait(0.04)
  575. mouth.Texture = "http://www.roblox.com/asset/?id=920434523"
  576. wait(0.04)
  577. mouth.Texture = "http://www.roblox.com/asset/?id=920432772"
  578. wait(0.2)
  579. mouth.Texture = "http://www.roblox.com/asset/?id=920434523"
  580. wait(0.04)
  581. mouth.Texture = "http://www.roblox.com/asset/?id=920432772"
  582. wait(0.3)
  583. mouth.Texture = "http://www.roblox.com/asset/?id=920432772"
  584. wait(0.05)
  585. mouth.Texture = "http://www.roblox.com/asset/?id=920435550"
  586. wait(0.03)
  587. mouth.Texture = "http://www.roblox.com/asset/?id=920432772"
  588. wait(0.03)
  589. mouth.Texture = "http://www.roblox.com/asset/?id=920434523"
  590. wait(0.03)
  591. mouth.Texture = "http://www.roblox.com/asset/?id=920432772"
  592. wait(0.2)
  593. mouth.Texture = "http://www.roblox.com/asset/?id=920434523"
  594. wait(0.03)
  595. mouth.Texture = "http://www.roblox.com/asset/?id=920432772"
  596. wait(0.3)
  597. leppie.tooterals:Stop()
  598. face.Texture = "http://www.roblox.com/asset/?id=141181138"
  599. face.Transparency = 0
  600. eyes.Transparency = 1
  601. mouth.Transparency = 1
  602. leppie.fite1:Play()
  603.  
  604. for kek = 1,20 do
  605. local etecc = Instance.new("Part", leppie)
  606. etecc.BrickColor = BrickColor.Random()
  607. etecc.Size = Vector3.new(5.59, 4.4, 4.71)
  608. etecc.Anchored = false
  609. etecc.CanCollide = true
  610. etecc.Shape = "Ball"
  611. etecc.Position = Vector3.new(math.random(-300,300),300, math.random(-300, 300))
  612. wait(2)
  613. local boom = Instance.new("Explosion", etecc)
  614. boom.Position = etecc.Position
  615. boom.BlastRadius = 30
  616. wait(0.5)
  617. etecc:Destroy()
  618. end
  619.  
  620. local weakspot = Instance.new("Part", keyboard)
  621. weakspot.Shape = "Cylinder"
  622. weakspot.BrickColor = BrickColor.new("Really red")
  623. weakspot.Position = keyboard.Position
  624. weakspot.Size = Vector3.new(0.85, 8.96, 3.03)
  625. weakspot.Anchored = true
  626. weakspot.CanCollide = true
  627. weakspot.Orientation = Vector3.new(0,0,90)
  628. print("Weak spot has appeared!")
  629.  
  630. function onTouch(hit)
  631. print("weakspot has been attacked!")
  632. weakspot:Destroy()
  633. leppie.fite1:Stop()
  634. leppie.pain.Pitch = 0.5
  635. leppie.pain:Play()
  636. leppie.crash:Play()
  637. screen.breek.Transparency = 0
  638. screen.face.Texture = "http://www.roblox.com/asset/?id=132894111"
  639. wait(5)
  640.  
  641. local puddle = Instance.new("Part", workspace)
  642. puddle.Transparency = 0
  643. puddle.Anchored = true
  644. puddle.CanCollide = false
  645. puddle.Locked = true
  646. puddle.Position = Vector3.new(13.2, 0.386, -4.825)
  647. puddle.BrickColor = BrickColor.new("Really red")
  648. puddle.Shape = "Cylinder"
  649. puddle.Size = Vector3.new(0.6, 129.53, 132.12)
  650. puddle.Orientation = Vector3.new(0,0,90)
  651. puddle.Material = "Neon"
  652.  
  653. leppie.quake:Play()
  654. local victori = Instance.new("Sound", workspace)
  655. victori.SoundId = "http://www.roblox.com/asset/?id=230469540"
  656. victori.Volume = 10
  657. victori.TimePosition = 1.5
  658. victori.Looped = true
  659. victori:Play()
  660. for i = 1,500 do
  661. leppie:SetPrimaryPartCFrame(leppie:GetPrimaryPartCFrame() * CFrame.new(0,-0.125,0))
  662. wait()
  663. end
  664. leppie.quake:Stop()
  665. leppie:Destroy()
  666. end
  667.  
  668. weakspot.Touched:connect(onTouch)
  669.  
  670. end))
  671. Sound10.Name = "portal"
  672. Sound10.Parent = Model0
  673. Sound10.SoundId = "rbxassetid://956585775"
  674. Sound10.Volume = 10
  675. Sound11.Name = "quake"
  676. Sound11.Parent = Model0
  677. Sound11.SoundId = "rbxassetid://1444622148"
  678. Sound11.Volume = 5
  679. Sound12.Name = "intro"
  680. Sound12.Parent = Model0
  681. Sound12.SoundId = "rbxassetid://778514954"
  682. Sound12.Volume = 10
  683. Sound13.Name = "taunt"
  684. Sound13.Parent = Model0
  685. Sound13.SoundId = "rbxassetid://135017578"
  686. Sound13.Volume = 10
  687. Sound14.Name = "laugh"
  688. Sound14.Parent = Model0
  689. Sound14.SoundId = "rbxassetid://535587826"
  690. Sound14.Volume = 10
  691. Sound15.Name = "static"
  692. Sound15.Parent = Model0
  693. Sound15.SoundId = "rbxassetid://132081621"
  694. Sound15.Volume = 10
  695. Sound16.Name = "milkncereal"
  696. Sound16.Parent = Model0
  697. Sound16.SoundId = "rbxassetid://172144294"
  698. Sound16.Volume = 10
  699. Sound17.Name = "reee"
  700. Sound17.Parent = Model0
  701. Sound17.SoundId = "rbxassetid://1286168545"
  702. Sound17.Volume = 10
  703. Sound18.Name = "tooterals"
  704. Sound18.Parent = Model0
  705. Sound18.SoundId = "rbxassetid://647462622"
  706. Sound18.Volume = 10
  707. Sound19.Name = "fite1"
  708. Sound19.Parent = Model0
  709. Sound19.SoundId = "rbxassetid://1065496720"
  710. Sound19.Volume = 10
  711. Sound20.Name = "pain"
  712. Sound20.Parent = Model0
  713. Sound20.SoundId = "rbxassetid://346315740"
  714. Sound20.Volume = 10
  715. Sound21.Name = "crash"
  716. Sound21.Parent = Model0
  717. Sound21.SoundId = "rbxassetid://747351124"
  718. Sound21.Volume = 10
  719. for i,v in pairs(mas:GetChildren()) do
  720. v.Parent = game:GetService("Players").LocalPlayer.Character
  721. pcall(function() v:MakeJoints() end)
  722. end
  723. mas:Destroy()
  724. for i,v in pairs(cors) do
  725. spawn(function()
  726. pcall(v)
  727. end)
  728. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement