View difference between Paste ID: ZtQqY47R and NaUACHmk
SHOW: | | - or go back to the newest paste.
1
function Introduction()
2
-- Objects
3
4
local Intro = Instance.new("ScreenGui")
5
local Intro_2 = Instance.new("Frame")
6
local Letter = Instance.new("Frame")
7
local Frame = Instance.new("Frame")
8
local Frame_2 = Instance.new("Frame")
9
local Frame_3 = Instance.new("Frame")
10
local Frame_4 = Instance.new("Frame")
11
local Frame_5 = Instance.new("Frame")
12
local Top = Instance.new("Frame")
13
14
-- Properties
15
16
Intro.Name = "Intro"
17
Intro.Parent = game.Players.LocalPlayer.PlayerGui
18
19
Intro_2.Name = "Intro"
20
Intro_2.Parent = Intro
21
Intro_2.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
22
Intro_2.BorderColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
23
Intro_2.BorderSizePixel = 0
24
Intro_2.Size = UDim2.new(1, 0, 1, 0)
25
26
Letter.Name = "Letter"
27
Letter.Parent = Intro_2
28
Letter.BackgroundColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
29
Letter.BackgroundTransparency = 1
30
Letter.BorderColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
31
Letter.BorderSizePixel = 0
32
Letter.Position = UDim2.new(0.5, -100, 0.5, -100)
33
Letter.Size = UDim2.new(0, 200, 0, 200)
34
35
Frame.Parent = Letter
36
Frame.BackgroundColor3 = Color3.new(0, 1, 1)
37
Frame.BorderSizePixel = 0
38
Frame.Size = UDim2.new(0, 200, 0, 40)
39
40
Frame_2.Parent = Letter
41
Frame_2.BackgroundColor3 = Color3.new(0, 1, 1)
42
Frame_2.BorderSizePixel = 0
43
Frame_2.Position = UDim2.new(0, 0, 0, 40)
44
Frame_2.Size = UDim2.new(0, 40, 0, 80)
45
46
Frame_3.Parent = Letter
47
Frame_3.BackgroundColor3 = Color3.new(0, 1, 1)
48
Frame_3.BorderSizePixel = 0
49
Frame_3.Position = UDim2.new(0, 160, 0, 120)
50
Frame_3.Size = UDim2.new(0, 40, 0, 80)
51
52
Frame_4.Parent = Letter
53
Frame_4.BackgroundColor3 = Color3.new(0, 1, 1)
54
Frame_4.BorderSizePixel = 0
55
Frame_4.Position = UDim2.new(0, 0, 0, 90)
56
Frame_4.Size = UDim2.new(0, 200, 0, 40)
57
58
Frame_5.Parent = Letter
59
Frame_5.BackgroundColor3 = Color3.new(0, 1, 1)
60
Frame_5.BorderSizePixel = 0
61
Frame_5.Position = UDim2.new(0, 0, 0, 180)
62
Frame_5.Size = UDim2.new(0, 200, 0, 40)
63
64
Top.Name = "Top"
65
Top.Parent = Intro_2
66
Top.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
67
Top.BorderSizePixel = 0
68
Top.Position = UDim2.new(0, 0, 0, -100)
69
Top.Size = UDim2.new(1, 0, 0, 100)
70
71
local TextLabel = Instance.new("TextLabel")
72
73
-- Properties
74
75
TextLabel.Parent = Intro_2
76
TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
77
TextLabel.BackgroundTransparency = 1
78
TextLabel.BorderSizePixel = 0
79
TextLabel.LayoutOrder = 5
80
TextLabel.Position = UDim2.new(1, 0, 0.699999988, 0)
81
TextLabel.Size = UDim2.new(1, 0, 0, 50)
82
TextLabel.Font = Enum.Font.SciFi
83
TextLabel.FontSize = Enum.FontSize.Size14
84
TextLabel.Text = "Squid's Scripts"
85
TextLabel.TextColor3 = Color3.new(0.101961, 0.988235, 1)
86
TextLabel.TextScaled = true
87
TextLabel.TextSize = 14
88
TextLabel.TextWrapped = true
89
90
local top = 255
91
while Intro == nil do wait() end
92
local intro_frame = Intro_2
93
intro_frame.Visible = true
94
wait(1) --A fail proof wait, yisss
95
96
local flies = Instance.new("Sound")
97
flies.Name = "Flies"
98
flies.SoundId = "rbxassetid://258663133"
99
flies.MaxDistance = "10000.000"
100
flies.Parent = Intro
101
102
local Intro1 = Instance.new("Sound")
103
Intro1.Name = "Intro"
104
Intro1.SoundId = "rbxassetid://258666677"
105
Intro1.MaxDistance = "10000.000"
106
Intro1.Parent = Intro
107
108
local snd_flies = flies
109
local snd_intro = Intro1
110
111
112
local camera = game.Workspace.CurrentCamera
113
local RenderStepped = game:GetService("RunService").RenderStepped
114
115
local letter = Letter
116
letter:ClearAllChildren()
117
118
119
local function V2Interp(v1, v2, t)
120
	return v1 + (v2 - v1) * t
121
end
122
123
local function FollowInterp(v1, v2, max_dist, speed, delta)
124
	local mag = (v1 - v2).magnitude
125
	if mag > max_dist then
126
		v1 = V2Interp(v1, v2, (mag - max_dist) / mag)
127
	end
128
	return V2Interp(v1, v2, math.min(1, 1 - (1 - speed) ^ delta))
129
end
130
	
131
function Shake2D(speed, speed2, radius)
132
	local old_radius = radius
133
	
134
	local function GetNextPos()
135
		local roll = Vector2.new(math.random() - 0.5, math.random() - 0.5)
136
		if roll.x == 0 and roll.y == 0 then
137
			return Vector2.new(0, 1) * radius * (math.random() - 0.5) * 2
138
		else
139
			return roll.unit * radius * (math.random() - 0.5) * 2
140
		end
141
	end
142
143
	local start = nil
144
	local pos1 = Vector2.new(0, 0)
145
	local pos2 = GetNextPos()
146
	local time_req = (pos2 - pos1).magnitude / speed
147
	
148
	local shaker_pos = pos1
149
	
150
	local last_update = nil
151
	local function Update(force_radius)
152
		if force_radius ~= nil then
153
			radius = force_radius
154
		end
155
		if start == nil then
156
			start = tick()
157
			last_update = tick()
158
		end
159
		local delta = tick() - last_update
160
		last_update = tick()
161
		
162
		local amm = (tick() - start) / time_req
163
		local over_time = tick() - start - time_req
164
		
165
		local follow_pos = V2Interp(pos1, pos2, math.min(1, amm))
166
		shaker_pos = FollowInterp(shaker_pos, follow_pos, old_radius, speed2, math.max(0, delta - math.max(0, over_time)))
167
		if over_time > 0 then
168
			pos1 = pos2
169
			pos2 = GetNextPos()
170
			local new_time_req = (pos2 - pos1).magnitude / speed
171
			
172
			start = math.min(start + time_req, tick() + new_time_req)
173
			time_req = new_time_req
174
			
175
			local amm = (tick() - start) / time_req
176
			local follow_pos = V2Interp(pos1, pos2, math.min(1, amm))
177
			shaker_pos = FollowInterp(shaker_pos, follow_pos, old_radius, speed2, over_time)
178
		end
179
		
180
		return shaker_pos
181
	end
182
	
183
	return {Update = Update}
184
end
185
186
local neon_list = {
187
	Vector3.new(1, 0, 0),
188
	Vector3.new(1, 0, 1),
189
	Vector3.new(1, 1, 0),
190
	Vector3.new(0, 1, 0),
191
	Vector3.new(1, 180 / 255, 0),
192
	Vector3.new(0, 1, 1),
193
}
194
195
local m_code = {
196
	"1111111111",
197
	"1111111111",
198
	"1100000000",
199
	"1100000000",
200
	"1111111111",
201
	"1111111111",
202
	"0000000011",
203
	"0000000011",
204
	"1111111111",
205
	"1111111111",
206
}
207
208
local m_partics = {}
209
for y, str_lin in pairs(m_code) do
210
	for x = 1, str_lin:len() do
211
		if str_lin:sub(x, x) == "1" then
212
			local n_p = Instance.new("Frame")
213
			n_p.BorderSizePixel = 0
214
			n_p.Size = UDim2.new(0, 20, 0, 20)
215
			n_p.BackgroundColor3 = Color3.new(0, 0, 0)
216
			n_p.Position = UDim2.new(0, (x - 1) * 20, 0, (y - 1) * 20)
217
			n_p.Parent = letter
218
			
219
			local orig_pos = Vector2.new((x - 1) * 20, (y - 1) * 20)
220
			local shaker = Shake2D(1000, 0.95, 400)
221
TextLabel:TweenPosition(UDim2.new(0, 0, 0.69998, 0), 'In', 'Elastic', 10)
222
			
223
			table.insert(m_partics, {n_p, orig_pos, shaker})
224
		end
225
	end
226
end
227
228
local BEAT = 0.476
229
230
local start = tick()
231
snd_flies:Play()
232
233
local intro_played = false
234
local last_swap = 0
235
local curr_neon = 1 --neon_list
236
237
while true do
238
	local amm = math.min(1 , (tick() - start) / 10)
239
	if amm < 0.1 then
240
		snd_flies.Volume = amm * 10
241
	elseif amm > 0.1 and amm < 0.4 then
242
		snd_flies.Volume = 1
243
	else
244
		snd_flies.Volume = 0
245
	end
246
	
247
	if amm > 0.4 then
248
		if not intro_played then
249
			snd_intro:Play()
250
			intro_played = true
251
		end
252
		if tick() - last_swap > BEAT or last_swap == 0 then
253
			if last_swap == 0 then
254
				last_swap = tick()
255
			else
256
				last_swap = last_swap + BEAT
257
			end
258
			curr_neon = curr_neon + 1
259
			if curr_neon > #neon_list then
260
				curr_neon = 1
261
			end
262
		end
263
		local gen_col = neon_list[curr_neon]
264
	
265
	end
266
	
267
	
268
	for _, p in pairs(m_partics) do
269
		local gen_pos
270
		if amm < 0.5 then
271
			gen_pos = p[2] + p[3].Update()
272
		else
273
			gen_pos = p[2] + p[3].Update(math.max(0, 400 - ((amm - 0.5) * 1000)))
274
		end
275
	p[1].Position = UDim2.new(0, gen_pos.x, 0, gen_pos.y)
276
	p[1].BackgroundColor3 = Color3.new(0,255,255)
277
end	
278
	
279
if tick() - start > 10 then break end
280
RenderStepped:wait()
281
end
282
283
local start2 = tick()
284
while true do
285
	if tick() - last_swap > BEAT then
286
		last_swap = last_swap + BEAT
287
		curr_neon = curr_neon + 1
288
		if curr_neon > #neon_list then
289
			curr_neon = 1
290
		end
291
	end
292
	local gen_col = neon_list[curr_neon]
293
	
294
	if tick() - start2 > 9 then break end
295
	RenderStepped:wait()
296
end
297
298
--------------------------------
299
wait(0.1)
300
301
snd_flies:Stop()
302
snd_intro:Stop()
303
304
--The end
305
TextLabel:TweenPosition(UDim2.new(-1, 0, 0.699999988, 0), 'Out', 'Elastic', 1)
306
wait(1)
307
Intro_2:TweenPosition(UDim2.new(0, 0, -1.2, 0), 'Out', 'Elastic', 1.2)
308
end
309
Introduction()
310
-- Objects
311
312
local EpicMinigamesGUIbySquid = Instance.new("ScreenGui")
313
local EMGUI = Instance.new("Frame")
314
local CloseButton = Instance.new("ImageButton")
315
local Teleport = Instance.new("TextButton")
316
local BulletBound = Instance.new("TextButton")
317
local HighlightUI = Instance.new("TextButton")
318
local AztecAdventure = Instance.new("TextButton")
319
local HighlightUI_2 = Instance.new("TextButton")
320
local Expedition = Instance.new("TextButton")
321
local HighlightUI_3 = Instance.new("TextButton")
322
local TrialTraversing = Instance.new("TextButton")
323
local HighlightUI_4 = Instance.new("TextButton")
324
local TopLevelBAR = Instance.new("TextButton")
325
local Lobby = Instance.new("TextButton")
326
local HighlightUI_5 = Instance.new("TextButton")
327
local PlatformPervil = Instance.new("TextButton")
328
local HighlightUI_6 = Instance.new("TextButton")
329
local Avalanche = Instance.new("TextButton")
330
local HighlightUI_7 = Instance.new("TextButton")
331
local SharkSurvival = Instance.new("TextButton")
332
local HighlightUI_8 = Instance.new("TextButton")
333
local DownhillRoll = Instance.new("TextButton")
334
local HighlightUI_9 = Instance.new("TextButton")
335
local HighRolling = Instance.new("TextButton")
336
local HighlightUI_10 = Instance.new("TextButton")
337
local Game = Instance.new("TextButton")
338
local BulletEvasion = Instance.new("TextButton")
339
local HighlightUI_11 = Instance.new("TextButton")
340
local HighPressure = Instance.new("TextButton")
341
local HighlightUI_12 = Instance.new("TextButton")
342
local LaserGuidance = Instance.new("TextButton")
343
local HighlightUI_13 = Instance.new("TextButton")
344
local TopLevelBAR_2 = Instance.new("TextButton")
345
local TheSweeper = Instance.new("TextButton")
346
local HighlightUI_14 = Instance.new("TextButton")
347
local LavaForecast = Instance.new("TextButton")
348
local HighlightUI_15 = Instance.new("TextButton")
349
local Activate = Instance.new("TextButton")
350
local LaserCutting = Instance.new("TextButton")
351
local HighlightUI_16 = Instance.new("TextButton")
352
local Player = Instance.new("TextButton")
353
local Noclip = Instance.new("TextButton")
354
local Property1 = Instance.new("TextLabel")
355
local Property2 = Instance.new("TextLabel")
356
local Property3 = Instance.new("TextLabel")
357
local On = Instance.new("TextButton")
358
local HighlightUI_17 = Instance.new("TextButton")
359
local Fly = Instance.new("TextButton")
360
local Property1_2 = Instance.new("TextLabel")
361
local Property2_2 = Instance.new("TextLabel")
362
local Property3_2 = Instance.new("TextLabel")
363
local Toggle = Instance.new("TextButton")
364
local HighlightUI_18 = Instance.new("TextButton")
365
local HighJump = Instance.new("TextButton")
366
local Toggle_2 = Instance.new("TextButton")
367
local Property1_3 = Instance.new("TextLabel")
368
local Property2_3 = Instance.new("TextLabel")
369
local Property3_3 = Instance.new("TextLabel")
370
local HighlightUI_19 = Instance.new("TextButton")
371
local Speed = Instance.new("TextButton")
372
local HighlightUI_20 = Instance.new("TextButton")
373
local Toggle_3 = Instance.new("TextButton")
374
local Property1_4 = Instance.new("TextLabel")
375
local Property2_4 = Instance.new("TextLabel")
376
local Property3_4 = Instance.new("TextLabel")
377
local TopLevelBAR_3 = Instance.new("TextButton")
378
local DividerUI = Instance.new("TextButton")
379
local Credits = Instance.new("TextButton")
380
local TopLevelBAR_4 = Instance.new("TextButton")
381
local Creds = Instance.new("TextLabel")
382
local DividerUI_2 = Instance.new("TextButton")
383
local Creds_2 = Instance.new("TextLabel")
384
local Creds_3 = Instance.new("TextLabel")
385
local DividerUI_3 = Instance.new("TextButton")
386
local Creds_4 = Instance.new("TextLabel")
387
local TransparencyAERO = Instance.new("TextLabel")
388
local EMText = Instance.new("TextLabel")
389
local ImageLabel = Instance.new("ImageLabel")
390
local SelectTabHint = Instance.new("TextLabel")
391
local solarBUX = Instance.new("ImageButton")
392
local OpenButton = Instance.new("TextButton")
393
394
-- Properties
395
396
EpicMinigamesGUIbySquid.Name = "Epic Minigames GUI by Squid"
397
EpicMinigamesGUIbySquid.Parent = game.CoreGui
398
399
EMGUI.Name = "EMGUI"
400
EMGUI.Parent = EpicMinigamesGUIbySquid
401
EMGUI.BackgroundColor3 = Color3.new(0.0470588, 0.0705882, 0.0941177)
402
EMGUI.BackgroundTransparency = 0.20000000298023
403
EMGUI.BorderColor3 = Color3.new(0.117647, 0.00392157, 0.00392157)
404
EMGUI.Position = UDim2.new(0.200000003, 0, 0.200000003, 0)
405
EMGUI.Size = UDim2.new(0, 700, 0, 400)
406
407
CloseButton.Name = "CloseButton"
408
CloseButton.Parent = EMGUI
409
CloseButton.BackgroundColor3 = Color3.new(1, 1, 1)
410
CloseButton.BackgroundTransparency = 1
411
CloseButton.BorderColor3 = Color3.new(0, 0, 0)
412
CloseButton.Position = UDim2.new(0.949999988, 0, -0.00999999978, 0)
413
CloseButton.Size = UDim2.new(0, 20, 0, 18)
414
CloseButton.Image = "http://www.roblox.com/asset/?id=157136587"
415
416
Teleport.Name = "Teleport"
417
Teleport.Parent = EMGUI
418
Teleport.BackgroundColor3 = Color3.new(0.337255, 0.337255, 0.337255)
419
Teleport.BackgroundTransparency = 1
420
Teleport.BorderColor3 = Color3.new(0.337255, 0.337255, 0.337255)
421
Teleport.BorderSizePixel = 0
422
Teleport.Position = UDim2.new(0.300000012, 0, 0.0199999996, 0)
423
Teleport.Size = UDim2.new(0, 80, 0, 40)
424
Teleport.Font = Enum.Font.SourceSans
425
Teleport.FontSize = Enum.FontSize.Size24
426
Teleport.Text = "Teleport"
427
Teleport.TextColor3 = Color3.new(0.988235, 0.988235, 0.988235)
428
Teleport.TextSize = 24
429
430
BulletBound.Name = "Bullet Bound"
431
BulletBound.Parent = Teleport
432
BulletBound.BackgroundColor3 = Color3.new(0.333333, 0.666667, 1)
433
BulletBound.Position = UDim2.new(0, -55, 0, 100)
434
BulletBound.Size = UDim2.new(0, 100, 0, 100)
435
BulletBound.Visible = false
436
BulletBound.Font = Enum.Font.Arcade
437
BulletBound.FontSize = Enum.FontSize.Size24
438
BulletBound.Text = "Bullet Bound"
439
BulletBound.TextColor3 = Color3.new(1, 1, 1)
440
BulletBound.TextSize = 20
441
BulletBound.TextWrapped = true
442
443
HighlightUI.Name = "HighlightUI"
444
HighlightUI.Parent = BulletBound
445
HighlightUI.BackgroundColor3 = Color3.new(1, 1, 1)
446
HighlightUI.Position = UDim2.new(0, 0, 0, -10)
447
HighlightUI.Size = UDim2.new(0, 100, 0, 1)
448
HighlightUI.Visible = false
449
HighlightUI.Font = Enum.Font.SourceSans
450
HighlightUI.FontSize = Enum.FontSize.Size14
451
HighlightUI.Text = ""
452
HighlightUI.TextSize = 14
453
HighlightUI.TextWrapped = true
454
455
AztecAdventure.Name = "Aztec Adventure"
456
AztecAdventure.Parent = Teleport
457
AztecAdventure.BackgroundColor3 = Color3.new(0.407843, 0.407843, 0.203922)
458
AztecAdventure.Position = UDim2.new(0, 222, 0, 100)
459
AztecAdventure.Size = UDim2.new(0, 100, 0, 100)
460
AztecAdventure.Visible = false
461
AztecAdventure.Font = Enum.Font.Arcade
462
AztecAdventure.FontSize = Enum.FontSize.Size18
463
AztecAdventure.Text = "Aztec Adventure"
464
AztecAdventure.TextColor3 = Color3.new(1, 1, 1)
465
AztecAdventure.TextSize = 18
466
AztecAdventure.TextWrapped = true
467
468
HighlightUI_2.Name = "HighlightUI"
469
HighlightUI_2.Parent = AztecAdventure
470
HighlightUI_2.BackgroundColor3 = Color3.new(1, 1, 1)
471
HighlightUI_2.Position = UDim2.new(0, 0, 0, -10)
472
HighlightUI_2.Size = UDim2.new(0, 100, 0, 1)
473
HighlightUI_2.Visible = false
474
HighlightUI_2.Font = Enum.Font.SourceSans
475
HighlightUI_2.FontSize = Enum.FontSize.Size14
476
HighlightUI_2.Text = ""
477
HighlightUI_2.TextSize = 14
478
HighlightUI_2.TextWrapped = true
479
480
Expedition.Name = "Expedition"
481
Expedition.Parent = Teleport
482
Expedition.BackgroundColor3 = Color3.new(0, 0.333333, 0)
483
Expedition.Position = UDim2.new(0, -185, 0, 100)
484
Expedition.Size = UDim2.new(0, 100, 0, 100)
485
Expedition.Visible = false
486
Expedition.Font = Enum.Font.Arcade
487
Expedition.FontSize = Enum.FontSize.Size18
488
Expedition.Text = "Expedition Sprint Highpeak"
489
Expedition.TextColor3 = Color3.new(1, 1, 1)
490
Expedition.TextSize = 17
491
Expedition.TextWrapped = true
492
493
HighlightUI_3.Name = "HighlightUI"
494
HighlightUI_3.Parent = Expedition
495
HighlightUI_3.BackgroundColor3 = Color3.new(1, 1, 1)
496
HighlightUI_3.Position = UDim2.new(0, 0, 0, -10)
497
HighlightUI_3.Size = UDim2.new(0, 100, 0, 1)
498
HighlightUI_3.Visible = false
499
HighlightUI_3.Font = Enum.Font.SourceSans
500
HighlightUI_3.FontSize = Enum.FontSize.Size14
501
HighlightUI_3.Text = ""
502
HighlightUI_3.TextSize = 14
503
HighlightUI_3.TextWrapped = true
504
505
TrialTraversing.Name = "Trial Traversing"
506
TrialTraversing.Parent = Teleport
507
TrialTraversing.BackgroundColor3 = Color3.new(1, 0.333333, 0.498039)
508
TrialTraversing.Position = UDim2.new(0, 82, 0, 100)
509
TrialTraversing.Size = UDim2.new(0, 100, 0, 100)
510
TrialTraversing.Visible = false
511
TrialTraversing.Font = Enum.Font.Arcade
512
TrialTraversing.FontSize = Enum.FontSize.Size18
513
TrialTraversing.Text = "Trial Traversing"
514
TrialTraversing.TextColor3 = Color3.new(1, 1, 1)
515
TrialTraversing.TextSize = 17
516
TrialTraversing.TextWrapped = true
517
518
HighlightUI_4.Name = "HighlightUI"
519
HighlightUI_4.Parent = TrialTraversing
520
HighlightUI_4.BackgroundColor3 = Color3.new(1, 1, 1)
521
HighlightUI_4.Position = UDim2.new(0, 0, 0, -10)
522
HighlightUI_4.Size = UDim2.new(0, 100, 0, 1)
523
HighlightUI_4.Visible = false
524
HighlightUI_4.Font = Enum.Font.SourceSans
525
HighlightUI_4.FontSize = Enum.FontSize.Size14
526
HighlightUI_4.Text = ""
527
HighlightUI_4.TextSize = 14
528
HighlightUI_4.TextWrapped = true
529
530
TopLevelBAR.Name = "TopLevelBAR"
531
TopLevelBAR.Parent = Teleport
532
TopLevelBAR.BackgroundColor3 = Color3.new(1, 1, 1)
533
TopLevelBAR.BorderColor3 = Color3.new(0.337255, 0.337255, 0.337255)
534
TopLevelBAR.BorderSizePixel = 0
535
TopLevelBAR.Size = UDim2.new(0, 80, 0, 1)
536
TopLevelBAR.Visible = false
537
TopLevelBAR.Font = Enum.Font.SourceSans
538
TopLevelBAR.FontSize = Enum.FontSize.Size24
539
TopLevelBAR.Text = ""
540
TopLevelBAR.TextColor3 = Color3.new(0.988235, 0.988235, 0.988235)
541
TopLevelBAR.TextSize = 24
542
543
Lobby.Name = "Lobby"
544
Lobby.Parent = Teleport
545
Lobby.BackgroundColor3 = Color3.new(0, 0, 0)
546
Lobby.Position = UDim2.new(0, 360, 0, 240)
547
Lobby.Size = UDim2.new(0, 100, 0, 100)
548
Lobby.Visible = false
549
Lobby.Font = Enum.Font.Arcade
550
Lobby.FontSize = Enum.FontSize.Size28
551
Lobby.Text = "Lobby"
552
Lobby.TextColor3 = Color3.new(1, 1, 1)
553
Lobby.TextSize = 25
554
Lobby.TextWrapped = true
555
556
HighlightUI_5.Name = "HighlightUI"
557
HighlightUI_5.Parent = Lobby
558
HighlightUI_5.BackgroundColor3 = Color3.new(1, 1, 1)
559
HighlightUI_5.Position = UDim2.new(0, 0, 0, -10)
560
HighlightUI_5.Size = UDim2.new(0, 100, 0, 1)
561
HighlightUI_5.Visible = false
562
HighlightUI_5.Font = Enum.Font.SourceSans
563
HighlightUI_5.FontSize = Enum.FontSize.Size14
564
HighlightUI_5.Text = ""
565
HighlightUI_5.TextSize = 14
566
HighlightUI_5.TextWrapped = true
567
568
PlatformPervil.Name = "Platform Pervil"
569
PlatformPervil.Parent = Teleport
570
PlatformPervil.BackgroundColor3 = Color3.new(0.415686, 0.415686, 0.415686)
571
PlatformPervil.Position = UDim2.new(0, -185, 0, 240)
572
PlatformPervil.Size = UDim2.new(0, 100, 0, 100)
573
PlatformPervil.Visible = false
574
PlatformPervil.Font = Enum.Font.Arcade
575
PlatformPervil.FontSize = Enum.FontSize.Size18
576
PlatformPervil.Text = "Platform Pervil"
577
PlatformPervil.TextColor3 = Color3.new(1, 1, 1)
578
PlatformPervil.TextSize = 17
579
PlatformPervil.TextWrapped = true
580
581
HighlightUI_6.Name = "HighlightUI"
582
HighlightUI_6.Parent = PlatformPervil
583
HighlightUI_6.BackgroundColor3 = Color3.new(1, 1, 1)
584
HighlightUI_6.Position = UDim2.new(0, 0, 0, -10)
585
HighlightUI_6.Size = UDim2.new(0, 100, 0, 1)
586
HighlightUI_6.Visible = false
587
HighlightUI_6.Font = Enum.Font.SourceSans
588
HighlightUI_6.FontSize = Enum.FontSize.Size14
589
HighlightUI_6.Text = ""
590
HighlightUI_6.TextSize = 14
591
HighlightUI_6.TextWrapped = true
592
593
Avalanche.Name = "Avalanche"
594
Avalanche.Parent = Teleport
595
Avalanche.BackgroundColor3 = Color3.new(1, 1, 1)
596
Avalanche.Position = UDim2.new(0, -55, 0, 240)
597
Avalanche.Size = UDim2.new(0, 100, 0, 100)
598
Avalanche.Visible = false
599
Avalanche.Font = Enum.Font.Arcade
600
Avalanche.FontSize = Enum.FontSize.Size24
601
Avalanche.Text = "Avalanche"
602
Avalanche.TextColor3 = Color3.new(0, 0, 0)
603
Avalanche.TextSize = 19
604
Avalanche.TextWrapped = true
605
606
HighlightUI_7.Name = "HighlightUI"
607
HighlightUI_7.Parent = Avalanche
608
HighlightUI_7.BackgroundColor3 = Color3.new(1, 1, 1)
609
HighlightUI_7.Position = UDim2.new(0, 0, 0, -10)
610
HighlightUI_7.Size = UDim2.new(0, 100, 0, 1)
611
HighlightUI_7.Visible = false
612
HighlightUI_7.Font = Enum.Font.SourceSans
613
HighlightUI_7.FontSize = Enum.FontSize.Size14
614
HighlightUI_7.Text = ""
615
HighlightUI_7.TextSize = 14
616
HighlightUI_7.TextWrapped = true
617
618
SharkSurvival.Name = "Shark Survival"
619
SharkSurvival.Parent = Teleport
620
SharkSurvival.BackgroundColor3 = Color3.new(0, 0.666667, 1)
621
SharkSurvival.Position = UDim2.new(0, 82, 0, 240)
622
SharkSurvival.Size = UDim2.new(0, 100, 0, 100)
623
SharkSurvival.Visible = false
624
SharkSurvival.Font = Enum.Font.Arcade
625
SharkSurvival.FontSize = Enum.FontSize.Size18
626
SharkSurvival.Text = "Shark Survival"
627
SharkSurvival.TextColor3 = Color3.new(1, 1, 1)
628
SharkSurvival.TextSize = 17
629
SharkSurvival.TextWrapped = true
630
631
HighlightUI_8.Name = "HighlightUI"
632
HighlightUI_8.Parent = SharkSurvival
633
HighlightUI_8.BackgroundColor3 = Color3.new(1, 1, 1)
634
HighlightUI_8.Position = UDim2.new(0, 0, 0, -10)
635
HighlightUI_8.Size = UDim2.new(0, 100, 0, 1)
636
HighlightUI_8.Visible = false
637
HighlightUI_8.Font = Enum.Font.SourceSans
638
HighlightUI_8.FontSize = Enum.FontSize.Size14
639
HighlightUI_8.Text = ""
640
HighlightUI_8.TextSize = 14
641
HighlightUI_8.TextWrapped = true
642
643
DownhillRoll.Name = "Downhill Roll"
644
DownhillRoll.Parent = Teleport
645
DownhillRoll.BackgroundColor3 = Color3.new(0.333333, 0, 0)
646
DownhillRoll.Position = UDim2.new(0, 222, 0, 240)
647
DownhillRoll.Size = UDim2.new(0, 100, 0, 100)
648
DownhillRoll.Visible = false
649
DownhillRoll.Font = Enum.Font.Arcade
650
DownhillRoll.FontSize = Enum.FontSize.Size18
651
DownhillRoll.Text = "Downhill Roll"
652
DownhillRoll.TextColor3 = Color3.new(1, 1, 1)
653
DownhillRoll.TextSize = 18
654
DownhillRoll.TextWrapped = true
655
656
HighlightUI_9.Name = "HighlightUI"
657
HighlightUI_9.Parent = DownhillRoll
658
HighlightUI_9.BackgroundColor3 = Color3.new(1, 1, 1)
659
HighlightUI_9.Position = UDim2.new(0, 0, 0, -10)
660
HighlightUI_9.Size = UDim2.new(0, 100, 0, 1)
661
HighlightUI_9.Visible = false
662
HighlightUI_9.Font = Enum.Font.SourceSans
663
HighlightUI_9.FontSize = Enum.FontSize.Size14
664
HighlightUI_9.Text = ""
665
HighlightUI_9.TextSize = 14
666
HighlightUI_9.TextWrapped = true
667
668
HighRolling.Name = "High Rolling"
669
HighRolling.Parent = Teleport
670
HighRolling.BackgroundColor3 = Color3.new(1, 0, 0.498039)
671
HighRolling.Position = UDim2.new(0, 360, 0, 100)
672
HighRolling.Size = UDim2.new(0, 100, 0, 100)
673
HighRolling.Visible = false
674
HighRolling.Font = Enum.Font.Arcade
675
HighRolling.FontSize = Enum.FontSize.Size28
676
HighRolling.Text = "High Rolling"
677
HighRolling.TextColor3 = Color3.new(1, 1, 1)
678
HighRolling.TextSize = 25
679
HighRolling.TextWrapped = true
680
681
HighlightUI_10.Name = "HighlightUI"
682
HighlightUI_10.Parent = HighRolling
683
HighlightUI_10.BackgroundColor3 = Color3.new(1, 1, 1)
684
HighlightUI_10.Position = UDim2.new(0, 0, 0, -10)
685
HighlightUI_10.Size = UDim2.new(0, 100, 0, 1)
686
HighlightUI_10.Visible = false
687
HighlightUI_10.Font = Enum.Font.SourceSans
688
HighlightUI_10.FontSize = Enum.FontSize.Size14
689
HighlightUI_10.Text = ""
690
HighlightUI_10.TextSize = 14
691
HighlightUI_10.TextWrapped = true
692
693
Game.Name = "Game"
694
Game.Parent = EMGUI
695
Game.BackgroundColor3 = Color3.new(0.337255, 0.337255, 0.337255)
696
Game.BackgroundTransparency = 1
697
Game.BorderColor3 = Color3.new(0.337255, 0.337255, 0.337255)
698
Game.BorderSizePixel = 0
699
Game.Position = UDim2.new(0.449999988, 0, 0.0199999996, 0)
700
Game.Size = UDim2.new(0, 80, 0, 40)
701
Game.Font = Enum.Font.SourceSans
702
Game.FontSize = Enum.FontSize.Size24
703
Game.Text = "Games"
704
Game.TextColor3 = Color3.new(0.988235, 0.988235, 0.988235)
705
Game.TextSize = 24
706
707
BulletEvasion.Name = "Bullet Evasion"
708
BulletEvasion.Parent = Game
709
BulletEvasion.BackgroundColor3 = Color3.new(0, 0, 0)
710
BulletEvasion.Position = UDim2.new(0, -95, 0, 100)
711
BulletEvasion.Size = UDim2.new(0, 100, 0, 100)
712
BulletEvasion.Visible = false
713
BulletEvasion.Font = Enum.Font.Arcade
714
BulletEvasion.FontSize = Enum.FontSize.Size24
715
BulletEvasion.Text = "Bullet Evasion"
716
BulletEvasion.TextColor3 = Color3.new(1, 1, 1)
717
BulletEvasion.TextSize = 20
718
BulletEvasion.TextWrapped = true
719
720
HighlightUI_11.Name = "HighlightUI"
721
HighlightUI_11.Parent = BulletEvasion
722
HighlightUI_11.BackgroundColor3 = Color3.new(1, 1, 1)
723
HighlightUI_11.Position = UDim2.new(0, 0, 0, -10)
724
HighlightUI_11.Size = UDim2.new(0, 100, 0, 1)
725
HighlightUI_11.Visible = false
726
HighlightUI_11.Font = Enum.Font.SourceSans
727
HighlightUI_11.FontSize = Enum.FontSize.Size14
728
HighlightUI_11.Text = ""
729
HighlightUI_11.TextSize = 14
730
HighlightUI_11.TextWrapped = true
731
732
HighPressure.Name = "High Pressure"
733
HighPressure.Parent = Game
734
HighPressure.BackgroundColor3 = Color3.new(0.364706, 0.364706, 0.180392)
735
HighPressure.Position = UDim2.new(0, -255, 0, 100)
736
HighPressure.Size = UDim2.new(0, 100, 0, 100)
737
HighPressure.Visible = false
738
HighPressure.Font = Enum.Font.Arcade
739
HighPressure.FontSize = Enum.FontSize.Size24
740
HighPressure.Text = "High Pressure"
741
HighPressure.TextColor3 = Color3.new(1, 1, 1)
742
HighPressure.TextSize = 20
743
HighPressure.TextWrapped = true
744
745
HighlightUI_12.Name = "HighlightUI"
746
HighlightUI_12.Parent = HighPressure
747
HighlightUI_12.BackgroundColor3 = Color3.new(1, 1, 1)
748
HighlightUI_12.Position = UDim2.new(0, 0, 0, -10)
749
HighlightUI_12.Size = UDim2.new(0, 100, 0, 1)
750
HighlightUI_12.Font = Enum.Font.SourceSans
751
HighlightUI_12.FontSize = Enum.FontSize.Size14
752
HighlightUI_12.Text = ""
753
HighlightUI_12.TextSize = 14
754
HighlightUI_12.TextWrapped = true
755
756
LaserGuidance.Name = "Laser Guidance"
757
LaserGuidance.Parent = Game
758
LaserGuidance.BackgroundColor3 = Color3.new(0.741176, 0, 0)
759
LaserGuidance.Position = UDim2.new(0, 75, 0, 100)
760
LaserGuidance.Size = UDim2.new(0, 100, 0, 100)
761
LaserGuidance.Visible = false
762
LaserGuidance.Font = Enum.Font.Arcade
763
LaserGuidance.FontSize = Enum.FontSize.Size24
764
LaserGuidance.Text = "Laser Guidance"
765
LaserGuidance.TextColor3 = Color3.new(1, 1, 1)
766
LaserGuidance.TextSize = 22
767
LaserGuidance.TextWrapped = true
768
769
HighlightUI_13.Name = "HighlightUI"
770
HighlightUI_13.Parent = LaserGuidance
771
HighlightUI_13.BackgroundColor3 = Color3.new(1, 1, 1)
772
HighlightUI_13.Position = UDim2.new(0, 0, 0, -10)
773
HighlightUI_13.Size = UDim2.new(0, 100, 0, 1)
774
HighlightUI_13.Visible = false
775
HighlightUI_13.Font = Enum.Font.SourceSans
776
HighlightUI_13.FontSize = Enum.FontSize.Size14
777
HighlightUI_13.Text = ""
778
HighlightUI_13.TextSize = 14
779
HighlightUI_13.TextWrapped = true
780
781
TopLevelBAR_2.Name = "TopLevelBAR"
782
TopLevelBAR_2.Parent = Game
783
TopLevelBAR_2.BackgroundColor3 = Color3.new(1, 1, 1)
784
TopLevelBAR_2.BorderColor3 = Color3.new(0.337255, 0.337255, 0.337255)
785
TopLevelBAR_2.BorderSizePixel = 0
786
TopLevelBAR_2.Size = UDim2.new(0, 80, 0, 1)
787
TopLevelBAR_2.Visible = false
788
TopLevelBAR_2.Font = Enum.Font.SourceSans
789
TopLevelBAR_2.FontSize = Enum.FontSize.Size24
790
TopLevelBAR_2.Text = ""
791
TopLevelBAR_2.TextColor3 = Color3.new(0.988235, 0.988235, 0.988235)
792
TopLevelBAR_2.TextSize = 24
793
794
TheSweeper.Name = "The Sweeper"
795
TheSweeper.Parent = Game
796
TheSweeper.BackgroundColor3 = Color3.new(0, 0.333333, 1)
797
TheSweeper.Position = UDim2.new(0, -175, 0, 240)
798
TheSweeper.Size = UDim2.new(0, 100, 0, 100)
799
TheSweeper.Visible = false
800
TheSweeper.Font = Enum.Font.Arcade
801
TheSweeper.FontSize = Enum.FontSize.Size24
802
TheSweeper.Text = "The Sweeper"
803
TheSweeper.TextColor3 = Color3.new(1, 1, 1)
804
TheSweeper.TextSize = 20
805
TheSweeper.TextWrapped = true
806
807
HighlightUI_14.Name = "HighlightUI"
808
HighlightUI_14.Parent = TheSweeper
809
HighlightUI_14.BackgroundColor3 = Color3.new(1, 1, 1)
810
HighlightUI_14.Position = UDim2.new(0, 0, 0, -10)
811
HighlightUI_14.Size = UDim2.new(0, 100, 0, 1)
812
HighlightUI_14.Visible = false
813
HighlightUI_14.Font = Enum.Font.SourceSans
814
HighlightUI_14.FontSize = Enum.FontSize.Size14
815
HighlightUI_14.Text = ""
816
HighlightUI_14.TextSize = 14
817
HighlightUI_14.TextWrapped = true
818
819
LavaForecast.Name = "Lava Forecast"
820
LavaForecast.Parent = Game
821
LavaForecast.BackgroundColor3 = Color3.new(1, 0.333333, 0)
822
LavaForecast.Position = UDim2.new(0, 160, 0, 240)
823
LavaForecast.Size = UDim2.new(0, 100, 0, 100)
824
LavaForecast.Visible = false
825
LavaForecast.Font = Enum.Font.Arcade
826
LavaForecast.FontSize = Enum.FontSize.Size24
827
LavaForecast.Text = "Lava Forecast"
828
LavaForecast.TextColor3 = Color3.new(1, 1, 1)
829
LavaForecast.TextSize = 20
830
LavaForecast.TextWrapped = true
831
832
HighlightUI_15.Name = "HighlightUI"
833
HighlightUI_15.Parent = LavaForecast
834
HighlightUI_15.BackgroundColor3 = Color3.new(1, 1, 1)
835
HighlightUI_15.Position = UDim2.new(0, 0, 0, -10)
836
HighlightUI_15.Size = UDim2.new(0, 100, 0, 1)
837
HighlightUI_15.Visible = false
838
HighlightUI_15.Font = Enum.Font.SourceSans
839
HighlightUI_15.FontSize = Enum.FontSize.Size14
840
HighlightUI_15.Text = ""
841
HighlightUI_15.TextSize = 14
842
HighlightUI_15.TextWrapped = true
843
844
Activate.Name = "Activate"
845
Activate.Parent = Game
846
Activate.BackgroundColor3 = Color3.new(0, 1, 0)
847
Activate.Position = UDim2.new(0, -60, 0, 275)
848
Activate.Size = UDim2.new(0, 200, 0, 30)
849
Activate.Visible = false
850
Activate.Font = Enum.Font.Arcade
851
Activate.FontSize = Enum.FontSize.Size24
852
Activate.Text = "Activate"
853
Activate.TextColor3 = Color3.new(1, 1, 1)
854
Activate.TextSize = 20
855
Activate.TextWrapped = true
856
857
LaserCutting.Name = "Laser Cutting"
858
LaserCutting.Parent = Game
859
LaserCutting.BackgroundColor3 = Color3.new(0.243137, 0, 0)
860
LaserCutting.Position = UDim2.new(0, 245, 0, 100)
861
LaserCutting.Size = UDim2.new(0, 100, 0, 100)
862
LaserCutting.Visible = false
863
LaserCutting.Font = Enum.Font.Arcade
864
LaserCutting.FontSize = Enum.FontSize.Size24
865
LaserCutting.Text = "Laser Cutting"
866
LaserCutting.TextColor3 = Color3.new(1, 1, 1)
867
LaserCutting.TextSize = 20
868
LaserCutting.TextWrapped = true
869
870
HighlightUI_16.Name = "HighlightUI"
871
HighlightUI_16.Parent = LaserCutting
872
HighlightUI_16.BackgroundColor3 = Color3.new(1, 1, 1)
873
HighlightUI_16.Position = UDim2.new(0, 0, 0, -10)
874
HighlightUI_16.Size = UDim2.new(0, 100, 0, 1)
875
HighlightUI_16.Visible = false
876
HighlightUI_16.Font = Enum.Font.SourceSans
877
HighlightUI_16.FontSize = Enum.FontSize.Size14
878
HighlightUI_16.Text = ""
879
HighlightUI_16.TextSize = 14
880
HighlightUI_16.TextWrapped = true
881
882
Player.Name = "Player"
883
Player.Parent = EMGUI
884
Player.BackgroundColor3 = Color3.new(0.337255, 0.337255, 0.337255)
885
Player.BackgroundTransparency = 1
886
Player.BorderColor3 = Color3.new(0.67451, 0.67451, 0.67451)
887
Player.BorderSizePixel = 0
888
Player.Position = UDim2.new(0.600000024, 0, 0.0199999996, 0)
889
Player.Size = UDim2.new(0, 80, 0, 40)
890
Player.Font = Enum.Font.SourceSans
891
Player.FontSize = Enum.FontSize.Size24
892
Player.Text = "Player"
893
Player.TextColor3 = Color3.new(0.988235, 0.988235, 0.988235)
894
Player.TextSize = 24
895
896
Noclip.Name = "Noclip"
897
Noclip.Parent = Player
898
Noclip.BackgroundColor3 = Color3.new(0.333333, 0.333333, 0.498039)
899
Noclip.Position = UDim2.new(0, -360, 0, 100)
900
Noclip.Size = UDim2.new(0, 100, 0, 100)
901
Noclip.Visible = false
902
Noclip.Font = Enum.Font.Arcade
903
Noclip.FontSize = Enum.FontSize.Size24
904
Noclip.Text = "Noclip"
905
Noclip.TextColor3 = Color3.new(1, 1, 1)
906
Noclip.TextSize = 24
907
908
Property1.Name = "Property1"
909
Property1.Parent = Noclip
910
Property1.BackgroundColor3 = Color3.new(1, 1, 1)
911
Property1.BackgroundTransparency = 1
912
Property1.Position = UDim2.new(0, 0, 0, 140)
913
Property1.Size = UDim2.new(0, 450, 0, 30)
914
Property1.Font = Enum.Font.Arcade
915
Property1.FontSize = Enum.FontSize.Size18
916
Property1.Text = "Noclip + Fly"
917
Property1.TextColor3 = Color3.new(1, 1, 1)
918
Property1.TextSize = 18
919
Property1.TextXAlignment = Enum.TextXAlignment.Left
920
921
Property2.Name = "Property2"
922
Property2.Parent = Noclip
923
Property2.BackgroundColor3 = Color3.new(1, 1, 1)
924
Property2.BackgroundTransparency = 1
925
Property2.Position = UDim2.new(0, 0, 0, 170)
926
Property2.Size = UDim2.new(0, 450, 0, 30)
927
Property2.Font = Enum.Font.Arcade
928
Property2.FontSize = Enum.FontSize.Size18
929
Property2.Text = "Works in R15 only"
930
Property2.TextColor3 = Color3.new(1, 1, 1)
931
Property2.TextSize = 18
932
Property2.TextXAlignment = Enum.TextXAlignment.Left
933
934
Property3.Name = "Property3"
935
Property3.Parent = Noclip
936
Property3.BackgroundColor3 = Color3.new(1, 1, 1)
937
Property3.BackgroundTransparency = 1
938
Property3.Position = UDim2.new(0, 0, 0, 200)
939
Property3.Size = UDim2.new(0, 450, 0, 30)
940
Property3.Font = Enum.Font.Arcade
941
Property3.FontSize = Enum.FontSize.Size18
942
Property3.Text = "Fly through walls to victory!"
943
Property3.TextColor3 = Color3.new(1, 1, 1)
944
Property3.TextSize = 18
945
Property3.TextXAlignment = Enum.TextXAlignment.Left
946
947
On.Name = "On"
948
On.Parent = Noclip
949
On.Active = false
950
On.BackgroundColor3 = Color3.new(0.780392, 0.192157, 0.0901961)
951
On.BorderColor3 = Color3.new(0.780392, 0.192157, 0.0901961)
952
On.Position = UDim2.new(0, 390, 0, 150)
953
On.Size = UDim2.new(0, 100, 0, 60)
954
On.Font = Enum.Font.Arcade
955
On.FontSize = Enum.FontSize.Size24
956
On.Text = "Toggle"
957
On.TextColor3 = Color3.new(1, 1, 1)
958
On.TextSize = 24
959
960
HighlightUI_17.Name = "HighlightUI"
961
HighlightUI_17.Parent = Noclip
962
HighlightUI_17.BackgroundColor3 = Color3.new(1, 1, 1)
963
HighlightUI_17.Position = UDim2.new(0, 0, 0, -10)
964
HighlightUI_17.Size = UDim2.new(0, 100, 0, 1)
965
HighlightUI_17.Font = Enum.Font.Arcade
966
HighlightUI_17.FontSize = Enum.FontSize.Size14
967
HighlightUI_17.Text = ""
968
HighlightUI_17.TextSize = 14
969
HighlightUI_17.TextWrapped = true
970
971
Fly.Name = "Fly"
972
Fly.Parent = Player
973
Fly.BackgroundColor3 = Color3.new(0.333333, 0.666667, 1)
974
Fly.Position = UDim2.new(0, -200, 0, 100)
975
Fly.Size = UDim2.new(0, 100, 0, 100)
976
Fly.Visible = false
977
Fly.Font = Enum.Font.Arcade
978
Fly.FontSize = Enum.FontSize.Size24
979
Fly.Text = "Fly"
980
Fly.TextColor3 = Color3.new(1, 1, 1)
981
Fly.TextSize = 24
982
983
Property1_2.Name = "Property1"
984
Property1_2.Parent = Fly
985
Property1_2.BackgroundColor3 = Color3.new(1, 1, 1)
986
Property1_2.BackgroundTransparency = 1
987
Property1_2.Position = UDim2.new(0, -160, 0, 140)
988
Property1_2.Size = UDim2.new(0, 450, 0, 30)
989
Property1_2.Visible = false
990
Property1_2.Font = Enum.Font.Arcade
991
Property1_2.FontSize = Enum.FontSize.Size18
992
Property1_2.Text = "Fly (Do not toggle with noclip)"
993
Property1_2.TextColor3 = Color3.new(1, 1, 1)
994
Property1_2.TextSize = 18
995
Property1_2.TextXAlignment = Enum.TextXAlignment.Left
996
997
Property2_2.Name = "Property2"
998
Property2_2.Parent = Fly
999
Property2_2.BackgroundColor3 = Color3.new(1, 1, 1)
1000
Property2_2.BackgroundTransparency = 1
1001
Property2_2.Position = UDim2.new(0, -160, 0, 170)
1002
Property2_2.Size = UDim2.new(0, 450, 0, 30)
1003
Property2_2.Visible = false
1004
Property2_2.Font = Enum.Font.Arcade
1005
Property2_2.FontSize = Enum.FontSize.Size18
1006
Property2_2.Text = "Works in R15"
1007
Property2_2.TextColor3 = Color3.new(1, 1, 1)
1008
Property2_2.TextSize = 18
1009
Property2_2.TextXAlignment = Enum.TextXAlignment.Left
1010
1011
Property3_2.Name = "Property3"
1012
Property3_2.Parent = Fly
1013
Property3_2.BackgroundColor3 = Color3.new(1, 1, 1)
1014
Property3_2.BackgroundTransparency = 1
1015
Property3_2.Position = UDim2.new(0, -160, 0, 200)
1016
Property3_2.Size = UDim2.new(0, 450, 0, 30)
1017
Property3_2.Visible = false
1018
Property3_2.Font = Enum.Font.Arcade
1019
Property3_2.FontSize = Enum.FontSize.Size18
1020
Property3_2.Text = "Makes you fly away into the skies"
1021
Property3_2.TextColor3 = Color3.new(1, 1, 1)
1022
Property3_2.TextSize = 18
1023
Property3_2.TextXAlignment = Enum.TextXAlignment.Left
1024
1025
Toggle.Name = "Toggle"
1026
Toggle.Parent = Fly
1027
Toggle.Active = false
1028
Toggle.BackgroundColor3 = Color3.new(0.780392, 0.192157, 0.0901961)
1029
Toggle.BorderColor3 = Color3.new(0.780392, 0.192157, 0.0901961)
1030
Toggle.Position = UDim2.new(0, 270, 0, 150)
1031
Toggle.Size = UDim2.new(0, 100, 0, 60)
1032
Toggle.Visible = false
1033
Toggle.Font = Enum.Font.Arcade
1034
Toggle.FontSize = Enum.FontSize.Size24
1035
Toggle.Text = "Toggle"
1036
Toggle.TextColor3 = Color3.new(1, 1, 1)
1037
Toggle.TextSize = 24
1038
1039
HighlightUI_18.Name = "HighlightUI"
1040
HighlightUI_18.Parent = Fly
1041
HighlightUI_18.BackgroundColor3 = Color3.new(1, 1, 1)
1042
HighlightUI_18.Position = UDim2.new(0, 0, 0, -10)
1043
HighlightUI_18.Size = UDim2.new(0, 100, 0, 1)
1044
HighlightUI_18.Visible = false
1045
HighlightUI_18.Font = Enum.Font.Arcade
1046
HighlightUI_18.FontSize = Enum.FontSize.Size14
1047
HighlightUI_18.Text = ""
1048
HighlightUI_18.TextSize = 14
1049
HighlightUI_18.TextWrapped = true
1050
1051
HighJump.Name = "HighJump"
1052
HighJump.Parent = Player
1053
HighJump.BackgroundColor3 = Color3.new(0.666667, 0.666667, 0.498039)
1054
HighJump.Position = UDim2.new(0, 140, 0, 100)
1055
HighJump.Size = UDim2.new(0, 100, 0, 100)
1056
HighJump.Visible = false
1057
HighJump.Font = Enum.Font.Arcade
1058
HighJump.FontSize = Enum.FontSize.Size24
1059
HighJump.Text = "High Jump"
1060
HighJump.TextColor3 = Color3.new(1, 1, 1)
1061
HighJump.TextSize = 20
1062
HighJump.TextWrapped = true
1063
1064
Toggle_2.Name = "Toggle"
1065
Toggle_2.Parent = HighJump
1066
Toggle_2.Active = false
1067
Toggle_2.BackgroundColor3 = Color3.new(0.780392, 0.192157, 0.0901961)
1068
Toggle_2.BorderColor3 = Color3.new(0.780392, 0.192157, 0.0901961)
1069
Toggle_2.Position = UDim2.new(0, -60, 0, 150)
1070
Toggle_2.Size = UDim2.new(0, 100, 0, 60)
1071
Toggle_2.Visible = false
1072
Toggle_2.Font = Enum.Font.Arcade
1073
Toggle_2.FontSize = Enum.FontSize.Size24
1074
Toggle_2.Text = "Toggle"
1075
Toggle_2.TextColor3 = Color3.new(1, 1, 1)
1076
Toggle_2.TextSize = 24
1077
1078
Property1_3.Name = "Property1"
1079
Property1_3.Parent = HighJump
1080
Property1_3.BackgroundColor3 = Color3.new(1, 1, 1)
1081
Property1_3.BackgroundTransparency = 1
1082
Property1_3.Position = UDim2.new(0, -500, 0, 140)
1083
Property1_3.Size = UDim2.new(0, 450, 0, 30)
1084
Property1_3.Visible = false
1085
Property1_3.Font = Enum.Font.Arcade
1086
Property1_3.FontSize = Enum.FontSize.Size18
1087
Property1_3.Text = "Gives you high jump"
1088
Property1_3.TextColor3 = Color3.new(1, 1, 1)
1089
Property1_3.TextSize = 18
1090
Property1_3.TextXAlignment = Enum.TextXAlignment.Left
1091
1092
Property2_3.Name = "Property2"
1093
Property2_3.Parent = HighJump
1094
Property2_3.BackgroundColor3 = Color3.new(1, 1, 1)
1095
Property2_3.BackgroundTransparency = 1
1096
Property2_3.Position = UDim2.new(0, -500, 0, 170)
1097
Property2_3.Size = UDim2.new(0, 450, 0, 30)
1098
Property2_3.Visible = false
1099
Property2_3.Font = Enum.Font.Arcade
1100
Property2_3.FontSize = Enum.FontSize.Size18
1101
Property2_3.Text = "Works in R15"
1102
Property2_3.TextColor3 = Color3.new(1, 1, 1)
1103
Property2_3.TextSize = 18
1104
Property2_3.TextXAlignment = Enum.TextXAlignment.Left
1105
1106
Property3_3.Name = "Property3"
1107
Property3_3.Parent = HighJump
1108
Property3_3.BackgroundColor3 = Color3.new(1, 1, 1)
1109
Property3_3.BackgroundTransparency = 1
1110
Property3_3.Position = UDim2.new(0, -500, 0, 200)
1111
Property3_3.Size = UDim2.new(0, 450, 0, 30)
1112
Property3_3.Visible = false
1113
Property3_3.Font = Enum.Font.Arcade
1114
Property3_3.FontSize = Enum.FontSize.Size18
1115
Property3_3.Text = "Now jump into the skies and win the minigames!"
1116
Property3_3.TextColor3 = Color3.new(1, 1, 1)
1117
Property3_3.TextSize = 18
1118
Property3_3.TextXAlignment = Enum.TextXAlignment.Left
1119
1120
HighlightUI_19.Name = "HighlightUI"
1121
HighlightUI_19.Parent = HighJump
1122
HighlightUI_19.BackgroundColor3 = Color3.new(1, 1, 1)
1123
HighlightUI_19.Position = UDim2.new(0, 0, 0, -10)
1124
HighlightUI_19.Size = UDim2.new(0, 100, 0, 1)
1125
HighlightUI_19.Visible = false
1126
HighlightUI_19.Font = Enum.Font.Arcade
1127
HighlightUI_19.FontSize = Enum.FontSize.Size14
1128
HighlightUI_19.Text = ""
1129
HighlightUI_19.TextSize = 14
1130
HighlightUI_19.TextWrapped = true
1131
1132
Speed.Name = "Speed"
1133
Speed.Parent = Player
1134
Speed.BackgroundColor3 = Color3.new(1, 0.333333, 0.498039)
1135
Speed.Position = UDim2.new(0, -30, 0, 100)
1136
Speed.Size = UDim2.new(0, 100, 0, 100)
1137
Speed.Visible = false
1138
Speed.Font = Enum.Font.Arcade
1139
Speed.FontSize = Enum.FontSize.Size24
1140
Speed.Text = "Speed"
1141
Speed.TextColor3 = Color3.new(1, 1, 1)
1142
Speed.TextSize = 24
1143
1144
HighlightUI_20.Name = "HighlightUI"
1145
HighlightUI_20.Parent = Speed
1146
HighlightUI_20.BackgroundColor3 = Color3.new(1, 1, 1)
1147
HighlightUI_20.Position = UDim2.new(0, 0, 0, -10)
1148
HighlightUI_20.Size = UDim2.new(0, 100, 0, 1)
1149
HighlightUI_20.Visible = false
1150
HighlightUI_20.Font = Enum.Font.Arcade
1151
HighlightUI_20.FontSize = Enum.FontSize.Size14
1152
HighlightUI_20.Text = ""
1153
HighlightUI_20.TextSize = 14
1154
HighlightUI_20.TextWrapped = true
1155
1156
Toggle_3.Name = "Toggle"
1157
Toggle_3.Parent = Speed
1158
Toggle_3.Active = false
1159
Toggle_3.BackgroundColor3 = Color3.new(0.780392, 0.192157, 0.0901961)
1160
Toggle_3.BorderColor3 = Color3.new(0.780392, 0.192157, 0.0901961)
1161
Toggle_3.Position = UDim2.new(0, 120, 0, 150)
1162
Toggle_3.Size = UDim2.new(0, 100, 0, 60)
1163
Toggle_3.Visible = false
1164
Toggle_3.Font = Enum.Font.Arcade
1165
Toggle_3.FontSize = Enum.FontSize.Size24
1166
Toggle_3.Text = "Toggle"
1167
Toggle_3.TextColor3 = Color3.new(1, 1, 1)
1168
Toggle_3.TextSize = 24
1169
1170
Property1_4.Name = "Property1"
1171
Property1_4.Parent = Speed
1172
Property1_4.BackgroundColor3 = Color3.new(1, 1, 1)
1173
Property1_4.BackgroundTransparency = 1
1174
Property1_4.Position = UDim2.new(0, -330, 0, 140)
1175
Property1_4.Size = UDim2.new(0, 450, 0, 30)
1176
Property1_4.Visible = false
1177
Property1_4.Font = Enum.Font.Arcade
1178
Property1_4.FontSize = Enum.FontSize.Size18
1179
Property1_4.Text = "Speed hack"
1180
Property1_4.TextColor3 = Color3.new(1, 1, 1)
1181
Property1_4.TextSize = 18
1182
Property1_4.TextXAlignment = Enum.TextXAlignment.Left
1183
1184
Property2_4.Name = "Property2"
1185
Property2_4.Parent = Speed
1186
Property2_4.BackgroundColor3 = Color3.new(1, 1, 1)
1187
Property2_4.BackgroundTransparency = 1
1188
Property2_4.Position = UDim2.new(0, -330, 0, 170)
1189
Property2_4.Size = UDim2.new(0, 450, 0, 30)
1190
Property2_4.Visible = false
1191
Property2_4.Font = Enum.Font.Arcade
1192
Property2_4.FontSize = Enum.FontSize.Size18
1193
Property2_4.Text = "Works in R15! "
1194
Property2_4.TextColor3 = Color3.new(1, 1, 1)
1195
Property2_4.TextSize = 18
1196
Property2_4.TextXAlignment = Enum.TextXAlignment.Left
1197
1198
Property3_4.Name = "Property3"
1199
Property3_4.Parent = Speed
1200
Property3_4.BackgroundColor3 = Color3.new(1, 1, 1)
1201
Property3_4.BackgroundTransparency = 1
1202
Property3_4.Position = UDim2.new(0, -330, 0, 200)
1203
Property3_4.Size = UDim2.new(0, 450, 0, 30)
1204
Property3_4.Visible = false
1205
Property3_4.Font = Enum.Font.Arcade
1206
Property3_4.FontSize = Enum.FontSize.Size18
1207
Property3_4.Text = "Gives you 50 walkspeed to uh.."
1208
Property3_4.TextColor3 = Color3.new(1, 1, 1)
1209
Property3_4.TextSize = 18
1210
Property3_4.TextXAlignment = Enum.TextXAlignment.Left
1211
1212
TopLevelBAR_3.Name = "TopLevelBAR"
1213
TopLevelBAR_3.Parent = Player
1214
TopLevelBAR_3.BackgroundColor3 = Color3.new(1, 1, 1)
1215
TopLevelBAR_3.BorderColor3 = Color3.new(0.337255, 0.337255, 0.337255)
1216
TopLevelBAR_3.BorderSizePixel = 0
1217
TopLevelBAR_3.Size = UDim2.new(0, 80, 0, 1)
1218
TopLevelBAR_3.Visible = false
1219
TopLevelBAR_3.Font = Enum.Font.SourceSans
1220
TopLevelBAR_3.FontSize = Enum.FontSize.Size24
1221
TopLevelBAR_3.Text = ""
1222
TopLevelBAR_3.TextColor3 = Color3.new(0.988235, 0.988235, 0.988235)
1223
TopLevelBAR_3.TextSize = 24
1224
1225
DividerUI.Name = "DividerUI"
1226
DividerUI.Parent = Player
1227
DividerUI.BackgroundColor3 = Color3.new(1, 1, 1)
1228
DividerUI.Position = UDim2.new(0, -360, 0, 220)
1229
DividerUI.Size = UDim2.new(0, 600, 0, 1)
1230
DividerUI.Font = Enum.Font.SourceSans
1231
DividerUI.FontSize = Enum.FontSize.Size14
1232
DividerUI.Text = ""
1233
DividerUI.TextSize = 14
1234
1235
Credits.Name = "Credits"
1236
Credits.Parent = EMGUI
1237
Credits.BackgroundColor3 = Color3.new(0.337255, 0.337255, 0.337255)
1238
Credits.BackgroundTransparency = 1
1239
Credits.BorderColor3 = Color3.new(0.67451, 0.67451, 0.67451)
1240
Credits.BorderSizePixel = 0
1241
Credits.Position = UDim2.new(0.74000001, 0, 0.0199999996, 0)
1242
Credits.Size = UDim2.new(0, 80, 0, 40)
1243
Credits.Font = Enum.Font.SourceSans
1244
Credits.FontSize = Enum.FontSize.Size24
1245
Credits.Text = "Credits"
1246
Credits.TextColor3 = Color3.new(0.988235, 0.988235, 0.988235)
1247
Credits.TextSize = 24
1248
1249
TopLevelBAR_4.Name = "TopLevelBAR"
1250
TopLevelBAR_4.Parent = Credits
1251
TopLevelBAR_4.BackgroundColor3 = Color3.new(1, 1, 1)
1252
TopLevelBAR_4.BorderColor3 = Color3.new(0.337255, 0.337255, 0.337255)
1253
TopLevelBAR_4.BorderSizePixel = 0
1254
TopLevelBAR_4.Size = UDim2.new(0, 80, 0, 1)
1255
TopLevelBAR_4.Visible = false
1256
TopLevelBAR_4.Font = Enum.Font.SourceSans
1257
TopLevelBAR_4.FontSize = Enum.FontSize.Size24
1258
TopLevelBAR_4.Text = ""
1259
TopLevelBAR_4.TextColor3 = Color3.new(0.988235, 0.988235, 0.988235)
1260
TopLevelBAR_4.TextSize = 24
1261
1262
Creds.Name = "Creds"
1263
Creds.Parent = Credits
1264
Creds.BackgroundColor3 = Color3.new(0.780392, 0.192157, 0.0901961)
1265
Creds.BackgroundTransparency = 1
1266
Creds.BorderColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
1267
Creds.BorderSizePixel = 0
1268
Creds.Position = UDim2.new(0, -355, 0, 45)
1269
Creds.Size = UDim2.new(0, 400, 0, 100)
1270
Creds.Visible = false
1271
Creds.Font = Enum.Font.SourceSans
1272
Creds.FontSize = Enum.FontSize.Size36
1273
Creds.Text = "Epic Minigames GUI by Squid || Credits"
1274
Creds.TextColor3 = Color3.new(0.996078, 0.996078, 0.996078)
1275
Creds.TextSize = 35
1276
1277
DividerUI_2.Name = "DividerUI"
1278
DividerUI_2.Parent = Credits
1279
DividerUI_2.BackgroundColor3 = Color3.new(1, 1, 1)
1280
DividerUI_2.Position = UDim2.new(0, -455, 0, 125)
1281
DividerUI_2.Size = UDim2.new(0, 600, 0, 1)
1282
DividerUI_2.Visible = false
1283
DividerUI_2.Font = Enum.Font.SourceSans
1284
DividerUI_2.FontSize = Enum.FontSize.Size14
1285
DividerUI_2.Text = ""
1286
DividerUI_2.TextSize = 14
1287
1288
Creds_2.Name = "Creds"
1289
Creds_2.Parent = Credits
1290
Creds_2.BackgroundColor3 = Color3.new(0.780392, 0.192157, 0.0901961)
1291
Creds_2.BackgroundTransparency = 1
1292
Creds_2.BorderColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
1293
Creds_2.BorderSizePixel = 0
1294
Creds_2.Position = UDim2.new(0, -400, 0, 130)
1295
Creds_2.Size = UDim2.new(0, 500, 0, 50)
1296
Creds_2.Visible = false
1297
Creds_2.Font = Enum.Font.SourceSans
1298
Creds_2.FontSize = Enum.FontSize.Size36
1299
Creds_2.Text = "Kujo (UID = 312) || Noclip Script"
1300
Creds_2.TextColor3 = Color3.new(0.996078, 0.996078, 0.996078)
1301
Creds_2.TextSize = 35
1302
1303
Creds_3.Name = "Creds"
1304
Creds_3.Parent = Credits
1305
Creds_3.BackgroundColor3 = Color3.new(0.780392, 0.192157, 0.0901961)
1306
Creds_3.BackgroundTransparency = 1
1307
Creds_3.BorderColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
1308
Creds_3.BorderSizePixel = 0
1309
Creds_3.Position = UDim2.new(0, -400, 0, 180)
1310
Creds_3.Size = UDim2.new(0, 500, 0, 50)
1311
Creds_3.Visible = false
1312
Creds_3.Font = Enum.Font.SourceSans
1313
Creds_3.FontSize = Enum.FontSize.Size36
1314
Creds_3.Text = "Ignoramical (UID = 235495) || Fly Script"
1315
Creds_3.TextColor3 = Color3.new(0.996078, 0.996078, 0.996078)
1316
Creds_3.TextSize = 35
1317
1318
DividerUI_3.Name = "DividerUI"
1319
DividerUI_3.Parent = Credits
1320
DividerUI_3.BackgroundColor3 = Color3.new(1, 1, 1)
1321
DividerUI_3.Position = UDim2.new(0, -455, 0, 245)
1322
DividerUI_3.Size = UDim2.new(0, 600, 0, 1)
1323
DividerUI_3.Visible = false
1324
DividerUI_3.Font = Enum.Font.SourceSans
1325
DividerUI_3.FontSize = Enum.FontSize.Size14
1326
DividerUI_3.Text = ""
1327
DividerUI_3.TextSize = 14
1328
1329
Creds_4.Name = "Creds"
1330
Creds_4.Parent = Credits
1331
Creds_4.BackgroundColor3 = Color3.new(0.780392, 0.192157, 0.0901961)
1332
Creds_4.BackgroundTransparency = 1
1333
Creds_4.BorderColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
1334
Creds_4.BorderSizePixel = 0
1335
Creds_4.Position = UDim2.new(0, -400, 0, 250)
1336
Creds_4.Size = UDim2.new(0, 500, 0, 50)
1337
Creds_4.Visible = false
1338
Creds_4.Font = Enum.Font.SourceSans
1339
Creds_4.FontSize = Enum.FontSize.Size36
1340
Creds_4.Text = "Squid"
1341
Creds_4.TextColor3 = Color3.new(0.996078, 0.996078, 0.996078)
1342
Creds_4.TextSize = 35
1343
1344
TransparencyAERO.Name = "TransparencyAERO"
1345
TransparencyAERO.Parent = EMGUI
1346
TransparencyAERO.BackgroundColor3 = Color3.new(1, 0, 0)
1347
TransparencyAERO.BackgroundTransparency = 0.69999998807907
1348
TransparencyAERO.BorderColor3 = Color3.new(1, 1, 1)
1349
TransparencyAERO.Position = UDim2.new(0, 0, -0.0299999993, 0)
1350
TransparencyAERO.Size = UDim2.new(1, 0, 0, 10)
1351
TransparencyAERO.Font = Enum.Font.SourceSans
1352
TransparencyAERO.FontSize = Enum.FontSize.Size14
1353
TransparencyAERO.Text = ""
1354
TransparencyAERO.TextSize = 14
1355
1356
EMText.Name = "EMText"
1357
EMText.Parent = EMGUI
1358
EMText.BackgroundColor3 = Color3.new(0.666667, 1, 0.498039)
1359
EMText.BorderColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
1360
EMText.BorderSizePixel = 0
1361
EMText.Position = UDim2.new(0.0500000007, 0, 0, -30)
1362
EMText.Size = UDim2.new(0, 100, 0, 100)
1363
EMText.Font = Enum.Font.SourceSans
1364
EMText.FontSize = Enum.FontSize.Size48
1365
EMText.Text = ""
1366
EMText.TextColor3 = Color3.new(0.996078, 0.996078, 0.996078)
1367
EMText.TextSize = 48
1368
1369
ImageLabel.Parent = EMText
1370
ImageLabel.BackgroundColor3 = Color3.new(1, 1, 1)
1371
ImageLabel.BackgroundTransparency = 1
1372
ImageLabel.BorderSizePixel = 0
1373
ImageLabel.Size = UDim2.new(0, 100, 0, 100)
1374
ImageLabel.Image = "rbxassetid://584462337"
1375
1376
SelectTabHint.Name = "SelectTabHint"
1377
SelectTabHint.Parent = EMGUI
1378
SelectTabHint.BackgroundColor3 = Color3.new(0.780392, 0.192157, 0.0901961)
1379
SelectTabHint.BackgroundTransparency = 1
1380
SelectTabHint.BorderColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
1381
SelectTabHint.BorderSizePixel = 0
1382
SelectTabHint.Position = UDim2.new(0.219999999, 0, 0, 150)
1383
SelectTabHint.Size = UDim2.new(0, 400, 0, 100)
1384
SelectTabHint.Font = Enum.Font.SourceSans
1385
SelectTabHint.FontSize = Enum.FontSize.Size36
1386
SelectTabHint.Text = "Epic Minigames GUI by Squid || Press any tab to begin"
1387
SelectTabHint.TextColor3 = Color3.new(0.996078, 0.996078, 0.996078)
1388
SelectTabHint.TextSize = 35
1389
1390
solarBUX.Name = "solarBUX"
1391
solarBUX.Parent = EpicMinigamesGUIbySquid
1392
solarBUX.BackgroundColor3 = Color3.new(1, 1, 1)
1393
solarBUX.BackgroundTransparency = 1
1394
solarBUX.Position = UDim2.new(0, 0, 0.449999988, 0)
1395
solarBUX.Size = UDim2.new(0, 60, 0, 60)
1396
solarBUX.Selected = true
1397
solarBUX.Image = "rbxassetid://507103941"
1398
solarBUX.ImageColor3 = Color3.new(1, 1, 0)
1399
1400
OpenButton.Name = "OpenButton"
1401
OpenButton.Parent = solarBUX
1402
OpenButton.BackgroundColor3 = Color3.new(0.333333, 1, 1)
1403
OpenButton.BackgroundTransparency = 0.60000002384186
1404
OpenButton.BorderSizePixel = 0
1405
OpenButton.Position = UDim2.new(0, 70, 0, 15)
1406
OpenButton.Size = UDim2.new(0, 80, 0, 25)
1407
OpenButton.Font = Enum.Font.Arcade
1408
OpenButton.FontSize = Enum.FontSize.Size24
1409
OpenButton.Text = "Open"
1410
OpenButton.TextColor3 = Color3.new(0, 0.333333, 1)
1411
OpenButton.TextSize = 24
1412
1413
local OpenButtonz = OpenButton
1414
local CloseButtonz = CloseButton
1415
local TabHintz = SelectTabHint
1416
local Playerz = Player
1417
local PlayerTabz = Player.TopLevelBAR
1418
1419
local Noclipz = Playerz.Noclip
1420
local Speedz = Playerz.Speed
1421
local Flyz = Playerz.Fly
1422
local HighJumpz = Playerz.HighJump
1423
	
