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