Advertisement
Robloxian_Scripter

Untitled

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