1424
EMGUI.Size = UDim2.new(0,0,0,0);
1425
EMGUI.Position = UDim2.new(0, 0, .450, 0)
1426
EMGUI.Visible = false;
1427
1428
function onClickOpen()
1429
	EMGUI.Position = UDim2.new(0, 0, .450, 0)
1430
	wait()
1431
	EMGUI.Visible = true;
1432
	EMGUI:TweenSizeAndPosition(UDim2.new(0, 700, 0, 400), UDim2.new(.5, -350, .5, -200), "Out", "Elastic", 2)
1433
end
1434
1435
OpenButtonz.MouseButton1Click:connect(onClickOpen)
1436
1437
function onClickPlayer()
1438
		wait()		
1439
		PlayerTabz.Visible = true;
1440
		TabHintz.Visible = false;
1441
		Noclipz.Visible = true;
1442
		Speedz.Visible = true;
1443
		Flyz.Visible = true;
1444
		HighJumpz.Visible = true;
1445
		for _,v in pairs(Teleport:GetChildren()) do
1446
		v.Visible = false;
1447
		end
1448
		for _,v in pairs(Game:GetChildren()) do
1449
		v.Visible = false;
1450
		end
1451
		for _,v in pairs(Player:GetChildren()) do
1452
		v.Visible = true;
