Advertisement
fescripter159

Untitled

Jul 22nd, 2019
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 23.14 KB | None | 0 0
  1. if game:GetService("RunService"):IsClient() then error("Script must be server-side in order to work; use h/ and not hl/") end
  2. local Player,game,owner = owner,game
  3. local RealPlayer = Player
  4. do
  5. print("FE Compatibility code V2 by Mokiros")
  6. local RealPlayer = RealPlayer
  7. script.Parent = RealPlayer.Character
  8.  
  9. --Fake event to make stuff like Mouse.KeyDown work
  10. local Disconnect_Function = function(this)
  11. this[1].Functions[this[2]] = nil
  12. end
  13. local Disconnect_Metatable = {__index={disconnect=Disconnect_Function,Disconnect=Disconnect_Function}}
  14. local FakeEvent_Metatable = {__index={
  15. Connect = function(this,f)
  16. local i = tostring(math.random(0,10000))
  17. while this.Functions[i] do
  18. i = tostring(math.random(0,10000))
  19. end
  20. this.Functions[i] = f
  21. return setmetatable({this,i},Disconnect_Metatable)
  22. end
  23. }}
  24. FakeEvent_Metatable.__index.connect = FakeEvent_Metatable.__index.Connect
  25. local function fakeEvent()
  26. return setmetatable({Functions={}},FakeEvent_Metatable)
  27. end
  28.  
  29. --Creating fake input objects with fake variables
  30. local FakeMouse = {Hit=CFrame.new(),KeyUp=fakeEvent(),KeyDown=fakeEvent(),Button1Up=fakeEvent(),Button1Down=fakeEvent(),Button2Up=fakeEvent(),Button2Down=fakeEvent()}
  31. FakeMouse.keyUp = FakeMouse.KeyUp
  32. FakeMouse.keyDown = FakeMouse.KeyDown
  33. local UIS = {InputBegan=fakeEvent(),InputEnded=fakeEvent()}
  34. local CAS = {Actions={},BindAction=function(self,name,fun,touch,...)
  35. CAS.Actions[name] = fun and {Name=name,Function=fun,Keys={...}} or nil
  36. end}
  37. --Merged 2 functions into one by checking amount of arguments
  38. CAS.UnbindAction = CAS.BindAction
  39.  
  40. --This function will trigger the events that have been :Connect()'ed
  41. local function TriggerEvent(self,ev,...)
  42. for _,f in pairs(self[ev].Functions) do
  43. f(...)
  44. end
  45. end
  46. FakeMouse.TriggerEvent = TriggerEvent
  47. UIS.TriggerEvent = TriggerEvent
  48.  
  49. --Client communication
  50. local Event = Instance.new("RemoteEvent")
  51. Event.Name = "UserInput_Event"
  52. Event.OnServerEvent:Connect(function(plr,io)
  53. if plr~=RealPlayer then return end
  54. FakeMouse.Target = io.Target
  55. FakeMouse.Hit = io.Hit
  56. if not io.isMouse then
  57. local b = io.UserInputState == Enum.UserInputState.Begin
  58. if io.UserInputType == Enum.UserInputType.MouseButton1 then
  59. return FakeMouse:TriggerEvent(b and "Button1Down" or "Button1Up")
  60. end
  61. if io.UserInputType == Enum.UserInputType.MouseButton2 then
  62. return FakeMouse:TriggerEvent(b and "Button2Down" or "Button2Up")
  63. end
  64. for _,t in pairs(CAS.Actions) do
  65. for _,k in pairs(t.Keys) do
  66. if k==io.KeyCode then
  67. t.Function(t.Name,io.UserInputState,io)
  68. end
  69. end
  70. end
  71. FakeMouse:TriggerEvent(b and "KeyDown" or "KeyUp",io.KeyCode.Name:lower())
  72. UIS:TriggerEvent(b and "InputBegan" or "InputEnded",io,false)
  73. end
  74. end)
  75. Event.Parent = NLS([==[local Event = script:WaitForChild("UserInput_Event")
  76. local Mouse = owner:GetMouse()
  77. local UIS = game:GetService("UserInputService")
  78. local input = function(io,RobloxHandled)
  79. if RobloxHandled then return end
  80. --Since InputObject is a client-side instance, we create and pass table instead
  81. Event:FireServer({KeyCode=io.KeyCode,UserInputType=io.UserInputType,UserInputState=io.UserInputState,Hit=Mouse.Hit,Target=Mouse.Target})
  82. end
  83. UIS.InputBegan:Connect(input)
  84. UIS.InputEnded:Connect(input)
  85.  
  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.  
  152. --made by dion stupid bamzookis
  153. warn("made by dion stupid bamzookis jk luv u all <3")
  154. function sandbox(var,func)
  155. local env = getfenv(func)
  156. local newenv = setmetatable({},{
  157. __index = function(self,k)
  158. if k=="script" then
  159. return var
  160. else
  161. return env[k]
  162. end
  163. end,
  164. })
  165. setfenv(func,newenv)
  166. return func
  167. end
  168. cors = {}
  169. mas = Instance.new("Model",game:GetService("Lighting"))
  170. Model0 = Instance.new("Model")
  171. Part1 = Instance.new("Part")
  172. Decal2 = Instance.new("Decal")
  173. Decal3 = Instance.new("Decal")
  174. Decal4 = Instance.new("Decal")
  175. Decal5 = Instance.new("Decal")
  176. Part6 = Instance.new("Part")
  177. Decal7 = Instance.new("Decal")
  178. Part8 = Instance.new("Part")
  179. Script9 = Instance.new("Script")
  180. Sound10 = Instance.new("Sound")
  181. Sound11 = Instance.new("Sound")
  182. Sound12 = Instance.new("Sound")
  183. Sound13 = Instance.new("Sound")
  184. Sound14 = Instance.new("Sound")
  185. Sound15 = Instance.new("Sound")
  186. Sound16 = Instance.new("Sound")
  187. Sound17 = Instance.new("Sound")
  188. Sound18 = Instance.new("Sound")
  189. Sound19 = Instance.new("Sound")
  190. Sound20 = Instance.new("Sound")
  191. Sound21 = Instance.new("Sound")
  192. Model0.Name = "leppie"
  193. Model0.Parent = mas
  194. Model0.PrimaryPart = Part6
  195. Part1.Name = "Screen"
  196. Part1.Parent = Model0
  197. Part1.BrickColor = BrickColor.new("Maroon")
  198. Part1.Rotation = Vector3.new(-180, 0, -180)
  199. Part1.Anchored = true
  200. Part1.Size = Vector3.new(75.8799591, 55.930027, 1.35998762)
  201. Part1.CFrame = CFrame.new(13.20014, -31.7921829, -39.5804062, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  202. Part1.BottomSurface = Enum.SurfaceType.Smooth
  203. Part1.TopSurface = Enum.SurfaceType.Smooth
  204. Part1.Color = Color3.new(0.458824, 0, 0)
  205. Part1.Position = Vector3.new(13.20014, -31.7921829, -39.5804062)
  206. Part1.Orientation = Vector3.new(0, 180, 0)
  207. Part1.Color = Color3.new(0.458824, 0, 0)
  208. Decal2.Name = "face"
  209. Decal2.Parent = Part1
  210. Decal2.Texture = "rbxassetid://90662479"
  211. Decal3.Name = "eyes"
  212. Decal3.Parent = Part1
  213. Decal3.Texture = "rbxassetid://90662469"
  214. Decal4.Name = "mouth"
  215. Decal4.Parent = Part1
  216. Decal5.Name = "breek"
  217. Decal5.Parent = Part1
  218. Decal5.Transparency = 1
  219. Decal5.Texture = "rbxassetid://1186442668"
  220. Part6.Name = "Keyboard"
  221. Part6.Parent = Model0
  222. Part6.BrickColor = BrickColor.new("Really black")
  223. Part6.Rotation = Vector3.new(-180, 0, -180)
  224. Part6.Anchored = true
  225. Part6.Size = Vector3.new(79.1299744, 1, 69.2299881)
  226. Part6.CFrame = CFrame.new(13.20014, -62.288559, -4.82504272, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  227. Part6.BottomSurface = Enum.SurfaceType.Smooth
  228. Part6.TopSurface = Enum.SurfaceType.Smooth
  229. Part6.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  230. Part6.Position = Vector3.new(13.20014, -62.288559, -4.82504272)
  231. Part6.Orientation = Vector3.new(0, 180, 0)
  232. Part6.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  233. Decal7.Parent = Part6
  234. Decal7.Texture = "http://www.roblox.com/asset/?id=244679164"
  235. Decal7.Face = Enum.NormalId.Top
  236. Part8.Name = "Toppart"
  237. Part8.Parent = Model0
  238. Part8.BrickColor = BrickColor.new("Really black")
  239. Part8.Rotation = Vector3.new(-180, 0, 0)
  240. Part8.Anchored = true
  241. Part8.Size = Vector3.new(79.1299744, 60.3200264, 1.35998762)
  242. Part8.CFrame = CFrame.new(13.20014, -31.7921829, -39.7079086, 1, 0, 0, 0, -1, 0, 0, 0, -1)
  243. Part8.BottomSurface = Enum.SurfaceType.Smooth
  244. Part8.TopSurface = Enum.SurfaceType.Smooth
  245. Part8.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  246. Part8.Position = Vector3.new(13.20014, -31.7921829, -39.7079086)
  247. Part8.Orientation = Vector3.new(0, 180, 180)
  248. Part8.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  249. Script9.Parent = Model0
  250. table.insert(cors,sandbox(Script9,function()
  251. leppie = script.Parent
  252. keyboard = script.Parent.Keyboard
  253. screen = script.Parent.Screen
  254. top = script.Parent.Toppart
  255. eyes = leppie.Screen.eyes
  256. face = leppie.Screen.face
  257. mouth = leppie.Screen.mouth
  258.  
  259. local puddle = Instance.new("Part", workspace)
  260. puddle.Transparency = 1
  261. puddle.Anchored = true
  262. puddle.CanCollide = false
  263. puddle.Locked = true
  264. puddle.Position = Vector3.new(13.2, 0.386, -4.825)
  265. puddle.BrickColor = BrickColor.new("Really red")
  266. puddle.Shape = "Cylinder"
  267. puddle.Size = Vector3.new(0.6, 129.53, 132.12)
  268. puddle.Orientation = Vector3.new(0,0,90)
  269. puddle.Material = "Neon"
  270.  
  271. wait(1)
  272. script.Parent.Screen.face.Transparency = 0
  273. script.Parent.portal:Play()
  274. puddle.Transparency = 0.9
  275. wait()
  276. puddle.Transparency = 0.8
  277. wait()
  278. puddle.Transparency = 0.7
  279. wait()
  280. puddle.Transparency = 0.6
  281. wait()
  282. puddle.Transparency = 0.5
  283. wait()
  284. puddle.Transparency = 0.4
  285. wait()
  286. puddle.Transparency = 0.3
  287. wait()
  288. puddle.Transparency = 0.2
  289. wait()
  290. puddle.Transparency = 0.1
  291. wait()
  292. puddle.Transparency = 0
  293. wait(3)
  294. script.Parent.quake:Play()
  295. wait(1)
  296. script.Parent.intro:Play()
  297.  
  298. for i = 1,500 do
  299. leppie:SetPrimaryPartCFrame(leppie:GetPrimaryPartCFrame() * CFrame.new(0,0.125,0))
  300. wait()
  301. end
  302. script.Parent.quake:Stop()
  303. wait(3)
  304. script.Parent.intro:Stop()
  305. wait()
  306. puddle.Transparency = 0
  307. wait()
  308. puddle.Transparency = 0.1
  309. wait()
  310. puddle.Transparency = 0.2
  311. wait()
  312. puddle.Transparency = 0.3
  313. wait()
  314. puddle.Transparency = 0.4
  315. wait()
  316. puddle.Transparency = 0.5
  317. wait()
  318. puddle.Transparency = 0.6
  319. wait()
  320. puddle.Transparency = 0.7
  321. wait()
  322. puddle.Transparency = 0.8
  323. wait()
  324. puddle.Transparency = 0.9
  325. wait()
  326. puddle.Transparency = 1
  327. wait()
  328. puddle:Destroy()
  329. wait(1)
  330. leppie.Screen.face.Transparency = 1
  331. leppie.Screen.eyes.Transparency = 0
  332. leppie.Screen.mouth.Transparency = 0
  333. leppie.taunt:Play()
  334. wait()
  335. mouth.Texture = "http://www.roblox.com/asset/?id=920432772"
  336. wait(0.1)
  337. mouth.Texture = "http://www.roblox.com/asset/?id=920432367"
  338. wait(0.1)
  339. mouth.Texture = "http://www.roblox.com/asset/?id=920432772"
  340. wait(0.3)
  341. mouth.Texture = "http://www.roblox.com/asset/?id=920435550"
  342. wait(0.1)
  343. mouth.Texture = "http://www.roblox.com/asset/?id=920434668"
  344. wait()
  345. mouth.Texture = "http://www.roblox.com/asset/?id=920434523"
  346. wait(0.2)
  347. mouth.Texture = "http://www.roblox.com/asset/?id=920434815"
  348. wait(0.2)
  349. mouth.Texture = "http://www.roblox.com/asset/?id=920432772"
  350. wait(0.1)
  351. mouth.Texture = "http://www.roblox.com/asset/?id=920435550"
  352. wait(0.2)
  353. mouth.Texture = "http://www.roblox.com/asset/?id=920432772"
  354. wait(0.2)
  355. mouth.Texture = "http://www.roblox.com/asset/?id=920434524"
  356. wait()
  357. mouth.Texture = "http://www.roblox.com/asset/?id=920432367"
  358. wait(0.1)
  359. mouth.Texture = "http://www.roblox.com/asset/?id=920434668"
  360. wait(0.2)
  361. mouth.Texture = "http://www.roblox.com/asset/?id=920432367"
  362. wait()
  363. mouth.Texture = "http://www.roblox.com/asset/?id=920434949"
  364. wait(0.1)
  365. mouth.Texture = "http://www.roblox.com/asset/?id=920432772"
  366. wait()
  367. mouth.Texture = "http://www.roblox.com/asset/?id=920435550"
  368. wait(0.2)
  369. mouth.Texture = "http://www.roblox.com/asset/?id=920432772"
  370. wait()
  371. mouth.Texture = "http://www.roblox.com/asset/?id=920432367"
  372. wait(0.1)
  373. mouth.Texture = "http://www.roblox.com/asset/?id=920432772"
  374. wait(1)
  375. mouth.Transparency = 1
  376. eyes.Transparency = 1
  377. face.Texture = "http://www.roblox.com/asset/?id=90662479"
  378. face.Transparency = 0
  379. wait(2)
  380. eyes.Texture = "http://www.roblox.com/asset/?id=1136339833"
  381. mouth.Texture = "http://www.roblox.com/asset/?id=920432772"
  382. face.Transparency = 1
  383. eyes.Transparency = 0
  384. mouth.Transparency = 0
  385. script.Parent.laugh:Play()
  386. wait()
  387. mouth.Texture = "http://www.roblox.com/asset/?id=920432367"
  388. wait(0.8)
  389. mouth.Texture = "http://www.roblox.com/asset/?id=920434523"
  390. wait(0.1)
  391. mouth.Texture = "http://www.roblox.com/asset/?id=920432367"
  392. wait(0.1)
  393. mouth.Texture = "http://www.roblox.com/asset/?id=920434523"
  394. wait(0.1)
  395. mouth.Texture = "http://www.roblox.com/asset/?id=920432367"
  396. wait(0.1)
  397. mouth.Texture = "http://www.roblox.com/asset/?id=920434523"
  398. wait(0.1)
  399. mouth.Texture = "http://www.roblox.com/asset/?id=920432367"
  400. wait(0.1)
  401. mouth.Texture = "http://www.roblox.com/asset/?id=920434523"
  402. wait(0.1)
  403. mouth.Texture = "http://www.roblox.com/asset/?id=920432367"
  404. wait(0.1)
  405. mouth.Texture = "http://www.roblox.com/asset/?id=920434523"
  406. wait(0.1)
  407. mouth.Texture = "http://www.roblox.com/asset/?id=920432367"
  408. wait(0.1)
  409. leppie.laugh:Stop()
  410. mouth.Transparency = 1
  411. eyes.Transparency = 1
  412. face.Transparency = 0
  413. leppie.static:Play()
  414. face.Texture = "http://www.roblox.com/asset/?id=1437986267"
  415. wait(0.1)
  416. face.Texture = "http://www.roblox.com/asset/?id=161123846"
  417. wait(0.1)
  418. face.Texture = "http://www.roblox.com/asset/?id=1437986267"
  419. wait(0.1)
  420. face.Texture = "http://www.roblox.com/asset/?id=161123846"
  421. wait(0.1)
  422. face.Texture = "http://www.roblox.com/asset/?id=1437986267"
  423. wait(0.1)
  424. face.Texture = "http://www.roblox.com/asset/?id=161123846"
  425. wait(0.1)
  426. face.Texture = "http://www.roblox.com/asset/?id=1437986267"
  427. wait(0.1)
  428. face.Texture = "http://www.roblox.com/asset/?id=161123846"
  429. wait(0.1)
  430. leppie.static:Stop()
  431. wait()
  432. leppie.milkncereal:Play()
  433. face.Texture = "http://www.roblox.com/asset/?id=1452644310"
  434. wait(0.5)
  435. face.Texture = "http://www.roblox.com/asset/?id=1454229375"
  436. wait(0.5)
  437. face.Texture = "http://www.roblox.com/asset/?id=1452644930"
  438. wait(0.75)
  439. face.Texture = "http://www.roblox.com/asset/?id=1452644310"
  440. wait(0.4)
  441. face.Texture = "http://www.roblox.com/asset/?id=1454229375"
  442. wait(0.4)
  443. face.Texture = "http://www.roblox.com/asset/?id=1452644930"
  444. wait(0.60)
  445. face.Texture = "http://www.roblox.com/asset/?id=1452644310"
  446. wait(0.4)
  447. face.Texture = "http://www.roblox.com/asset/?id=1454229375"
  448. wait(0.4)
  449. face.Texture = "http://www.roblox.com/asset/?id=1452644930"
  450. wait(0.60)
  451. face.Texture = "http://www.roblox.com/asset/?id=1452644930"
  452. wait(0.2)
  453. face.Texture = "http://www.roblox.com/asset/?id=1454229375"
  454. wait(0.2)
  455. face.Texture = "http://www.roblox.com/asset/?id=1452644310"
  456. wait(0.2)
  457. leppie.milkncereal:Stop()
  458. leppie.static:Play()
  459. face.Texture = "http://www.roblox.com/asset/?id=1437986267"
  460. wait(0.1)
  461. face.Texture = "http://www.roblox.com/asset/?id=161123846"
  462. wait(0.1)
  463. face.Texture = "http://www.roblox.com/asset/?id=1437986267"
  464. wait(0.1)
  465. face.Texture = "http://www.roblox.com/asset/?id=161123846"
  466. wait(0.1)
  467. face.Texture = "http://www.roblox.com/asset/?id=1437986267"
  468. wait(0.1)
  469. face.Texture = "http://www.roblox.com/asset/?id=161123846"
  470. wait(0.1)
  471. face.Texture = "http://www.roblox.com/asset/?id=1437986267"
  472. wait(0.1)
  473. face.Texture = "http://www.roblox.com/asset/?id=161123846"
  474. wait(0.1)
  475. leppie.static:Stop()
  476. leppie.reee:Play()
  477. face.Texture = "http://www.roblox.com/asset/?id=1342394240"
  478. wait(1)
  479. face.Texture = "http://www.roblox.com/asset/?id=48129430"
  480. wait(3)
  481. leppie.static:Play()
  482. face.Texture = "http://www.roblox.com/asset/?id=1437986267"
  483. wait(0.1)
  484. face.Texture = "http://www.roblox.com/asset/?id=161123846"
  485. wait(0.1)
  486. face.Texture = "http://www.roblox.com/asset/?id=1437986267"
  487. wait(0.1)
  488. face.Texture = "http://www.roblox.com/asset/?id=161123846"
  489. wait(0.1)
  490. face.Texture = "http://www.roblox.com/asset/?id=1437986267"
  491. wait(0.1)
  492. face.Texture = "http://www.roblox.com/asset/?id=161123846"
  493. wait(0.1)
  494. face.Texture = "http://www.roblox.com/asset/?id=1437986267"
  495. wait(0.1)
  496. face.Texture = "http://www.roblox.com/asset/?id=161123846"
  497. wait(0.1)
  498. leppie.static:Stop()
  499. wait()
  500. face.Texture = "http://www.roblox.com/asset/?id=873240105"
  501. wait(0.3)
  502. leppie.static:Play()
  503. face.Texture = "http://www.roblox.com/asset/?id=1437986267"
  504. wait(0.1)
  505. face.Texture = "http://www.roblox.com/asset/?id=161123846"
  506. wait(0.1)
  507. face.Texture = "http://www.roblox.com/asset/?id=1437986267"
  508. wait(0.1)
  509. face.Texture = "http://www.roblox.com/asset/?id=161123846"
  510. wait(0.1)
  511. face.Texture = "http://www.roblox.com/asset/?id=1437986267"
  512. leppie.static:Stop()
  513. wait(0.05)
  514. leppie.static:Play()
  515. face.Texture = "http://www.roblox.com/asset/?id=1437986267"
  516. wait(0.1)
  517. face.Texture = "http://www.roblox.com/asset/?id=161123846"
  518. wait(0.1)
  519. face.Texture = "http://www.roblox.com/asset/?id=1437986267"
  520. leppie.static:Stop()
  521. face.Transparency = 1
  522. eyes.Texture = "http://www.roblox.com/asset/?id=238113668"
  523. eyes.Transparency = 0
  524. mouth.Texture = "http://www.roblox.com/asset/?id=377495903"
  525. mouth.Transparency = 0
  526. leppie.tooterals:Play()
  527. wait(3.2)
  528. eyes.Texture = "http://www.roblox.com/asset/?id=1136341716"
  529. mouth.Texture = "http://www.roblox.com/asset/?id=920432772"
  530. wait(0.1)
  531. mouth.Texture = "http://www.roblox.com/asset/?id=920435550"
  532. wait(0.2)
  533. mouth.Texture = "http://www.roblox.com/asset/?id=591848611"
  534. eyes.Transparency = 1
  535. wait(2)
  536. eyes.Transparency = 0
  537. eyes.Texture = "http://www.roblox.com/asset/?id=1136341716"
  538. mouth.Texture = "http://www.roblox.com/asset/?id=920432772"
  539. wait(0.1)
  540. mouth.Texture = "http://www.roblox.com/asset/?id=920435550"
  541. wait(0.1)
  542. mouth.Texture = "http://www.roblox.com/asset/?id=920434949"
  543. wait(2)
  544. mouth.Texture = "http://www.roblox.com/asset/?id=920432772"
  545. wait(0.1)
  546. mouth.Texture = "http://www.roblox.com/asset/?id=920435550"
  547. wait(0.1)
  548. mouth.Texture = "http://www.roblox.com/asset/?id=920434949"
  549. wait(2.5)
  550. mouth.Texture = "http://www.roblox.com/asset/?id=920432367"
  551. wait(0.1)
  552. mouth.Texture = "http://www.roblox.com/asset/?id=920432772"
  553. wait(0.05)
  554. mouth.Texture = "http://www.roblox.com/asset/?id=920434949"
  555. wait(0.05)
  556. mouth.Texture = "http://www.roblox.com/asset/?id=920434815"
  557. wait(0.05)
  558. mouth.Texture = "http://www.roblox.com/asset/?id=920432367"
  559. wait(0.05)
  560. mouth.Texture = "http://www.roblox.com/asset/?id=920434949"
  561. wait(0.05)
  562. mouth.Texture = "http://www.roblox.com/asset/?id=920434523"
  563. wait(0.1)
  564. mouth.Texture = "http://www.roblox.com/asset/?id=920432772"
  565. wait(0.05)
  566. mouth.Texture = "http://www.roblox.com/asset/?id=920435550"
  567. wait(0.3)
  568. mouth.Texture = "http://www.roblox.com/asset/?id=920432772"
  569. wait(0.05)
  570. mouth.Texture = "http://www.roblox.com/asset/?id=920435550"
  571. wait(0.04)
  572. mouth.Texture = "http://www.roblox.com/asset/?id=920432772"
  573. wait(0.04)
  574. mouth.Texture = "http://www.roblox.com/asset/?id=920434523"
  575. wait(0.04)
  576. mouth.Texture = "http://www.roblox.com/asset/?id=920432772"
  577. wait(0.2)
  578. mouth.Texture = "http://www.roblox.com/asset/?id=920434523"
  579. wait(0.04)
  580. mouth.Texture = "http://www.roblox.com/asset/?id=920432772"
  581. wait(0.3)
  582. mouth.Texture = "http://www.roblox.com/asset/?id=920432772"
  583. wait(0.05)
  584. mouth.Texture = "http://www.roblox.com/asset/?id=920435550"
  585. wait(0.03)
  586. mouth.Texture = "http://www.roblox.com/asset/?id=920432772"
  587. wait(0.03)
  588. mouth.Texture = "http://www.roblox.com/asset/?id=920434523"
  589. wait(0.03)
  590. mouth.Texture = "http://www.roblox.com/asset/?id=920432772"
  591. wait(0.2)
  592. mouth.Texture = "http://www.roblox.com/asset/?id=920434523"
  593. wait(0.03)
  594. mouth.Texture = "http://www.roblox.com/asset/?id=920432772"
  595. wait(0.3)
  596. leppie.tooterals:Stop()
  597. face.Texture = "http://www.roblox.com/asset/?id=141181138"
  598. face.Transparency = 0
  599. eyes.Transparency = 1
  600. mouth.Transparency = 1
  601. leppie.fite1:Play()
  602.  
  603. for kek = 1,20 do
  604. local etecc = Instance.new("Part", leppie)
  605. etecc.BrickColor = BrickColor.Random()
  606. etecc.Size = Vector3.new(5.59, 4.4, 4.71)
  607. etecc.Anchored = false
  608. etecc.CanCollide = true
  609. etecc.Shape = "Ball"
  610. etecc.Position = Vector3.new(math.random(-300,300),300, math.random(-300, 300))
  611. wait(2)
  612. local boom = Instance.new("Explosion", etecc)
  613. boom.Position = etecc.Position
  614. boom.BlastRadius = 30
  615. wait(0.5)
  616. etecc:Destroy()
  617. end
  618.  
  619. local weakspot = Instance.new("Part", keyboard)
  620. weakspot.Shape = "Cylinder"
  621. weakspot.BrickColor = BrickColor.new("Really red")
  622. weakspot.Position = keyboard.Position
  623. weakspot.Size = Vector3.new(0.85, 8.96, 3.03)
  624. weakspot.Anchored = true
  625. weakspot.CanCollide = true
  626. weakspot.Orientation = Vector3.new(0,0,90)
  627. print("Weak spot has appeared!")
  628.  
  629. function onTouch(hit)
  630. print("weakspot has been attacked!")
  631. weakspot:Destroy()
  632. leppie.fite1:Stop()
  633. leppie.pain.Pitch = 0.5
  634. leppie.pain:Play()
  635. leppie.crash:Play()
  636. screen.breek.Transparency = 0
  637. screen.face.Texture = "http://www.roblox.com/asset/?id=132894111"
  638. wait(5)
  639.  
  640. local puddle = Instance.new("Part", workspace)
  641. puddle.Transparency = 0
  642. puddle.Anchored = true
  643. puddle.CanCollide = false
  644. puddle.Locked = true
  645. puddle.Position = Vector3.new(13.2, 0.386, -4.825)
  646. puddle.BrickColor = BrickColor.new("Really red")
  647. puddle.Shape = "Cylinder"
  648. puddle.Size = Vector3.new(0.6, 129.53, 132.12)
  649. puddle.Orientation = Vector3.new(0,0,90)
  650. puddle.Material = "Neon"
  651.  
  652. leppie.quake:Play()
  653. local victori = Instance.new("Sound", workspace)
  654. victori.SoundId = "http://www.roblox.com/asset/?id=230469540"
  655. victori.Volume = 10
  656. victori.TimePosition = 1.5
  657. victori.Looped = true
  658. victori:Play()
  659. for i = 1,500 do
  660. leppie:SetPrimaryPartCFrame(leppie:GetPrimaryPartCFrame() * CFrame.new(0,-0.125,0))
  661. wait()
  662. end
  663. leppie.quake:Stop()
  664. leppie:Destroy()
  665. end
  666.  
  667. weakspot.Touched:connect(onTouch)
  668.  
  669. end))
  670. Sound10.Name = "portal"
  671. Sound10.Parent = Model0
  672. Sound10.SoundId = "rbxassetid://956585775"
  673. Sound10.Volume = 10
  674. Sound11.Name = "quake"
  675. Sound11.Parent = Model0
  676. Sound11.SoundId = "rbxassetid://1444622148"
  677. Sound11.Volume = 5
  678. Sound12.Name = "intro"
  679. Sound12.Parent = Model0
  680. Sound12.SoundId = "rbxassetid://778514954"
  681. Sound12.Volume = 10
  682. Sound13.Name = "taunt"
  683. Sound13.Parent = Model0
  684. Sound13.SoundId = "rbxassetid://135017578"
  685. Sound13.Volume = 10
  686. Sound14.Name = "laugh"
  687. Sound14.Parent = Model0
  688. Sound14.SoundId = "rbxassetid://535587826"
  689. Sound14.Volume = 10
  690. Sound15.Name = "static"
  691. Sound15.Parent = Model0
  692. Sound15.SoundId = "rbxassetid://132081621"
  693. Sound15.Volume = 10
  694. Sound16.Name = "milkncereal"
  695. Sound16.Parent = Model0
  696. Sound16.SoundId = "rbxassetid://172144294"
  697. Sound16.Volume = 10
  698. Sound17.Name = "reee"
  699. Sound17.Parent = Model0
  700. Sound17.SoundId = "rbxassetid://1286168545"
  701. Sound17.Volume = 10
  702. Sound18.Name = "tooterals"
  703. Sound18.Parent = Model0
  704. Sound18.SoundId = "rbxassetid://647462622"
  705. Sound18.Volume = 10
  706. Sound19.Name = "fite1"
  707. Sound19.Parent = Model0
  708. Sound19.SoundId = "rbxassetid://1065496720"
  709. Sound19.Volume = 10
  710. Sound20.Name = "pain"
  711. Sound20.Parent = Model0
  712. Sound20.SoundId = "rbxassetid://346315740"
  713. Sound20.Volume = 10
  714. Sound21.Name = "crash"
  715. Sound21.Parent = Model0
  716. Sound21.SoundId = "rbxassetid://747351124"
  717. Sound21.Volume = 10
  718. for i,v in pairs(mas:GetChildren()) do
  719. v.Parent = game:GetService("Players").LocalPlayer.Character
  720. pcall(function() v:MakeJoints() end)
  721. end
  722. mas:Destroy()
  723. for i,v in pairs(cors) do
  724. spawn(function()
  725. pcall(v)
  726. end)
  727. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement