Advertisement
Hugo1234cool

Untitled

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