1453
		end
1454
		for _,v in pairs(Credits:GetChildren()) do
1455
		v.Visible = false;
1456
		end
1457
end
1458
1459
Playerz.MouseButton1Click:connect(onClickPlayer)
1460
1461
function onClickCredz()
1462
		wait()		
1463
		for _,v in pairs(Teleport:GetChildren()) do
1464
		v.Visible = false;
1465
		end
1466
		for _,v in pairs(Game:GetChildren()) do
1467
		v.Visible = false;
1468
		end
1469
		for _,v in pairs(Player:GetChildren()) do
1470
		v.Visible = false;
1471
		end
1472
		for _,v in pairs(Credits:GetChildren()) do
1473
		v.Visible = true;
1474
		end
1475
end
1476
1477
Credits.MouseButton1Click:connect(onClickCredz)
1478
--Noclip buttons
1479
function onClickNoclip()
1480
		wait()		
1481
		for _,v in pairs(Speedz:GetChildren()) do
1482
		v.Visible = false;
1483
		end
1484
		for _,v in pairs(HighJumpz:GetChildren()) do
1485
		v.Visible = false;
1486
		end
1487
		for _,v in pairs(Flyz:GetChildren()) do
1488
		v.Visible = false;
1489
		end
1490
		Noclipz.Visible = true;
1491
		for _,v in pairs(Noclipz:GetChildren()) do
1492
		v.Visible = true;
1493
		end
1494
end
1495
1496
Noclipz.MouseButton1Click:connect(onClickNoclip)
1497
1498
noclip = false
1499
function ToggleNoclip()
1500
if noclip == false then
1501
noclip = true
1502
Noclipz.On.BackgroundColor3 = Color3.new(0,255,0)
1503
local mouse = game.Players.LocalPlayer:GetMouse() 
1504
local torso = game.Players.LocalPlayer.Character.HumanoidRootPart 
1505
local dir = {w = 0, s = 0, a = 0, d = 0} 
1506
local spd = 2 
1507
mouse.KeyDown:connect(function(key) 
1508
if key:lower() == "w" then dir.w = 1 
1509
elseif key:lower() == "s" then dir.s = 1
1510
elseif key:lower() == "a" then dir.a = 1 
1511
elseif key:lower() == "d" then dir.d = 1 
1512
elseif key:lower() == "q" then spd = spd + 1 
1513
elseif key:lower() == "e" then spd = spd - 1 
1514
end end) 
1515
mouse.KeyUp:connect(function(key) 
1516
if key:lower() == "w" then 
1517
dir.w = 0 
1518
elseif key:lower() == "s" then dir.s = 0 
1519
elseif key:lower() == "a" then dir.a = 0 
1520
elseif key:lower() == "d" then dir.d = 0 
1521
end end)
1522
repeat wait(1/44)
1523
game.Players.LocalPlayer.Character.HumanoidRootPart.Anchored = true
1524
game.Players.LocalPlayer.Character.Humanoid.PlatformStand = true 
1525
torso.CFrame = CFrame.new(torso.Position, game.Workspace.CurrentCamera.CoordinateFrame.p) * CFrame.Angles(0,math.rad(180),0) * CFrame.new((dir.d-dir.a)*spd,0,(dir.s-dir.w)*spd)
1526
until noclip == false
1527
game.Players.LocalPlayer.Character.Humanoid.PlatformStand = false
1528
game.Players.LocalPlayer.Character.HumanoidRootPart.Anchored = false
1529
elseif noclip == true then
1530
noclip = false
1531
Noclipz.On.BackgroundColor3 = Color3.new(255,0,0)
1532
game.Players.LocalPlayer.Character.Humanoid.PlatformStand = false
1533
game.Players.LocalPlayer.Character.HumanoidRootPart.Anchored = false
1534
end
1535
end
1536
1537
Noclipz.On.MouseButton1Click:connect(ToggleNoclip)
1538
--Noclip end
1539
--Speed button
1540
function onClickSpeed()
1541
		wait()		
1542
		for _,v in pairs(Speedz:GetChildren()) do
1543
		v.Visible = true;
1544
		end
1545
		Speedz.Visible = true
1546
		for _,v in pairs(HighJumpz:GetChildren()) do
1547
		v.Visible = false;
1548
		end
1549
		for _,v in pairs(Flyz:GetChildren()) do
1550
		v.Visible = false;
1551
		end
1552
		for _,v in pairs(Noclipz:GetChildren()) do
1553
		v.Visible = false;
1554
		end
1555
end
1556
1557
Speedz.MouseButton1Click:connect(onClickSpeed)
1558
1559
speed = false
1560
1561
function ToggleSpeed()
1562
if speed == false then
1563
speed = true
1564
game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 50
1565
Speedz.Toggle.BackgroundColor3 = Color3.new(0,255,0)
1566
else if speed == true then
1567
game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16
1568
Speedz.Toggle.BackgroundColor3 = Color3.new(255,0,0)
1569
end
1570
end
1571
end
1572
1573
Speedz.Toggle.MouseButton1Click:connect(ToggleSpeed)
1574
--End of speed
1575
--Fly Button
1576
function onClickFly()
1577
		wait()		
1578
		for _,v in pairs(Speedz:GetChildren()) do
1579
		v.Visible = false;
1580
		end
1581
		for _,v in pairs(HighJumpz:GetChildren()) do
1582
		v.Visible = false;
1583
		end
1584
		for _,v in pairs(Flyz:GetChildren()) do
1585
		v.Visible = true;
1586
		end
1587
		Flyz.Visible = true;
1588
		for _,v in pairs(Noclipz:GetChildren()) do
1589
		v.Visible = false;
1590
		end
1591
end
1592
1593
Flyz.MouseButton1Click:connect(onClickFly)
1594
1595
flying = false
1596
repeat wait()
1597
until game.Players.LocalPlayer and game.Players.LocalPlayer.Character and game.Players.LocalPlayer.Character:findFirstChild("HumanoidRootPart") and game.Players.LocalPlayer.Character:findFirstChild("Humanoid")
1598
local mouse = game.Players.LocalPlayer:GetMouse()
1599
repeat wait() until mouse
1600
local plr = game.Players.LocalPlayer
1601
local torso = plr.Character.HumanoidRootPart
1602
local flying = true
1603
local deb = true
1604
local ctrl = {f = 0, b = 0, l = 0, r = 0}
1605
local lastctrl = {f = 0, b = 0, l = 0, r = 0}
1606
local maxspeed = 50
1607
local speed = 0
1608
1609
function Fly1()
1610
if flying == false then
1611
flying = true
1612
Flyz.Toggle.BackgroundColor3 = Color3.new(0,255,0)
1613
local bg = Instance.new("BodyGyro", torso)
1614
bg.P = 9e4
1615
bg.maxTorque = Vector3.new(9e9, 9e9, 9e9)
1616
bg.cframe = torso.CFrame
1617
local bv = Instance.new("BodyVelocity", torso)
1618
bv.velocity = Vector3.new(0,0.1,0)
1619
bv.maxForce = Vector3.new(9e9, 9e9, 9e9)
1620
repeat wait()
1621
plr.Character.Humanoid.PlatformStand = true
1622
if ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0 then
1623
speed = speed+.5+(speed/maxspeed)
1624
if speed > maxspeed then
1625
speed = maxspeed
1626
end
1627
elseif not (ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0) and speed ~= 0 then
1628
speed = speed-1
1629
if speed < 0 then
1630
speed = 0
1631
end
1632
end
1633
if (ctrl.l + ctrl.r) ~= 0 or (ctrl.f + ctrl.b) ~= 0 then
1634
bv.velocity = ((game.Workspace.CurrentCamera.CoordinateFrame.lookVector * (ctrl.f+ctrl.b)) + ((game.Workspace.CurrentCamera.CoordinateFrame * CFrame.new(ctrl.l+ctrl.r,(ctrl.f+ctrl.b)*.2,0).p) - game.Workspace.CurrentCamera.CoordinateFrame.p))*speed
1635
lastctrl = {f = ctrl.f, b = ctrl.b, l = ctrl.l, r = ctrl.r}
1636
elseif (ctrl.l + ctrl.r) == 0 and (ctrl.f + ctrl.b) == 0 and speed ~= 0 then
1637
bv.velocity = ((game.Workspace.CurrentCamera.CoordinateFrame.lookVector * (lastctrl.f+lastctrl.b)) + ((game.Workspace.CurrentCamera.CoordinateFrame * CFrame.new(lastctrl.l+lastctrl.r,(lastctrl.f+lastctrl.b)*.2,0).p) - game.Workspace.CurrentCamera.CoordinateFrame.p))*speed
1638
else
1639
bv.velocity = Vector3.new(0,0.1,0)
1640
end
1641
bg.cframe = game.Workspace.CurrentCamera.CoordinateFrame * CFrame.Angles(-math.rad((ctrl.f+ctrl.b)*50*speed/maxspeed),0,0)
1642
until not flying
1643
ctrl = {f = 0, b = 0, l = 0, r = 0}
1644
lastctrl = {f = 0, b = 0, l = 0, r = 0}
1645
speed = 0
1646
bg:Destroy()
1647
bv:Destroy()
1648
plr.Character.Humanoid.PlatformStand = false
1649
elseif flying == true then
1650
flying = false
1651
Fly.Toggle.BackgroundColor3 = Color3.new(255,0,0)
1652
end
1653
end
1654
mouse.KeyDown:connect(function(key)
1655
if key:lower() == "w" then
1656
ctrl.f = 1
1657
elseif key:lower() == "s" then
1658
ctrl.b = -1
1659
elseif key:lower() == "a" then
1660
ctrl.l = -1
1661
elseif key:lower() == "d" then
1662
ctrl.r = 1
1663
end
1664
end)
1665
mouse.KeyUp:connect(function(key)
1666
if key:lower() == "w" then
1667
ctrl.f = 0
1668
elseif key:lower() == "s" then
1669
ctrl.b = 0
1670
elseif key:lower() == "a" then
1671
ctrl.l = 0
1672
elseif key:lower() == "d" then
1673
ctrl.r = 0
1674
end
1675
end)
1676
Fly1()
1677
1678
Flyz.Toggle.MouseButton1Click:connect(Fly1)
1679
--end of Fly
1680
--toggle off
1681
function onClickHighJump()
1682
		wait()		
1683
		for _,v in pairs(Speedz:GetChildren()) do
1684
		v.Visible = false;
1685
		end
1686
		for _,v in pairs(HighJumpz:GetChildren()) do
1687
		v.Visible = true;
1688
		end
1689
		for _,v in pairs(Flyz:GetChildren()) do
1690
		v.Visible = false;
1691
		end
1692
		HighJumpz.Visible = true;
1693
		for _,v in pairs(Noclipz:GetChildren()) do
1694
		v.Visible = false;
1695
		end
1696
end
1697
1698
HighJumpz.MouseButton1Click:connect(onClickHighJump)
1699
1700
highjump = false
1701
function HighJumpT()
1702
if highjump == false then
1703
	highjump = true
1704
game.Players.LocalPlayer.Character.Humanoid.JumpPower = 150
1705
HighJumpz.Toggle.BackgroundColor3 = Color3.new(0,255,0)
1706
else if highjump == true then
1707
game.Players.LocalPlayer.Character.Humanoid.JumpPower = 50
1708
HighJumpz.Toggle.BackgroundColor3 = Color3.new(255,0,0)
1709
end
1710
end
1711
end
1712
1713
HighJumpz.Toggle.MouseButton1Click:connect(HighJumpT)
1714
1715
function onClickClose()
1716
		
1717
	EMGUI:TweenSizeAndPosition(UDim2.new(0,700, 0, 400), UDim2.new(-.8, 0, .450, 0), "Out", "Quint", 2)
1718
	wait(1.4)
1719
	EMGUI.Visible = false;
1720
end
1721
1722
CloseButton.MouseButton1Click:connect(onClickClose)
1723
1724
--Player end
1725
--Game start
1726
local Gamez = Game
1727
local GamezTab = Game.TopLevelBAR
1728
1729
function onClickGamez()
1730
		wait()		
1731
		Gamez.Visible = true;
1732
		GamezTab.Visible = false;
1733
		for _,v in pairs(Credits:GetChildren()) do
1734
		v.Visible = false;
1735
		end
1736
		for _,v in pairs(Game:GetChildren()) do
1737
		v.Visible = true;
1738
		end
1739
		for _,v in pairs(Player:GetChildren()) do
1740
		v.Visible = false;
1741
		end
1742
		for _,v in pairs(Teleport:GetChildren()) do
1743
		v.Visible = false;
1744
		end
1745
end
1746
1747
Gamez.MouseButton1Click:connect(onClickGamez)
1748
1749
--EndGame
1750
--Start of games
1751
value = "No Value"
1752
function onClickSweeper()
1753
		wait()	
1754
TheSweeper.Visible = true;	
1755
value = "TheSweeper"
1756
		for _,v in pairs(TheSweeper:GetChildren()) do
1757
		v.Visible = true;
1758
		end
1759
		for _,v in pairs(BulletEvasion:GetChildren()) do
1760
		v.Visible = false;
1761
		end
1762
		for _,v in pairs(HighPressure:GetChildren()) do
1763
		v.Visible = false;
1764
		end
1765
		for _,v in pairs(LaserCutting:GetChildren()) do
1766
		v.Visible = false;
1767
		end
1768
		for _,v in pairs(LaserGuidance:GetChildren()) do
1769
		v.Visible = false;
1770
		end
1771
		for _,v in pairs(LavaForecast:GetChildren()) do
1772
		v.Visible = false;
1773
		end
1774
end
1775
1776
1777
TheSweeper.MouseButton1Click:connect(onClickSweeper)
1778
1779
function onClickBullet()
1780
		wait()	
1781
BulletEvasion.Visible = true;	
1782
value = "BulletEvasion"
1783
		for _,v in pairs(TheSweeper:GetChildren()) do
1784
		v.Visible = false;
1785
		end
1786
		for _,v in pairs(BulletEvasion:GetChildren()) do
1787
		v.Visible = true;
1788
		end
1789
		for _,v in pairs(HighPressure:GetChildren()) do
1790
		v.Visible = false;
1791
		end
1792
		for _,v in pairs(LaserCutting:GetChildren()) do
1793
		v.Visible = false;
1794
		end
1795
		for _,v in pairs(LaserGuidance:GetChildren()) do
1796
		v.Visible = false;
1797
		end
1798
		for _,v in pairs(LavaForecast:GetChildren()) do
1799
		v.Visible = false;
1800
		end
1801
end
1802
1803
1804
BulletEvasion.MouseButton1Click:connect(onClickBullet)
1805
1806
function onClickHighP()
1807
		wait()	
1808
HighPressure.Visible = true;	
1809
value = "HighPressure"
1810
		for _,v in pairs(TheSweeper:GetChildren()) do
1811
		v.Visible = false;
1812
		end
1813
		for _,v in pairs(BulletEvasion:GetChildren()) do
1814
		v.Visible = false;
1815
		end
1816
		for _,v in pairs(HighPressure:GetChildren()) do
1817
		v.Visible = true;
1818
		end
1819
		for _,v in pairs(LaserCutting:GetChildren()) do
1820
		v.Visible = false;
1821
		end
1822
		for _,v in pairs(LaserGuidance:GetChildren()) do
1823
		v.Visible = false;
1824
		end
1825
		for _,v in pairs(LavaForecast:GetChildren()) do
1826
		v.Visible = false;
1827
		end
1828
end
1829
1830
1831
HighPressure.MouseButton1Click:connect(onClickHighP)
1832
1833
function onClickLaserCutting()
1834
		wait()	
1835
LaserCutting.Visible = true;	
1836
value = "LaserCutting"
1837
		for _,v in pairs(TheSweeper:GetChildren()) do
1838
		v.Visible = false;
1839
		end
1840
		for _,v in pairs(BulletEvasion:GetChildren()) do
1841
		v.Visible = false;
1842
		end
1843
		for _,v in pairs(HighPressure:GetChildren()) do
1844
		v.Visible = false;
1845
		end
1846
		for _,v in pairs(LaserCutting:GetChildren()) do
1847
		v.Visible = true;
1848
		end
1849
		for _,v in pairs(LaserGuidance:GetChildren()) do
1850
		v.Visible = false;
1851
		end
1852
		for _,v in pairs(LavaForecast:GetChildren()) do
1853
		v.Visible = false;
1854
		end
1855
end
1856
1857
1858
LaserCutting.MouseButton1Click:connect(onClickLaserCutting)
1859
1860
function onClickLaserGuidance()
1861
		wait()	
1862
LaserGuidance.Visible = true;	
1863
value = "LaserGuidance"
1864
		for _,v in pairs(TheSweeper:GetChildren()) do
1865
		v.Visible = false;
1866
		end
1867
		for _,v in pairs(BulletEvasion:GetChildren()) do
1868
		v.Visible = false;
1869
		end
1870
		for _,v in pairs(HighPressure:GetChildren()) do
1871
		v.Visible = false;
1872
		end
1873
		for _,v in pairs(LaserCutting:GetChildren()) do
1874
		v.Visible = false;
1875
		end
1876
		for _,v in pairs(LaserGuidance:GetChildren()) do
1877
		v.Visible = true;
1878
		end
1879
		for _,v in pairs(LavaForecast:GetChildren()) do
1880
		v.Visible = false;
1881
		end
1882
end
1883
1884
1885
LaserGuidance.MouseButton1Click:connect(onClickLaserGuidance)
1886
1887
function onClickLavaForecast()
1888
		wait()	
1889
LavaForecast.Visible = true;	
1890
value = "LavaForecast"
1891
		for _,v in pairs(TheSweeper:GetChildren()) do
1892
		v.Visible = false;
1893
		end
1894
		for _,v in pairs(BulletEvasion:GetChildren()) do
1895
		v.Visible = false;
1896
		end
1897
		for _,v in pairs(HighPressure:GetChildren()) do
1898
		v.Visible = false;
1899
		end
1900
		for _,v in pairs(LaserCutting:GetChildren()) do
1901
		v.Visible = false;
1902
		end
1903
		for _,v in pairs(LaserGuidance:GetChildren()) do
1904
		v.Visible = false;
1905
		end
1906
		for _,v in pairs(LavaForecast:GetChildren()) do
1907
		v.Visible = true;
1908
		end
1909
end
1910
1911
1912
LavaForecast.MouseButton1Click:connect(onClickLavaForecast)
1913
1914
function onClickActivate()
1915
		wait()	
1916
value = "LavaForecast"
1917
if value == "TheSweeper" and game.Workspace:FindFirstChild("The Sweeper") then
1918
game.Workspace["The Sweeper"].sweeper:Destroy()	
1919
elseif value == "BulletEvasion" and game.Workspace:FindFirstChild("Bullet Evasion") then
1920
game.Workspace["Bullet Evasion"].bullets:Destroy()
1921
elseif value == "HighPressure" and game.Workspace:FindFirstChild("High Pressure") then
1922
game.Workspace["High Pressure"].sh1:Destroy()
1923
game.Workspace["High Pressure"].sh2:Destroy()
1924
game.Workspace["High Pressure"].sh3:Destroy()
1925
game.Workspace["High Pressure"].sh4:Destroy()	
1926
elseif value == "LaserCutting" and game.Workspace:FindFirstChild("Laser Cutting") then
1927
for i=1,100 do
1928
wait(0.5)
1929
for i,v in pairs(game.Workspace["Laser Cutting"]:GetChildren()) do
1930
if v.Name == "ldoor" then v:Destroy()
1931
end
1932
end
1933
end
1934
elseif value == "LaserGuidance" and game.Workspace:FindFirstChild("Laser Guidance") then
1935
game.Workspace["Laser Guidance"].vlaser:Destroy()
1936
game.Workspace["Laser Guidance"].hlaser:Destroy()
1937
elseif value == "LavaForecast" and game.Workspace:FindFirstChild("Lava Forecast") then
1938
for i=1,100 do
1939
wait(.5)
1940
for i,v in pairs(game.Workspace["Lava Forecast"]:GetChildren()) do
1941
if v.Name == "lavarain" then v:Destroy()
1942
end
1943
end
1944
end
1945
else warn("Error, nothing selected or nothing detected!")
1946
end
1947
end
1948
1949
1950
Activate.MouseButton1Click:connect(onClickActivate)
1951
--EndGame
1952
--TeleportStart
1953
1954
local Telez = Teleport
1955
local TelezTab = Teleport.TopLevelBAR
1956
1957
function onClickTelez()
1958
		wait()		
1959
		Telez.Visible = true;
1960
		TelezTab.Visible = false;
1961
		for _,v in pairs(Credits:GetChildren()) do
1962
		v.Visible = false;
1963
		end
1964
		for _,v in pairs(Game:GetChildren()) do
1965
		v.Visible = false;
1966
		end
1967
		for _,v in pairs(Player:GetChildren()) do
1968
		v.Visible = false;
1969
		end
1970
		for _,v in pairs(Teleport:GetChildren()) do
1971
		v.Visible = true;
1972
		end
1973
end
1974
1975
Telez.MouseButton1Click:connect(onClickTelez)
1976
1977
function onClickTrial()
1978
		wait()		
1979
game.Players.LocalPlayer.Character:MoveTo(Vector3.new(40.183,107,-33.48))
1980
end
1981
1982
TrialTraversing.MouseButton1Click:connect(onClickTrial)
1983
1984
function onClickLobby()
1985
		wait()		
1986
game.Players.LocalPlayer.Character:MoveTo(Vector3.new(126.21,831.3,-14.25))
1987
end
1988
1989
Lobby.MouseButton1Click:connect(onClickLobby)
1990
1991
function onClickAztec()
1992
		wait()		
1993
game.Players.LocalPlayer.Character:MoveTo(Vector3.new(-578.5,30.95,-26.935))
1994
end
1995
1996
AztecAdventure.MouseButton1Click:connect(onClickAztec)
1997
1998
function onClickAvalanche()
1999
		wait()		
2000
game.Players.LocalPlayer.Character:MoveTo(Vector3.new(-8.93,90.217,-121.402))
2001
end
2002
2003
Avalanche.MouseButton1Click:connect(onClickAvalanche)
2004
2005
function onClickDownhill()
2006
		wait()		
2007
game.Players.LocalPlayer.Character:MoveTo(Vector3.new(82.395,-137.7,-430.7))
2008
end
2009
2010
DownhillRoll.MouseButton1Click:connect(onClickDownhill)
2011
2012
function onClickExpedition()
2013
		wait()		
2014
game.Players.LocalPlayer.Character:MoveTo(Vector3.new(51.3,254.45,-6.52))
2015
end
2016
2017
Expedition.MouseButton1Click:connect(onClickExpedition)
2018
2019
function onClickBulletBound()
2020
		wait()		
2021
game.Players.LocalPlayer.Character:MoveTo(Vector3.new(47,137.6,-40.4))
2022
end
2023
2024
BulletBound.MouseButton1Click:connect(onClickBulletBound)
2025
2026
function onClickHighRolling()
2027
		wait()		
2028
game.Players.LocalPlayer.Character:MoveTo(Vector3.new(29,92.39,-60.447))
2029
end
2030
2031
HighRolling.MouseButton1Click:connect(onClickHighRolling)
2032
2033
function onClickPlatform()
2034
		wait()		
2035
game.Players.LocalPlayer.Character:MoveTo(Vector3.new(35.67919,93.026,-16.8))
2036
end
2037
2038
PlatformPervil.MouseButton1Click:connect(onClickPlatform)
2039
2040
local Sharky = Instance.new("Sound")
2041
Sharky.Parent = EMGUI
2042
Sharky.Volume = 1
2043
Sharky.SoundId = "rbxassetid://1000388087"
2044
function onClickShark()
2045
		wait()		
2046
game.Players.LocalPlayer.Character:MoveTo(Vector3.new(35.67919,93.026,-16.8))
2047
if Sharky.Playing == false then
2048
Sharky:Play()
2049
else
2050
end
2051
end
2052
2053
SharkSurvival.MouseButton1Click:connect(onClickShark)