· 7 years ago · Sep 11, 2018, 08:46 PM
1-- Farewell Infortality.
2-- Version: 2.82
3-- Instances:
4local ScreenGui = Instance.new("ScreenGui")
5local Frame = Instance.new("Frame")
6local Open = Instance.new("TextButton")
7local Main = Instance.new("Frame")
8local FarmPetSim = Instance.new("TextButton")
9local VehicleSimulator = Instance.new("TextButton")
10local DestructionSimAFK = Instance.new("TextButton")
11local close = Instance.new("TextButton")
12local Granny = Instance.new("TextButton")
13local JailbreakGui = Instance.new("TextButton")
14local TextButton = Instance.new("TextButton")
15local TextButton_2 = Instance.new("TextButton")
16--Properties:
17ScreenGui.Parent = game.Workspace
18
19Frame.Parent = ScreenGui
20Frame.BackgroundColor3 = Color3.new(1, 1, 1)
21Frame.Position = UDim2.new(0.945737898, 0, 0.832605541, 0)
22Frame.Size = UDim2.new(0, 104, 0, 34)
23
24Open.Name = "Open"
25Open.Parent = Frame
26Open.BackgroundColor3 = Color3.new(0, 0, 0)
27Open.Size = UDim2.new(0, 104, 0, 34)
28Open.Font = Enum.Font.SciFi
29Open.Text = "Open"
30Open.TextColor3 = Color3.new(1, 1, 1)
31Open.TextSize = 14
32Open.MouseButton1Down:connect(function()
33Open.Visible = false
34Main.Visible = true
35Frame.Visible = false
36end)
37
38Main.Name = "Main"
39Main.Parent = ScreenGui
40Main.BackgroundColor3 = Color3.new(0, 0, 0)
41Main.BackgroundTransparency = 0.5
42Main.Position = UDim2.new(0.361128151, 0, 0.164483264, 0)
43Main.Size = UDim2.new(0, 367, 0, 402)
44Main.Visible = false
45
46FarmPetSim.Name = "Farm Pet Sim"
47FarmPetSim.Parent = Main
48FarmPetSim.BackgroundColor3 = Color3.new(0, 0, 0)
49FarmPetSim.Position = UDim2.new(0, 0, 0.0721393004, 0)
50FarmPetSim.Size = UDim2.new(0, 120, 0, 50)
51FarmPetSim.Font = Enum.Font.SciFi
52FarmPetSim.Text = "Farm Pet Sim"
53FarmPetSim.TextColor3 = Color3.new(1, 1, 1)
54FarmPetSim.TextSize = 14
55FarmPetSim.MouseButton1Down:connect(function()
56local amount = 1000 -- experiment with this value, 1000 is maximum and for pets with high levels
57local coins = game.Workspace:WaitForChild("__REMOTES"):WaitForChild("Coins")
58local save = game.Workspace:WaitForChild("__REMOTES"):WaitForChild("Get Other Stats"):InvokeServer()
59local plr = game:GetService("Players").LocalPlayer
60local petids = {}
61local pets = game:GetService("Workspace")["__REMOTES"].Pets
62local a = #save[plr.Name]["Save"]["Pets"]
63local done = "lol meme"
64function random(t)
65 local keys = {}
66 for key, value in pairs(t) do
67 keys[#keys+1] = key
68 end
69 index = keys[math.random(1, #keys)]
70 return t[index]
71end
72for i=1,a do
73 if(save[plr.Name]["Save"]["Pets"][a].e == true) then
74 table.insert(petids, save[plr.Name]["Save"]["Pets"][a].id)
75 end
76 a = a - 1
77end
78function co(b)
79 local done = b
80 print("Mining coin: " .. b.Name)
81 while(b:FindFirstChild"Health" ~= nil and b:FindFirstChild"Health".Value > 0) do
82 warn(b.Name .. "- Health: " .. b.Health.Value)
83 wait(0.2)
84 coins:FireServer("Mine",b.Name, amount, random(petids))
85 end
86end
87for _,b in next, workspace.__THINGS.Coins:GetChildren() do
88 if(done ~= b) then
89 coroutine.wrap(function()co(b)end)()
90 end
91end
92end)
93
94VehicleSimulator.Name = "Vehicle Simulator"
95VehicleSimulator.Parent = Main
96VehicleSimulator.BackgroundColor3 = Color3.new(0, 0, 0)
97VehicleSimulator.Position = UDim2.new(0.326975465, 0, 0.0721393004, 0)
98VehicleSimulator.Size = UDim2.new(0, 119, 0, 50)
99VehicleSimulator.Font = Enum.Font.SciFi
100VehicleSimulator.Text = "Vehicle Sim"
101VehicleSimulator.TextColor3 = Color3.new(1, 1, 1)
102VehicleSimulator.TextSize = 14
103VehicleSimulator.MouseButton1Down:connect(function()
104 local plr = game.Players.LocalPlayer
105local inftoggle = false
106function getvehicle()
107for i,v in pairs(game.Workspace.Vehicles:GetChildren()) do
108if v:IsA("Model") then
109if v.owner.Value == plr.Name then
110return v
111end
112end
113end
114return nil
115end
116function hint(txt, t)
117if t then
118local h = Instance.new("Hint",plr.PlayerGui)
119h.Text = txt
120wait(t)
121h:remove()
122else
123local h = Instance.new("Hint",plr.PlayerGui)
124h.Text = txt
125wait(2)
126h:remove()
127end
128end
129
130plr.Chatted:connect(function(msg)
131if msg:lower():sub(1,10) == "/e toggle:" then
132local ins = msg:lower():sub(11)
133local vehicle = getvehicle()
134if vehicle then
135if ins == "infnitro" then
136if inftoggle == true then
137inftoggle = false
138hint("(-)Disabled Infinite Nitro!(-)")
139else
140inftoggle = true
141hint("(+)Enabled Infinite Nitro!(+)")
142end
143end
144else
145hint("(-)You do not have a vehicle spawned!(-)")
146end
147elseif msg:lower():sub(1,14) == "/e nitrospeed:" then
148local num = msg:sub(15)
149local vehicle = getvehicle()
150if vehicle then
151vehicle.Handling.Nitro.NitroSpeed.Value = tonumber(num)
152else
153hint("(-)You do not have a vehicle spawned!(-)")
154end
155elseif msg:lower():sub(1,14) == "/e stop" then
156local num = msg:sub(1,15)
157local vehicle = getvehicle()
158if vehicle then
159vehicle.Chassis.VehicleSeat.Anchored = true
160else
161hint("(-)You do not have a vehicle spawned!(-)")
162end
163elseif msg:lower():sub(1,14) == "/e nitroforce:" then
164local num = msg:sub(1,15)
165local vehicle = getvehicle()
166if vehicle then
167vehicle.Handling.Nitro.NitroForce.Value = tonumber(num)
168else
169hint("(-)You do not have a vehicle spawned!(-)")
170end
171elseif msg:lower():sub(1,12) == "/e maxspeed:" then
172local num = msg:sub(13)
173local vehicle = getvehicle()
174if vehicle then
175vehicle.Handling.MaxSpeed.Value = tonumber(num)
176else
177hint("(-)You do not have a vehicle spawned!(-)")
178end
179elseif msg:lower():sub(1,10) == "/e torque:" then
180local num = msg:sub(11)
181local vehicle = getvehicle()
182if vehicle then
183vehicle.Handling.Torque.Value = tonumber(num)
184else
185hint("(-)You do not have a vehicle spawned!(-)")
186end
187elseif msg:lower():sub(1,12) == "/e friction:" then
188local num = msg:sub(13)
189local vehicle = getvehicle()
190if vehicle then
191vehicle.Handling.FrictionOffroad.Value = tonumber(num)
192vehicle.Handling.FrictionRoad.Value = tonumber(num)
193else
194hint("(-)You do not have a vehicle spawned!(-)")
195end
196elseif msg:lower():sub(1,13) == "/e racingmode" then
197local vehicle = getvehicle()
198if vehicle then
199han = vehicle.Handling
200han.MaxSpeed.Value = 10000
201han.Torque.Value = 30000
202han.SteeringRadiusConstant.Value = 12000
203han.FrictionOffroad.Value = 200
204han.FrictionRoad.Value = 1000
205han.Nitro.NitroSpeed.Value = 300
206han.Nitro.NitroForce.Value = 8000
207han.TurboJump.TurboJumpHeight.Value = 300
208inftoggle = true
209else
210hint("(-)Me name is jeff!(-)")
211end
212end
213end)
214wait(0.5)
215while inftoggle == true do
216wait(0.02)
217local vehicle = getvehicle()
218if vehicle then
219vehicle.Handling.Nitro.NitroAmount.Value = 250
220end
221end
222end)
223
224DestructionSimAFK.Name = "Destruction Sim AFK"
225DestructionSimAFK.Parent = Main
226DestructionSimAFK.BackgroundColor3 = Color3.new(0, 0, 0)
227DestructionSimAFK.Position = UDim2.new(0.651226163, 0, 0.0721393004, 0)
228DestructionSimAFK.Size = UDim2.new(0, 128, 0, 50)
229DestructionSimAFK.Font = Enum.Font.SciFi
230DestructionSimAFK.Text = "Destruction Sim AFK"
231DestructionSimAFK.TextColor3 = Color3.new(1, 1, 1)
232DestructionSimAFK.TextSize = 14
233DestructionSimAFK.MouseButton1Down:connect(function()
234local launcher = game:GetService"Players".LocalPlayer.Character.Launcher
235local explodeRocket = game:GetService"ReplicatedStorage".Remotes.explodeRocket
236local sell = game:GetService"ReplicatedStorage".Remotes.sellBricks
237local level = game:GetService"Players".LocalPlayer.leaderstats.Level.Value
238local tracks = {"Racetrack","Construction","Farm","Classic","Boat","Space","Prison","Desert","Castle","Towers"}
239
240function farm(Place)
241 game:GetService"Players".LocalPlayer.Character.HumanoidRootPart.CFrame = Workspace.Areas[Place]:FindFirstChild("Spawns").Spawn1.CFrame
242 for i,v in next, Workspace.Areas[Place]:GetDescendants() do
243 if v:IsA"Part" then
244 explodeRocket:FireServer(tick(), launcher.Stats, v.Position, launcher.Assets.Rocket.Boom)
245 sell:FireServer()
246 wait(0.2)
247 end
248 end
249end
250function operationTerribleCode()
251 if level < 5 then farm(tracks[1]) elseif level < 10 and level >= 5 then farm(tracks[2]) elseif level < 15 and level >= 10 then farm(tracks[3]) elseif level < 20 and level >= 15 then farm(tracks[4])
252 elseif level < 25 and level >= 20 then farm(tracks[5]) elseif level < 30 and level >= 25 then farm(tracks[6]) elseif level < 35 and level >= 30 then farm(tracks[7]) elseif level < 40 and level >= 35
253 then farm(tracks[8]) elseif level < 45 and level >= 40 then farm(tracks[9]) elseif level < 50 and level >= 45 then farm(tracks[10]) end
254end
255while wait(1) do level = game:GetService"Players".LocalPlayer.leaderstats.Level.Value operationTerribleCode() end
256end)
257
258close.Name = "close"
259close.Parent = Main
260close.BackgroundColor3 = Color3.new(0, 0, 0)
261close.Position = UDim2.new(0.915531337, 0, 0, 0)
262close.Size = UDim2.new(0, 31, 0, 29)
263close.Font = Enum.Font.SciFi
264close.Text = "X"
265close.TextColor3 = Color3.new(1, 1, 1)
266close.TextSize = 14
267close.MouseButton1Down:connect(function()
268Main.Visible = false
269Frame.Visible = true
270Open.Visible = true
271end)
272
273Granny.Name = "Granny"
274Granny.Parent = Main
275Granny.BackgroundColor3 = Color3.new(0, 0, 0)
276Granny.Position = UDim2.new(0, 0, 0.196517408, 0)
277Granny.Size = UDim2.new(0, 367, 0, 50)
278Granny.Font = Enum.Font.SciFi
279Granny.Text = "Granny Dinero Spamear para mas"
280Granny.TextColor3 = Color3.new(1, 1, 1)
281Granny.TextSize = 14
282Granny.MouseButton1Down:connect(function()
283local A_1 =
284{
285["Rarity"] = 0,
286["AnglesXYZ"] =
287{
288["Y"] = 0,
289["X"] = 0,
290["Z"] = 0
291},
292["id"] = 1002,
293["Name"] = "Iron Bat",
294["Model"] = game:GetService("ReplicatedStorage").Models.Weapons.IronBat,
295["Cost"] = -1000000000,
296["CFrameXYZ"] =
297{
298["Y"] = 0,
299["X"] = 0,
300["Z"] = 0
301},
302["Icon"] = "rbxassetid://1826666844",
303["Typeid"] = 1
304}
305local Event = game:GetService("ReplicatedStorage").Events.Buy
306Event:InvokeServer(A_1)
307end)
308
309JailbreakGui.Name = "Jailbreak Gui"
310JailbreakGui.Parent = Main
311JailbreakGui.BackgroundColor3 = Color3.new(0, 0, 0)
312JailbreakGui.Position = UDim2.new(0, 0, 0.320895523, 0)
313JailbreakGui.Size = UDim2.new(0, 367, 0, 50)
314JailbreakGui.Font = Enum.Font.SciFi
315JailbreakGui.Text = "Jailbreak"
316JailbreakGui.TextColor3 = Color3.new(1, 1, 1)
317JailbreakGui.TextSize = 14
318JailbreakGui.MouseButton1Down:connect(function()
319Main.Visible = false
320Open.Visible = true
321Frame.Visible = true
322-- Jailbreaker V1.2
323local plr = game:GetService("Players").LocalPlayer
324
325
326local TpMethod = 2
327
328
329
330 function JailbreakTp(...)
331 getfenv()["TpMethod" .. TpMethod](...)
332end
333
334function TpMethod1(...)
335 local char = plr.Character
336 local root = char.HumanoidRootPart
337 local args = {...}
338 for i=0,1,0.05 do
339 wait()
340 root.CFrame = root.CFrame:lerp(CFrame.new(unpack(args,1,3)), i)
341 end
342end
343
344function TpMethod2(...)
345 local args = {...}
346 local char = plr.Character
347 local target = Vector3.new(unpack(args,1,3))
348 local dist = (char:WaitForChild"HumanoidRootPart".Position - target).magnitude
349 dist = math.floor(dist / 100) + 1
350 for i=0,dist * 4 do
351 wait()
352 char:MoveTo(Vector3.new(...))
353 end
354 if args[#args] == true then
355 wait()
356 char:WaitForChild'HumanoidRootPart'.CFrame = CFrame.new(unpack(args,1,#args - 1))
357 end
358end
359
360function Tween(obj, t, properties)
361 local TweenService = game:GetService("TweenService")
362 local tweenInfo = TweenInfo.new(t,Enum.EasingStyle.Linear,Enum.EasingDirection.In,0,false,0)
363 local tween = TweenService:Create(obj,tweenInfo,properties)
364 tween:Play()
365 return tween
366end
367-- Instances:
368local JailBreakerV12 = Instance.new("ScreenGui")
369local Main = Instance.new("Frame")
370local TPS = Instance.new("Frame")
371local gas = Instance.new("TextButton")
372local donut = Instance.new("TextButton")
373local JewOut = Instance.new("TextButton")
374local JewIn = Instance.new("TextButton")
375local BankVault = Instance.new("TextButton")
376local BankFront = Instance.new("TextButton")
377local crim1 = Instance.new("TextButton")
378local crim2 = Instance.new("TextButton")
379local train = Instance.new("TextButton")
380local Gravity = Instance.new("TextButton")
381local Walkspeed = Instance.new("TextButton")
382local autoarrest = Instance.new("TextButton")
383local MuseumTop = Instance.new("TextButton")
384local Museum = Instance.new("TextButton")
385local RemoveALL = Instance.new("TextButton")
386local JB2 = Instance.new("Frame")
387local CarFly = Instance.new("TextButton")
388local CtrlDelete = Instance.new("TextButton")
389local Noclip = Instance.new("TextButton")
390local BTools = Instance.new("TextButton")
391local InfiniteHealth = Instance.new("TextButton")
392local InfiniteNitro = Instance.new("TextButton")
393local InfiniteAmmo = Instance.new("TextButton")
394local Stuff = Instance.new("Frame")
395local Jailbreak2 = Instance.new("TextButton")
396local Teleports = Instance.new("TextButton")
397local Jailbreak3 = Instance.new("TextButton")
398local Design2 = Instance.new("Frame")
399local Exit = Instance.new("TextButton")
400local Name = Instance.new("TextLabel")
401local JB3 = Instance.new("Frame")
402local PlayerTP_Input = Instance.new("TextBox")
403local PlayerTP_Teleport = Instance.new("TextButton")
404local BankAutoRobBtn = Instance.new("TextButton")
405local BankStatus = Instance.new("TextLabel")
406local JewelryStatus = Instance.new("TextLabel")
407local Open = Instance.new("TextButton")
408--Properties:
409JailBreakerV12.Name = "JailBreaker V1.2"
410JailBreakerV12.Parent = game.CoreGui
411
412Main.Name = "Main"
413Main.Parent = JailBreakerV12
414Main.Active = true
415Main.BackgroundColor3 = Color3.new(0.247059, 0.247059, 0.247059)
416Main.BorderColor3 = Color3.new(0.0627451, 0.101961, 0.129412)
417Main.Position = UDim2.new(0.400000006, 0, 1.70000005, 0)
418Main.Size = UDim2.new(0, 406, 0, 320)
419Main.Draggable = true
420
421TPS.Name = "TPS"
422TPS.Parent = Main
423TPS.BackgroundColor3 = Color3.new(1, 1, 0)
424TPS.BackgroundTransparency = 1
425TPS.Position = UDim2.new(0, 0, 0.321875006, 0)
426TPS.Size = UDim2.new(0, 575, 0, 211)
427
428gas.Name = "gas"
429gas.Parent = TPS
430gas.BackgroundColor3 = Color3.new(1, 0, 0)
431gas.Position = UDim2.new(0.248333335, 0, 0.215721205, 0)
432gas.Size = UDim2.new(0, 120, 0, 30)
433gas.Font = Enum.Font.ArialBold
434gas.Text = "Gas Station"
435gas.TextScaled = true
436gas.TextSize = 14
437gas.TextWrapped = true
438
439donut.Name = "donut"
440donut.Parent = TPS
441donut.BackgroundColor3 = Color3.new(1, 0, 0)
442donut.Position = UDim2.new(0.248333335, 0, 0.590128779, 0)
443donut.Size = UDim2.new(0, 120, 0, 30)
444donut.Font = Enum.Font.ArialBold
445donut.Text = "Donut Shop"
446donut.TextScaled = true
447donut.TextSize = 14
448donut.TextWrapped = true
449
450JewOut.Name = "JewOut"
451JewOut.Parent = TPS
452JewOut.BackgroundColor3 = Color3.new(1, 0, 0)
453JewOut.Position = UDim2.new(0.0116666555, 0, 0.593464613, 0)
454JewOut.Size = UDim2.new(0, 120, 0, 30)
455JewOut.Font = Enum.Font.ArialBold
456JewOut.Text = "Jewelry Top"
457JewOut.TextScaled = true
458JewOut.TextSize = 14
459JewOut.TextWrapped = true
460
461JewIn.Name = "JewIn"
462JewIn.Parent = TPS
463JewIn.BackgroundColor3 = Color3.new(1, 0, 0)
464JewIn.Position = UDim2.new(0.0116666853, 0, 0.399151802, 0)
465JewIn.Size = UDim2.new(0, 120, 0, 30)
466JewIn.Font = Enum.Font.ArialBold
467JewIn.Text = "Jewelry Inside"
468JewIn.TextScaled = true
469JewIn.TextSize = 14
470JewIn.TextWrapped = true
471
472BankVault.Name = "BankVault"
473BankVault.Parent = TPS
474BankVault.BackgroundColor3 = Color3.new(1, 0, 0)
475BankVault.Position = UDim2.new(0.0116666555, 0, 0.218009472, 0)
476BankVault.Size = UDim2.new(0, 120, 0, 30)
477BankVault.Font = Enum.Font.ArialBold
478BankVault.Text = "BankVault"
479BankVault.TextScaled = true
480BankVault.TextSize = 14
481BankVault.TextWrapped = true
482
483BankFront.Name = "BankFront"
484BankFront.Parent = TPS
485BankFront.BackgroundColor3 = Color3.new(1, 0, 0)
486BankFront.Position = UDim2.new(0.0116666667, 0, 0.0284360182, 0)
487BankFront.Size = UDim2.new(0, 120, 0, 30)
488BankFront.Font = Enum.Font.ArialBold
489BankFront.Text = "BankFront"
490BankFront.TextScaled = true
491BankFront.TextSize = 14
492BankFront.TextWrapped = true
493
494crim1.Name = "crim1"
495crim1.Parent = TPS
496crim1.BackgroundColor3 = Color3.new(1, 0, 0)
497crim1.Position = UDim2.new(0.0116666853, 0, 0.791977763, 0)
498crim1.Size = UDim2.new(0, 120, 0, 30)
499crim1.Font = Enum.Font.ArialBold
500crim1.Text = "Criminal Base 1"
501crim1.TextScaled = true
502crim1.TextSize = 14
503crim1.TextWrapped = true
504
505crim2.Name = "crim2"
506crim2.Parent = TPS
507crim2.BackgroundColor3 = Color3.new(1, 0, 0)
508crim2.Position = UDim2.new(0.24833335, 0, 0.0306429788, 0)
509crim2.Size = UDim2.new(0, 120, 0, 30)
510crim2.Font = Enum.Font.ArialBold
511crim2.Text = "Criminal Base 2"
512crim2.TextScaled = true
513crim2.TextSize = 14
514crim2.TextWrapped = true
515
516train.Name = "train"
517train.Parent = TPS
518train.BackgroundColor3 = Color3.new(1, 0, 0)
519train.Position = UDim2.new(0.24833332, 0, 0.39810428, 0)
520train.Size = UDim2.new(0, 120, 0, 30)
521train.Font = Enum.Font.ArialBold
522train.Text = "Train Spawn"
523train.TextScaled = true
524train.TextSize = 14
525train.TextWrapped = true
526
527Gravity.Name = "Gravity"
528Gravity.Parent = TPS
529Gravity.BackgroundColor3 = Color3.new(1, 0, 0)
530Gravity.Position = UDim2.new(0.482666641, 0, 0.591469228, 0)
531Gravity.Size = UDim2.new(0, 120, 0, 30)
532Gravity.Font = Enum.Font.ArialBold
533Gravity.Text = "Gravity"
534Gravity.TextScaled = true
535Gravity.TextSize = 14
536Gravity.TextWrapped = true
537
538Walkspeed.Name = "Walkspeed"
539Walkspeed.Parent = TPS
540Walkspeed.BackgroundColor3 = Color3.new(1, 0, 0)
541Walkspeed.Position = UDim2.new(0.482971013, 0, 0.399052143, 0)
542Walkspeed.Size = UDim2.new(0, 120, 0, 30)
543Walkspeed.Font = Enum.Font.ArialBold
544Walkspeed.Text = "Walkspeed [X]"
545Walkspeed.TextScaled = true
546Walkspeed.TextSize = 14
547Walkspeed.TextWrapped = true
548Walkspeed.MouseButton1Down:connect(function()
549 local walkspeedplayer = game:GetService("Players").LocalPlayer
550 local walkspeedmouse = walkspeedplayer:GetMouse()
551
552 local walkspeedenabled = false
553
554 function x_walkspeed(key)
555 if (key == "x") then
556 if walkspeedenabled == false then
557 _G.WS = 200;
558 local Humanoid = game:GetService("Players").LocalPlayer.Character.Humanoid;
559 Humanoid:GetPropertyChangedSignal("WalkSpeed"):Connect(function()
560 Humanoid.WalkSpeed = _G.WS;
561 end)
562 Humanoid.WalkSpeed = _G.WS;
563
564 walkspeedenabled = true
565 elseif walkspeedenabled == true then
566 _G.WS = 20;
567 local Humanoid = game:GetService("Players").LocalPlayer.Character.Humanoid;
568 Humanoid:GetPropertyChangedSignal("WalkSpeed"):Connect(function()
569 Humanoid.WalkSpeed = _G.WS;
570 end)
571 Humanoid.WalkSpeed = _G.WS;
572
573 walkspeedenabled = false
574 end
575 end
576 end
577
578 walkspeedmouse.KeyDown:connect(x_walkspeed)
579
580end)
581autoarrest.Name = "autoarrest"
582autoarrest.Parent = TPS
583autoarrest.BackgroundColor3 = Color3.new(1, 0, 0)
584autoarrest.Position = UDim2.new(0.48333329, 0, 0.199052066, 0)
585autoarrest.Size = UDim2.new(0, 120, 0, 30)
586autoarrest.Font = Enum.Font.ArialBold
587autoarrest.Text = "Auto Arrest"
588autoarrest.TextScaled = true
589autoarrest.TextSize = 14
590autoarrest.TextWrapped = true
591autoarrest.MouseButton1Down:connect(function()
592local Player = game.Players.LocalPlayer
593wait(0.5)
594for i,v in pairs(game.Teams.Criminal:GetPlayers()) do
595 repeat
596 wait()
597 Player.Character.HumanoidRootPart.CFrame = v.Character.HumanoidRootPart.CFrame * CFrame.new(0, 0, 1)
598 until v.Team.Name ~= "Criminal"
599end
600
601end)
602MuseumTop.Name = "MuseumTop"
603MuseumTop.Parent = TPS
604MuseumTop.BackgroundColor3 = Color3.new(1, 0, 0)
605MuseumTop.Position = UDim2.new(0.482971072, 0, 0.0303317457, 0)
606MuseumTop.Size = UDim2.new(0, 120, 0, 30)
607MuseumTop.Font = Enum.Font.ArialBold
608MuseumTop.Text = "Museum Roof"
609MuseumTop.TextScaled = true
610MuseumTop.TextSize = 14
611MuseumTop.TextWrapped = true
612MuseumTop.MouseButton1Down:connect(function()
613 for i = 1,45 do
614wait(.08)
615game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1078.45, 153.904, 1176.52) + Vector3.new(1,0,0)
616end
617end)
618Museum.Name = "Museum"
619Museum.Parent = TPS
620Museum.BackgroundColor3 = Color3.new(1, 0, 0)
621Museum.Position = UDim2.new(0.248333335, 0, 0.789180934, 0)
622Museum.Size = UDim2.new(0, 120, 0, 30)
623Museum.Font = Enum.Font.ArialBold
624Museum.Text = "Museum In"
625Museum.TextScaled = true
626Museum.TextSize = 14
627Museum.TextWrapped = true
628Museum.MouseButton1Down:connect(function()
629 for i = 1,45 do
630wait(.08)
631game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1063.02, 117.562, 1218.757) + Vector3.new(1,0,0)
632end
633end)
634RemoveALL.Name = "RemoveALL"
635RemoveALL.Parent = TPS
636RemoveALL.BackgroundColor3 = Color3.new(1, 0, 0)
637RemoveALL.Position = UDim2.new(0.483333349, 0, 0.791469157, 0)
638RemoveALL.Size = UDim2.new(0, 120, 0, 30)
639RemoveALL.Font = Enum.Font.ArialBold
640RemoveALL.Text = "Remove ALL"
641RemoveALL.TextScaled = true
642RemoveALL.TextSize = 14
643RemoveALL.TextWrapped = true
644RemoveALL.MouseButton1Down:connect(function()
645 game.Workspace.Cells:Remove()
646
647 game.Workspace.Museum.CaseLasers:Remove()
648
649 game.Workspace.Museum.Lights:Remove()
650
651 game.Workspace.Museum.Doors:Remove()
652
653 game.Workspace.EscapeRoutes:Remove()
654
655 for i,v in pairs(workspace.Doors:GetChildren()) do
656 v:Destroy()
657
658 end
659end)
660
661RemoveALL.MouseButton1Down:connect(function()
662 local banklasers = game:GetService("Workspace").Banks:GetChildren()
663 banklasers[1].Lasers:Destroy()
664end)
665
666RemoveALL.MouseButton1Down:connect(function()
667local jewelry = game:GetService("Workspace").Jewelrys:GetChildren()
668
669 for i = 1,4 do
670 local xd = jewelry[1].Model.BarbedWire
671 xd:Destroy()
672 end
673end)
674
675RemoveALL.MouseButton1Down:connect(function()
676 local banklasers = game:GetService("Workspace").Banks:GetChildren()
677 banklasers[1].Door.Model:Destroy()
678end)
679JB2.Name = "JB2"
680JB2.Parent = Main
681JB2.Active = true
682JB2.BackgroundColor3 = Color3.new(0.247059, 0.247059, 0.247059)
683JB2.Position = UDim2.new(0, 0, 0.303124994, 0)
684JB2.Size = UDim2.new(0, 406, 0, 223)
685JB2.Visible = false
686
687CarFly.Name = "CarFly"
688CarFly.Parent = JB2
689CarFly.BackgroundColor3 = Color3.new(1, 0, 0)
690CarFly.Position = UDim2.new(0.0134848487, 0, 0.351305991, 0)
691CarFly.Size = UDim2.new(0, 120, 0, 30)
692CarFly.Font = Enum.Font.ArialBold
693CarFly.Text = "Broken"
694CarFly.TextScaled = true
695CarFly.TextSize = 14
696CarFly.TextWrapped = true
697
698
699CtrlDelete.Name = "CtrlDelete"
700CtrlDelete.Parent = JB2
701CtrlDelete.BackgroundColor3 = Color3.new(1, 0, 0)
702CtrlDelete.Position = UDim2.new(0.684413791, 0, 0.0256950557, 0)
703CtrlDelete.Size = UDim2.new(0, 120, 0, 30)
704CtrlDelete.Font = Enum.Font.ArialBold
705CtrlDelete.Text = "Broken"
706CtrlDelete.TextScaled = true
707CtrlDelete.TextSize = 14
708CtrlDelete.TextWrapped = true
709
710Noclip.Name = "Noclip"
711Noclip.Parent = JB2
712Noclip.BackgroundColor3 = Color3.new(1, 0, 0)
713Noclip.Position = UDim2.new(0.011808035, 0, 0.0278536938, 0)
714Noclip.Size = UDim2.new(0, 120, 0, 30)
715Noclip.Font = Enum.Font.ArialBold
716Noclip.Text = "Noclip[B]"
717Noclip.TextScaled = true
718Noclip.TextSize = 14
719Noclip.TextWrapped = true
720
721BTools.Name = "BTools"
722BTools.Parent = JB2
723BTools.BackgroundColor3 = Color3.new(1, 0, 0)
724BTools.Position = UDim2.new(0.0134630539, 0, 0.189484313, 0)
725BTools.Size = UDim2.new(0, 120, 0, 30)
726BTools.Font = Enum.Font.ArialBold
727BTools.Text = "BTools"
728BTools.TextScaled = true
729BTools.TextSize = 14
730BTools.TextWrapped = true
731
732InfiniteHealth.Name = "InfiniteHealth"
733InfiniteHealth.Parent = JB2
734InfiniteHealth.BackgroundColor3 = Color3.new(1, 0, 0)
735InfiniteHealth.Position = UDim2.new(0.352975368, 0, 0.348161429, 0)
736InfiniteHealth.Size = UDim2.new(0, 120, 0, 30)
737InfiniteHealth.Font = Enum.Font.ArialBold
738InfiniteHealth.Text = "Infinite Health"
739InfiniteHealth.TextScaled = true
740InfiniteHealth.TextSize = 14
741InfiniteHealth.TextWrapped = true
742
743InfiniteNitro.Name = "InfiniteNitro"
744InfiniteNitro.Parent = JB2
745InfiniteNitro.BackgroundColor3 = Color3.new(1, 0, 0)
746InfiniteNitro.Position = UDim2.new(0.352214128, 0, 0.186933994, 0)
747InfiniteNitro.Size = UDim2.new(0, 120, 0, 30)
748InfiniteNitro.Font = Enum.Font.ArialBold
749InfiniteNitro.Text = "Infinite Nitro"
750InfiniteNitro.TextScaled = true
751InfiniteNitro.TextSize = 14
752InfiniteNitro.TextWrapped = true
753
754InfiniteAmmo.Name = "InfiniteAmmo"
755InfiniteAmmo.Parent = JB2
756InfiniteAmmo.BackgroundColor3 = Color3.new(1, 0, 0)
757InfiniteAmmo.Position = UDim2.new(0.351287931, 0, 0.0284955502, 0)
758InfiniteAmmo.Size = UDim2.new(0, 120, 0, 30)
759InfiniteAmmo.Font = Enum.Font.ArialBold
760InfiniteAmmo.Text = "Infinite Ammo"
761InfiniteAmmo.TextScaled = true
762InfiniteAmmo.TextSize = 14
763InfiniteAmmo.TextWrapped = true
764
765Stuff.Name = "Stuff"
766Stuff.Parent = Main
767Stuff.Active = true
768Stuff.BackgroundColor3 = Color3.new(1, 0, 0)
769Stuff.BorderColor3 = Color3.new(0.0627451, 0.101961, 0.129412)
770Stuff.Position = UDim2.new(0, 0, 0.112499997, 0)
771Stuff.Size = UDim2.new(0, 406, 0, 61)
772
773Jailbreak2.Name = "Jailbreak 2"
774Jailbreak2.Parent = Stuff
775Jailbreak2.BackgroundColor3 = Color3.new(1, 1, 0)
776Jailbreak2.Position = UDim2.new(0.35221675, 0, 0.245901644, 0)
777Jailbreak2.Size = UDim2.new(0, 120, 0, 30)
778Jailbreak2.Font = Enum.Font.SourceSansBold
779Jailbreak2.Text = "JailBreak 2"
780Jailbreak2.TextScaled = true
781Jailbreak2.TextSize = 14
782Jailbreak2.TextWrapped = true
783Jailbreak2.MouseButton1Down:connect(function()
784 TPS.Visible = false
785 JB3.Visible = false
786 JB2.Visible = true
787end)
788Teleports.Name = "Teleports"
789Teleports.Parent = Stuff
790Teleports.BackgroundColor3 = Color3.new(1, 1, 0)
791Teleports.Position = UDim2.new(0.0172413792, 0, 0.245901644, 0)
792Teleports.Size = UDim2.new(0, 120, 0, 30)
793Teleports.Font = Enum.Font.SourceSansBold
794Teleports.Text = "Jailbreak"
795Teleports.TextScaled = true
796Teleports.TextSize = 14
797Teleports.TextWrapped = true
798Teleports.MouseButton1Down:connect(function()
799 TPS.Visible = true
800 JB3.Visible = false
801 JB2.Visible = false
802end)
803Jailbreak3.Name = "Jailbreak 3"
804Jailbreak3.Parent = Stuff
805Jailbreak3.BackgroundColor3 = Color3.new(1, 1, 0)
806Jailbreak3.Position = UDim2.new(0.68472904, 0, 0.245901644, 0)
807Jailbreak3.Size = UDim2.new(0, 120, 0, 30)
808Jailbreak3.Font = Enum.Font.SourceSansBold
809Jailbreak3.Text = "JailBreak 3"
810Jailbreak3.TextScaled = true
811Jailbreak3.TextSize = 14
812Jailbreak3.TextWrapped = true
813Jailbreak3.MouseButton1Down:connect(function()
814 TPS.Visible = false
815 JB3.Visible = true
816 JB2.Visible = false
817end)
818Design2.Name = "Design2"
819Design2.Parent = Main
820Design2.Active = true
821Design2.BackgroundColor3 = Color3.new(0.760784, 0, 0)
822Design2.BorderColor3 = Color3.new(0.0627451, 0.101961, 0.129412)
823Design2.Size = UDim2.new(0, 406, 0, 36)
824
825Exit.Name = "Exit"
826Exit.Parent = Design2
827Exit.BackgroundColor3 = Color3.new(0.760784, 0, 0)
828Exit.BackgroundTransparency = 1
829Exit.BorderColor3 = Color3.new(0.364706, 0, 1)
830Exit.BorderSizePixel = 0
831Exit.Position = UDim2.new(0.918333352, 0, 0.166666672, 0)
832Exit.Size = UDim2.new(0, 38, 0, 25)
833Exit.Font = Enum.Font.SourceSans
834Exit.Text = ""
835Exit.TextColor3 = Color3.new(0, 0, 0)
836Exit.TextScaled = true
837Exit.TextSize = 14
838Exit.TextWrapped = true
839
840Name.Name = "Name"
841Name.Parent = Design2
842Name.BackgroundColor3 = Color3.new(0.760784, 0, 0)
843Name.Position = UDim2.new(0.0116666667, 0, 0.166666672, 0)
844Name.Size = UDim2.new(0, 233, 0, 25)
845Name.Font = Enum.Font.Cartoon
846Name.Text = "JailBreaker V1.2"
847Name.TextColor3 = Color3.new(0, 0, 0)
848Name.TextScaled = true
849Name.TextSize = 14
850Name.TextWrapped = true
851
852JB3.Name = "JB3"
853JB3.Parent = Main
854JB3.Active = true
855JB3.BackgroundColor3 = Color3.new(0.247059, 0.247059, 0.247059)
856JB3.Position = UDim2.new(0, 0, 0.303124994, 0)
857JB3.Size = UDim2.new(0, 406, 0, 223)
858JB3.Visible = false
859
860PlayerTP_Input.Name = "PlayerTP_Input"
861PlayerTP_Input.Parent = JB3
862PlayerTP_Input.BackgroundColor3 = Color3.new(1, 0, 0)
863PlayerTP_Input.Position = UDim2.new(0.0172413792, 0, 0.188340813, 0)
864PlayerTP_Input.Size = UDim2.new(0, 391, 0, 50)
865PlayerTP_Input.Font = Enum.Font.ArialBold
866PlayerTP_Input.Text = "Player Name"
867PlayerTP_Input.TextSize = 20
868PlayerTP_Input.TextWrapped = true
869
870PlayerTP_Teleport.Name = "PlayerTP_Teleport"
871PlayerTP_Teleport.Parent = JB3
872PlayerTP_Teleport.BackgroundColor3 = Color3.new(0.4, 0.0980392, 1)
873PlayerTP_Teleport.Position = UDim2.new(0.0172413792, 0, 0.4573991, 0)
874PlayerTP_Teleport.Size = UDim2.new(0, 391, 0, 50)
875PlayerTP_Teleport.Font = Enum.Font.SourceSansBold
876PlayerTP_Teleport.Text = "Teleport To Player"
877PlayerTP_Teleport.TextScaled = true
878PlayerTP_Teleport.TextSize = 14
879PlayerTP_Teleport.TextWrapped = true
880
881BankAutoRobBtn.Name = "BankAutoRobBtn"
882BankAutoRobBtn.Parent = JB3
883BankAutoRobBtn.BackgroundColor3 = Color3.new(1, 0, 0)
884BankAutoRobBtn.Position = UDim2.new(0.0172413792, 0, 0.0269058291, 0)
885BankAutoRobBtn.Size = UDim2.new(0, 391, 0, 30)
886BankAutoRobBtn.Font = Enum.Font.ArialBold
887BankAutoRobBtn.Text = "Bank Auto Rob"
888BankAutoRobBtn.TextScaled = true
889BankAutoRobBtn.TextSize = 14
890BankAutoRobBtn.TextWrapped = true
891BankAutoRobBtn.MouseButton1Click:connect(function()
892 local Bank = workspace:FindFirstChild("Banks"):GetChildren()[1]
893 local Info = Bank.Extra.Sign
894 if Info.Decal.Transparency == 0 then
895 game:GetService("StarterGui"):SetCore("SendNotification",{
896 Title = "Bank is closed!",
897 Text = "You need to wait for the bank to open!",
898 Duration = 7,
899 Button1 = "Dismiss",
900 })
901 return
902 end
903 local bankpos = Vector3.new(Info.Position.X,0,Info.Position.Z)
904 local root = plr.Character.HumanoidRootPart
905 local plrpos = Vector3.new(root.Position.X,0,root.Position.Z)
906
907 if (bankpos - plrpos).magnitude > 150 then
908 local cb = Instance.new"BindableFunction"
909
910 cb.OnInvoke = function(arg)
911 if arg == "Teleport" then
912 JailbreakTp(10, 18, 784)
913 end
914 end
915
916 game:GetService("StarterGui"):SetCore("SendNotification",{
917 Title = "You are too far!",
918 Text = "You need to get closer to the bank (use tp)",
919 Duration = 7,
920 Button1 = "Dismiss",
921 Button2 = "Teleport",
922 Callback = cb
923 })
924 else
925 RobTheBank()
926 end
927end)
928BankStatus.Name = "BankStatus"
929BankStatus.Parent = JB3
930BankStatus.BackgroundColor3 = Color3.new(0, 0.384314, 1)
931BankStatus.Position = UDim2.new(0.731034517, 0, 0.86007303, 0)
932BankStatus.Size = UDim2.new(0, 101, 0, 26)
933BankStatus.Font = Enum.Font.SourceSans
934BankStatus.Text = "Bank:"
935BankStatus.TextColor3 = Color3.new(0, 0, 0)
936BankStatus.TextSize = 14
937
938JewelryStatus.Name = "JewelryStatus"
939JewelryStatus.Parent = JB3
940JewelryStatus.BackgroundColor3 = Color3.new(0, 0.384314, 1)
941JewelryStatus.Position = UDim2.new(0.0174630284, 0, 0.86007303, 0)
942JewelryStatus.Size = UDim2.new(0, 101, 0, 26)
943JewelryStatus.Font = Enum.Font.SourceSans
944JewelryStatus.Text = "Jewelry:"
945JewelryStatus.TextColor3 = Color3.new(0, 0, 0)
946JewelryStatus.TextSize = 14
947
948Open.Name = "Open"
949Open.Parent = JailBreakerV12
950Open.BackgroundColor3 = Color3.new(1, 0, 0)
951Open.Position = UDim2.new(0, 0, 0.75, 0)
952Open.Size = UDim2.new(0, 100, 0, 40)
953Open.Font = Enum.Font.Bodoni
954Open.Text = "Open/Close"
955Open.TextWrapped = true
956Open.TextScaled = true
957local toogle = false
958Open.MouseButton1Down:connect(function()
959 if toogle == false then
960Main:TweenPosition(UDim2.new(0.4,0,0.25,0), 'Out', 'Bounce', 1)
961 toogle = true
962 else
963Main:TweenPosition(UDim2.new(0.4,0,1.7,0), 'Out', 'Bounce', 1)
964 toogle = false
965end
966end)
967
968
969-- Scripts:
970gas.MouseButton1Down:connect(function()
971for i = 1,45 do
972wait(.08)
973game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1586.41101, 17.8481865, 709.37262)
974end
975end)
976
977donut.MouseButton1Down:connect(function()
978 for i = 1,45 do
979wait(.08)
980game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(257.191101, 17.81828869, -1753.11206)
981end
982end)
983
984JewOut.MouseButton1Down:connect(function()
985 for i = 1,45 do
986wait(.08)
987game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(101.211128, 98.6576996, 1310.54175)
988end
989end)
990
991JewIn.MouseButton1Down:connect(function()
992 for i = 1,45 do
993wait(.08)
994game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(133.300705, 17.9375954, 1316.42407)
995end
996end)
997
998BankVault.MouseButton1Down:connect(function()
999 for i = 1,45 do
1000wait(.08)
1001game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(18.3854294, 0.765628457, 815.506348)
1002end
1003end)
1004
1005BankFront.MouseButton1Down:connect(function()
1006 for i = 1,45 do
1007wait(.08)
1008game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(9.92591476, 17.8639755, 786.788147)
1009end
1010end)
1011
1012crim1.MouseButton1Down:connect(function()
1013 for i = 1,45 do
1014wait(.08)
1015game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-221.723099, 17.8924026, 1578.80261)
1016end
1017end)
1018
1019crim2.MouseButton1Down:connect(function()
1020 for i = 1,45 do
1021wait(.08)
1022game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1650.80896, 49.863636, -1770.66626)
1023end
1024end)
1025
1026train.MouseButton1Down:connect(function()
1027 for i = 1,45 do
1028wait(.08)
1029game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1954.95007, 68.0448606, -603.844116)
1030end
1031end)
1032
1033
1034
1035--- other stuff
1036
1037BTools.MouseButton1Down:connect(function()
1038 game.StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Backpack, true)
1039for index, child in pairs(game:GetService("Workspace"):GetChildren()) do
1040 if child.ClassName == "Part" then
1041 child.Locked = false
1042 end
1043 if child.ClassName == "MeshPart" then
1044 child.Locked = false
1045 end
1046 if child.ClassName == "UnionOperation" then
1047 child.Locked = false
1048 end
1049 if child.ClassName == "Model" then
1050 for index, chil in pairs(child:GetChildren()) do
1051 if chil.ClassName == "Part" then
1052 chil.Locked = false
1053 end
1054 if chil.ClassName == "MeshPart" then
1055 chil.Locked = false
1056 end
1057 if chil.ClassName == "UnionOperation" then
1058 chil.Locked = false
1059 end
1060 if chil.ClassName == "Model" then
1061 for index, childe in pairs(chil:GetChildren()) do
1062 if childe.ClassName == "Part" then
1063 childe.Locked = false
1064 end
1065 if childe.ClassName == "MeshPart" then
1066 childe.Locked = false
1067 end
1068 if childe.ClassName == "UnionOperation" then
1069 childe.Locked = false
1070 end
1071 if childe.ClassName == "Model" then
1072 for index, childeo in pairs(childe:GetChildren()) do
1073 if childeo.ClassName == "Part" then
1074 childeo.Locked = false
1075 end
1076 if childeo.ClassName == "MeshPart" then
1077 childeo.Locked = false
1078 end
1079 if childeo.ClassName == "UnionOperation" then
1080 childeo.Locked = false
1081 end
1082 if childeo.ClassName == "Model" then
1083 end
1084 end
1085 end
1086 end
1087 end
1088 end
1089 end
1090end
1091c = Instance.new("HopperBin", game:GetService("Players").LocalPlayer.Backpack)
1092c.BinType = Enum.BinType.Hammer
1093c = Instance.new("HopperBin", game:GetService("Players").LocalPlayer.Backpack)
1094c.BinType = Enum.BinType.Clone
1095c = Instance.new("HopperBin", game:GetService("Players").LocalPlayer.Backpack)
1096c.BinType = Enum.BinType.Grab
1097end)
1098
1099Gravity.MouseButton1Down:connect(function()
1100if Gravity == true then
1101Gravity = false
1102game.workspace.Gravity = 196.2
1103else
1104Gravity = true
1105game.workspace.Gravity = 45
1106end
1107end)
1108
1109InfiniteAmmo.MouseButton1Down:connect(function()
1110 game:GetService("Players").LocalPlayer.PlayerGui.MainGui.Ammo.Current:Destroy()
1111end)
1112
1113InfiniteHealth.MouseButton1Down:connect(function()
1114 game:GetService("Players").LocalPlayer.Character.Humanoid.Name = 1
1115local l = game:GetService("Players").LocalPlayer.Character["1"]:Clone()
1116l.Parent = game:GetService("Players").LocalPlayer.Character
1117l.Name = "Humanoid"
1118wait(0.1)
1119game:GetService("Players").LocalPlayer.Character["1"]:Destroy()
1120game:GetService("Workspace").CurrentCamera.CameraSubject = game:GetService("Players").LocalPlayer.Character
1121game:GetService("Players").LocalPlayer.Character.Animate.Disabled = true
1122wait(0.1)
1123game:GetService("Players").LocalPlayer.Character.Animate.Disabled = false
1124game:GetService("Players").LocalPlayer.Character.Humanoid.DisplayDistanceType = "None"
1125end)
1126
1127InfiniteNitro.MouseButton1Down:connect(function()
1128 game:GetService('Players').LocalPlayer.PlayerGui.MainGui.Nitro.Name = "69696969"
1129 game:GetService('Players').LocalPlayer.PlayerGui.ProductGui.Nitro:ClearAllChildren()
1130end)
1131
1132Noclip.MouseButton1Down:connect(function()
1133 local noclipplayer = game:GetService("Players").LocalPlayer
1134 local noclipmouse = noclipplayer:GetMouse()
1135
1136 local donoclip = false
1137 local noclip = false
1138
1139 function b_noclip(key)
1140 if (key == "b") then
1141 if noclip == false then
1142 donoclip = true
1143
1144 noclip = true
1145 elseif noclip == true then
1146 donoclip = false
1147
1148 noclip = false
1149 end
1150 end
1151 end
1152
1153 noclipmouse.KeyDown:connect(b_noclip)
1154
1155 game:GetService("Players").LocalPlayer.Character.Head.Touched:connect(function(obj)
1156 if obj ~= workspace.Terrain then
1157 if donoclip == true then
1158 obj.CanCollide = false
1159 else
1160 obj.CanCollide = true
1161 end
1162 end
1163 end)
1164end)
1165
1166
1167
1168-- player tp
1169PlayerTP_Teleport.MouseButton1Down:connect(function()
1170 local tp_namedplayer = PlayerTP_Input.Text
1171 local tp_player = game:GetService("Players")[tp_namedplayer]
1172 local PLR = game:GetService("Players").LocalPlayer
1173 local p = PlayerTP_Input.Text
1174
1175 if tp_player then
1176 for i = 1,45 do
1177 wait(.08)
1178 PLR.Character.HumanoidRootPart.CFrame = tp_player.Character.HumanoidRootPart.CFrame + Vector3.new(0, 3, 0)
1179 end
1180 end
1181end)
1182
1183
1184--AutoRob stuff--
1185local DuffelBag = game:GetService("MarketplaceService"):PlayerOwnsAsset(plr, 2219040)
1186local BankAutoRob = {
1187 {
1188 Pos = {51, 18.06, 856.5},
1189 Yield = 2,
1190 Status = "Starting the robbery"
1191 },
1192 {
1193 Pos = {29.71, 0.73, 815.25},
1194 Yield = 15,
1195 Status = "Opening the vault"
1196 },
1197 {
1198 Pos = {18.37, 0.7659, 822.25},
1199 Yield = DuffelBag and 50 or 40,
1200 Status = "Collecting $$$"
1201 },
1202 {
1203 Pos = {10, 18, 784},
1204 Status = "Finishing the robbery"
1205 }
1206}
1207
1208local function Tp(...)
1209 local char = plr.Character
1210 for i=1,2 do
1211 wait()
1212 char:WaitForChild'HumanoidRootPart'.CFrame = CFrame.new(...)
1213 end
1214end
1215
1216function RobTheBank()
1217 for _,v in pairs(BankAutoRob) do
1218 Tp(unpack(v.Pos))
1219 wait(v.Yield)
1220 end
1221end
1222
1223--Bank notification--
1224pcall(function()
1225 local Bank = workspace:FindFirstChild("Banks"):GetChildren()[1]
1226 local Info = Bank.Extra.Sign.Decal
1227 Info:GetPropertyChangedSignal("Transparency"):Connect(function()
1228 if Info.Transparency ~= 0 then
1229 BankStatus.Text = "Bank:Open"
1230 BankStatus.TextColor3 = Color3.new(0,1,0)
1231 BankAutoRobBtn.BackgroundColor3 = Color3.new(0,1,0)
1232 local cb = Instance.new("BindableFunction")
1233 cb.OnInvoke = function(arg)
1234 if arg == "Teleport" then
1235 JailbreakTp(10, 18, 784)
1236 elseif arg == "AutoRob" then
1237 RobTheBank()
1238 end
1239 end
1240 game:GetService("StarterGui"):SetCore("SendNotification",{
1241 Title = "Bank is ready!",
1242 Text = "Bank is ready!",
1243 Duration = 15,
1244 Button1 = "Dismiss",
1245 Button2 = (Vector3.new(Info.Parent.Position.X,0,Info.Parent.Position.Z) - Vector3.new(plr.Character.HumanoidRootPart.Position.X,0,plr.Character.HumanoidRootPart.Position.Z)).magnitude < 150 and "AutoRob" or "Teleport",
1246 Callback = cb
1247 })
1248 else
1249 BankStatus.Text = "Bank:Closed"
1250 BankStatus.TextColor3 = Color3.new(1,0,0)
1251 BankAutoRobBtn.BackgroundColor3 = Color3.new(1,0,0)
1252 end
1253 end)
1254 BankStatus.Text = Info.Transparency == 0 and "Bank:Closed" or "Bank:Open"
1255 BankStatus.TextColor3 = Info.Transparency == 0 and Color3.new(1,0,0) or Color3.new(0,1,0)
1256 BankAutoRobBtn.BackgroundColor3 = Info.Transparency == 0 and Color3.new(1,0,0) or Color3.new(0,1,0)
1257end)
1258--Jewelry notification--
1259pcall(function()
1260 local Jewelry = workspace:FindFirstChild("Jewelrys"):GetChildren()[1]
1261 local Info = Jewelry.Extra.Sign.Decal
1262 Info:GetPropertyChangedSignal("Transparency"):Connect(function()
1263 if Info.Transparency ~= 0 then
1264 JewelryStatus.Text = "Jewelry:Open"
1265 JewelryStatus.TextColor3 = Color3.new(0,1,0)
1266 BankStatus.TextColor3 = Color3.new(0,1,0)
1267 local cb = Instance.new("BindableFunction")
1268 cb.OnInvoke = function(arg)
1269 if arg == "Teleport" then
1270 JailbreakTp(142, 18, 1365)
1271 end
1272 end
1273 game:GetService("StarterGui"):SetCore("SendNotification",{
1274 Title = "Jewelry is ready!",
1275 Text = "Jewelry is ready!",
1276 Duration = 15,
1277 Button1 = "Dismiss",
1278 Button2 = "Teleport",
1279 Callback = cb
1280 })
1281 else
1282 JewelryStatus.Text = "Jewelry:Closed"
1283 JewelryStatus.TextColor3 = Color3.new(1,0,0)
1284 end
1285 end)
1286 JewelryStatus.Text = Info.Transparency == 0 and "Jewelry:Closed" or "Jewelry:Open"
1287 JewelryStatus.TextColor3 = Info.Transparency == 0 and Color3.new(1,0,0) or Color3.new(0,1,0)
1288end)
1289end)
1290
1291TextButton.Parent = Main
1292TextButton.BackgroundColor3 = Color3.new(0, 0, 0)
1293TextButton.Position = UDim2.new(0, 0, 0.445273638, 0)
1294TextButton.Size = UDim2.new(0, 367, 0, 50)
1295TextButton.Font = Enum.Font.SciFi
1296TextButton.Text = "Flee The Facility"
1297TextButton.TextColor3 = Color3.new(1, 1, 1)
1298TextButton.TextSize = 14
1299TextButton.MouseButton1Down:connect(function()
1300-- Objects
1301
1302local ScreenGui = Instance.new("ScreenGui")
1303local Frame = Instance.new("Frame")
1304local Frame_2 = Instance.new("Frame")
1305local Frame_3 = Instance.new("Frame")
1306local TextLabel = Instance.new("TextLabel")
1307local ESP = Instance.new("TextButton")
1308local CLOSE = Instance.new("TextButton")
1309local NOCLIP = Instance.new("TextButton")
1310local FOG = Instance.new("TextButton")
1311local CREDITS = Instance.new("TextBox")
1312local mainopenframe = Instance.new("ImageButton")
1313
1314-- Properties
1315
1316ScreenGui.Parent = game.CoreGui
1317
1318Frame.Parent = ScreenGui
1319Frame.BackgroundColor3 = Color3.new(0.282353, 0, 0.258824)
1320Frame.Position = UDim2.new(0.234875441, 0, 0.110671937, 0)
1321Frame.Size = UDim2.new(0, 476, 0, 271)
1322Frame.Visible = false
1323
1324Frame_2.Parent = Frame
1325Frame_2.BackgroundColor3 = Color3.new(0.564706, 0.541176, 0.666667)
1326Frame_2.BackgroundTransparency = 0.60000002384186
1327Frame_2.Size = UDim2.new(0, 476, 0, 273)
1328Frame_2.SizeConstraint = Enum.SizeConstraint.RelativeXX
1329
1330Frame_3.Parent = Frame_2
1331Frame_3.BackgroundColor3 = Color3.new(0.694118, 0.101961, 0.635294)
1332Frame_3.BackgroundTransparency = 0.60000002384186
1333Frame_3.Size = UDim2.new(0, 476, 0, 50)
1334
1335TextLabel.Parent = Frame_3
1336TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
1337TextLabel.BackgroundTransparency = 1
1338TextLabel.Size = UDim2.new(0, 476, 0, 50)
1339TextLabel.Font = Enum.Font.Bodoni
1340TextLabel.FontSize = Enum.FontSize.Size14
1341TextLabel.Text = "FLEE THE FACILITY GUI"
1342TextLabel.TextColor3 = Color3.new(0.0823529, 1, 0.572549)
1343TextLabel.TextScaled = true
1344TextLabel.TextSize = 14
1345TextLabel.TextWrapped = true
1346
1347ESP.Name = "ESP"
1348ESP.Parent = Frame_2
1349ESP.BackgroundColor3 = Color3.new(0, 0, 0)
1350ESP.Position = UDim2.new(0.0630252063, 0, 0.241758257, 0)
1351ESP.Size = UDim2.new(0, 416, 0, 50)
1352ESP.Font = Enum.Font.Code
1353ESP.FontSize = Enum.FontSize.Size14
1354ESP.Text = "ESP"
1355ESP.TextColor3 = Color3.new(0.0784314, 1, 0.462745)
1356ESP.TextScaled = true
1357ESP.TextSize = 14
1358ESP.TextStrokeColor3 = Color3.new(0.333333, 0.333333, 0)
1359ESP.TextWrapped = true
1360
1361CLOSE.Name = "CLOSE"
1362CLOSE.Parent = Frame_2
1363CLOSE.BackgroundColor3 = Color3.new(0.6, 0, 0)
1364CLOSE.Position = UDim2.new(0.884453773, 0, 0.941391945, 0)
1365CLOSE.Size = UDim2.new(0, 55, 0, 14)
1366CLOSE.Font = Enum.Font.SourceSans
1367CLOSE.FontSize = Enum.FontSize.Size14
1368CLOSE.Text = ""
1369CLOSE.TextSize = 14
1370
1371NOCLIP.Name = "NOCLIP"
1372NOCLIP.Parent = Frame_2
1373NOCLIP.BackgroundColor3 = Color3.new(0, 0, 0)
1374NOCLIP.BorderColor3 = Color3.new(0, 0, 0)
1375NOCLIP.Position = UDim2.new(0.0630252138, 0, 0.450549483, 0)
1376NOCLIP.Size = UDim2.new(0, 416, 0, 50)
1377NOCLIP.Font = Enum.Font.SourceSans
1378NOCLIP.FontSize = Enum.FontSize.Size14
1379NOCLIP.Text = "NOCLIP"
1380NOCLIP.TextColor3 = Color3.new(0.0784314, 1, 0.462745)
1381NOCLIP.TextScaled = true
1382NOCLIP.TextSize = 14
1383NOCLIP.TextStrokeColor3 = Color3.new(1, 0, 0)
1384NOCLIP.TextWrapped = true
1385
1386FOG.Name = "FOG"
1387FOG.Parent = Frame_2
1388FOG.BackgroundColor3 = Color3.new(0, 0, 0)
1389FOG.Position = UDim2.new(0.0630252138, 0, 0.655677676, 0)
1390FOG.Size = UDim2.new(0, 416, 0, 50)
1391FOG.Font = Enum.Font.SourceSans
1392FOG.FontSize = Enum.FontSize.Size14
1393FOG.Text = "Remove FOG"
1394FOG.TextColor3 = Color3.new(0.0784314, 1, 0.462745)
1395FOG.TextScaled = true
1396FOG.TextSize = 14
1397FOG.TextWrapped = true
1398
1399CREDITS.Name = "CREDITS"
1400CREDITS.Parent = Frame_2
1401CREDITS.BackgroundColor3 = Color3.new(1, 1, 1)
1402CREDITS.BackgroundTransparency = 1
1403CREDITS.BorderColor3 = Color3.new(1, 1, 1)
1404CREDITS.BorderSizePixel = 0
1405CREDITS.Position = UDim2.new(0.0630252138, 0, 0.915750921, 0)
1406CREDITS.Size = UDim2.new(0, 189, 0, 21)
1407CREDITS.Font = Enum.Font.Garamond
1408CREDITS.FontSize = Enum.FontSize.Size24
1409CREDITS.Text = "Megumu#8577 & Jesus-Kun#9981"
1410CREDITS.TextColor3 = Color3.new(0.0784314, 1, 0.462745)
1411CREDITS.TextSize = 20
1412
1413mainopenframe.Name = "main open frame"
1414mainopenframe.Parent = ScreenGui
1415mainopenframe.BackgroundColor3 = Color3.new(1, 1, 1)
1416mainopenframe.Position = UDim2.new(0, 0, 0.889328063, 0)
1417mainopenframe.Size = UDim2.new(0, 100, 0, 56)
1418mainopenframe.Image = "rbxgameasset://Images/Openxd"
1419mainopenframe.ImageColor3 = Color3.new(0.333333, 0, 1)
1420
1421mainopenframe.MouseButton1Click:connect(function()
1422Frame.Visible = true
1423end)
1424
1425CLOSE.MouseButton1Click:connect(function()
1426Frame.Visible = false
1427end)
1428
1429ESP.MouseButton1Click:connect(function()
1430local name = "BillboardGui"
1431local function Modify(BillboardGui)
1432 BillboardGui.Enabled = true
1433end
1434
1435local function recursive(obj)
1436 for _, child in pairs(obj:GetChildren()) do
1437 if (child.Name == name) then
1438 Modify(child);
1439 end
1440 recursive(child);
1441 end
1442end
1443recursive(workspace);
1444end)
1445
1446game:GetService('RunService').Stepped:connect(function()
1447if noclip then
1448game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
1449end
1450end)
1451NOCLIP.MouseButton1Click:connect(function()
1452noclip = not noclip
1453if NOCLIP.Text == "NOCLIP" then
1454NOCLIP.Text = "DISABLE NOCLIP"
1455else
1456NOCLIP.Text = "NOCLIP"
1457end
1458end)
1459
1460FOG.MouseButton1Click:connect(function()
1461game.Lighting.FogEnd = 100000
1462game.Lighting.FogStart = 100000
1463end)
1464end)
1465
1466TextButton_2.Parent = Main
1467TextButton_2.BackgroundColor3 = Color3.new(0, 0, 0)
1468TextButton_2.BorderColor3 = Color3.new(0, 0, 0)
1469TextButton_2.Position = UDim2.new(0, 0, 0.569651723, 0)
1470TextButton_2.Size = UDim2.new(0, 367, 0, 50)
1471TextButton_2.Font = Enum.Font.SciFi
1472TextButton_2.Text = "Murder Mystery 2"
1473TextButton_2.TextColor3 = Color3.new(1, 1, 1)
1474TextButton_2.TextSize = 14
1475TextButton_2.MouseButton1Down:connect(function()
1476-- Made by abs_0 (absoabsolute0)
1477-- Objects
1478
1479local mygui = Instance.new("ScreenGui")
1480local maintab = Instance.new("Frame")
1481local title = Instance.new("TextLabel")
1482local bodyframe = Instance.new("Frame")
1483local menuframe = Instance.new("Frame")
1484local generalbuttonframe = Instance.new("Frame")
1485local generalbutton = Instance.new("TextButton")
1486local generalbuttonlabel = Instance.new("ImageLabel")
1487local lpbuttonframe = Instance.new("Frame")
1488local lpbutton = Instance.new("TextButton")
1489local lpbuttonlabel = Instance.new("ImageLabel")
1490local tpbuttonframe = Instance.new("Frame")
1491local tpbutton = Instance.new("TextButton")
1492local tpbuttonlabel = Instance.new("ImageLabel")
1493local tptextbox = Instance.new("TextBox")
1494local tpunderline = Instance.new("Frame")
1495local tpunderlinebase = Instance.new("Frame")
1496local generalframe = Instance.new("Frame")
1497local generalespframe = Instance.new("Frame")
1498local generalespbutton = Instance.new("TextButton")
1499local generalesplabel = Instance.new("ImageLabel")
1500local generalcoinframe = Instance.new("Frame")
1501local generalcoinbutton = Instance.new("TextButton")
1502local generalcoinlabel = Instance.new("ImageLabel")
1503local generalgunframe = Instance.new("Frame")
1504local generalgunbutton = Instance.new("TextButton")
1505local generalgunlabel = Instance.new("ImageLabel")
1506local generallobbyframe = Instance.new("Frame")
1507local generallobbybutton = Instance.new("TextButton")
1508local generallobbylabel = Instance.new("ImageLabel")
1509local lpframe = Instance.new("Frame")
1510local lpjumpframe = Instance.new("Frame")
1511local lpjumpbutton = Instance.new("TextButton")
1512local lpjumplabel = Instance.new("ImageLabel")
1513local lpgravframe = Instance.new("Frame")
1514local lpgravbutton = Instance.new("TextButton")
1515local lpgravlabel = Instance.new("ImageLabel")
1516local lpwalkframe = Instance.new("Frame")
1517local lpwalkbutton = Instance.new("TextButton")
1518local lpwalklabel = Instance.new("ImageLabel")
1519local lpgodframe = Instance.new("Frame")
1520local lpgodbutton = Instance.new("TextButton")
1521local lpgodlabel = Instance.new("ImageLabel")
1522local backbutton1 = Instance.new("TextButton")
1523local backbutton1label = Instance.new("ImageLabel")
1524local backbutton2 = Instance.new("TextButton")
1525local backbutton2label = Instance.new("ImageLabel")
1526local creditsbutton = Instance.new("TextButton")
1527local creditsiconlabel1 = Instance.new("ImageLabel")
1528local creditsiconlabel2 = Instance.new("ImageLabel")
1529local toggle = Instance.new("Frame")
1530local closeall = Instance.new("TextButton")
1531local closeopen = Instance.new("TextButton")
1532local closeopenlabel = Instance.new("ImageLabel")
1533local creditstab = Instance.new("Frame")
1534local creditstitle = Instance.new("TextLabel")
1535local creditsframe = Instance.new("Frame")
1536local creditsmenuframe = Instance.new("Frame")
1537local creditsfield = Instance.new("TextLabel")
1538local closecredits = Instance.new("TextButton")
1539
1540-- Properties
1541
1542mygui.Name = "mygui"
1543mygui.Parent = game.CoreGui
1544
1545maintab.Name = "maintab"
1546maintab.Parent = mygui
1547maintab.Active = true
1548maintab.BackgroundColor3 = Color3.new(1, 1, 1)
1549maintab.BackgroundTransparency = 0.5
1550maintab.BorderSizePixel = 0
1551maintab.Draggable = true
1552maintab.Position = UDim2.new(0, 900, 0, 330)
1553maintab.Size = UDim2.new(0, 256, 0, 30)
1554
1555title.Name = "title"
1556title.Parent = maintab
1557title.BackgroundColor3 = Color3.new(0, 0.45098, 0.862745)
1558title.BorderSizePixel = 0
1559title.Size = UDim2.new(0, 256, 0, 30)
1560title.Font = Enum.Font.SourceSansBold
1561title.FontSize = Enum.FontSize.Size24
1562title.Text = "MM2 Gui"
1563title.TextColor3 = Color3.new(1, 1, 1)
1564title.TextSize = 23
1565
1566bodyframe.Name = "bodyframe"
1567bodyframe.Parent = maintab
1568bodyframe.BackgroundColor3 = Color3.new(0, 0.615686, 1)
1569bodyframe.BorderSizePixel = 0
1570bodyframe.ClipsDescendants = true
1571bodyframe.Position = UDim2.new(0, 0, 0, 30)
1572bodyframe.Size = UDim2.new(0, 256, 0, 222)
1573
1574menuframe.Name = "menuframe"
1575menuframe.Parent = bodyframe
1576menuframe.BackgroundColor3 = Color3.new(1, 1, 1)
1577menuframe.BackgroundTransparency = 1
1578menuframe.BorderSizePixel = 0
1579menuframe.Size = UDim2.new(0, 256, 0, 222)
1580
1581generalbuttonframe.Name = "generalbuttonframe"
1582generalbuttonframe.Parent = menuframe
1583generalbuttonframe.BackgroundColor3 = Color3.new(1, 1, 1)
1584generalbuttonframe.BorderSizePixel = 0
1585generalbuttonframe.Position = UDim2.new(0, 31, 0, 31)
1586generalbuttonframe.Size = UDim2.new(0, 194, 0, 31)
1587
1588generalbutton.Name = "generalbutton"
1589generalbutton.Parent = generalbuttonframe
1590generalbutton.BackgroundColor3 = Color3.new(1, 1, 1)
1591generalbutton.BackgroundTransparency = 1
1592generalbutton.BorderSizePixel = 0
1593generalbutton.ClipsDescendants = true
1594generalbutton.Size = UDim2.new(0, 194, 0, 30)
1595generalbutton.Font = Enum.Font.SourceSansSemibold
1596generalbutton.FontSize = Enum.FontSize.Size24
1597generalbutton.Text = "General"
1598generalbutton.TextColor3 = Color3.new(0, 0.615686, 1)
1599generalbutton.TextSize = 20
1600
1601generalbuttonlabel.Name = "generalbuttonlabel"
1602generalbuttonlabel.Parent = generalbutton
1603generalbuttonlabel.AnchorPoint = Vector2.new(0.5, 0.5)
1604generalbuttonlabel.BackgroundColor3 = Color3.new(1, 1, 1)
1605generalbuttonlabel.BackgroundTransparency = 1
1606generalbuttonlabel.BorderSizePixel = 0
1607generalbuttonlabel.Position = UDim2.new(0.840206146, 0, 0.500000477, 0)
1608generalbuttonlabel.Size = UDim2.new(0, 50, 0, 50)
1609generalbuttonlabel.Visible = false
1610generalbuttonlabel.Image = "rbxassetid://200182847"
1611generalbuttonlabel.ImageColor3 = Color3.new(0, 0.705882, 1)
1612generalbuttonlabel.ImageTransparency = 0.80000001192093
1613
1614lpbuttonframe.Name = "lpbuttonframe"
1615lpbuttonframe.Parent = menuframe
1616lpbuttonframe.BackgroundColor3 = Color3.new(1, 1, 1)
1617lpbuttonframe.BorderSizePixel = 0
1618lpbuttonframe.Position = UDim2.new(0, 31, 0, 96)
1619lpbuttonframe.Size = UDim2.new(0, 194, 0, 31)
1620
1621lpbutton.Name = "lpbutton"
1622lpbutton.Parent = lpbuttonframe
1623lpbutton.BackgroundColor3 = Color3.new(1, 1, 1)
1624lpbutton.BackgroundTransparency = 1
1625lpbutton.BorderSizePixel = 0
1626lpbutton.ClipsDescendants = true
1627lpbutton.Size = UDim2.new(0, 194, 0, 30)
1628lpbutton.Font = Enum.Font.SourceSansSemibold
1629lpbutton.FontSize = Enum.FontSize.Size24
1630lpbutton.Text = "Local Player"
1631lpbutton.TextColor3 = Color3.new(0, 0.615686, 1)
1632lpbutton.TextSize = 19
1633
1634lpbuttonlabel.Name = "lpbuttonlabel"
1635lpbuttonlabel.Parent = lpbutton
1636lpbuttonlabel.AnchorPoint = Vector2.new(0.5, 0.5)
1637lpbuttonlabel.BackgroundColor3 = Color3.new(1, 1, 1)
1638lpbuttonlabel.BackgroundTransparency = 1
1639lpbuttonlabel.BorderSizePixel = 0
1640lpbuttonlabel.Position = UDim2.new(0.840206146, 0, 0.500000477, 0)
1641lpbuttonlabel.Size = UDim2.new(0, 50, 0, 50)
1642lpbuttonlabel.Visible = false
1643lpbuttonlabel.Image = "rbxassetid://200182847"
1644lpbuttonlabel.ImageColor3 = Color3.new(0, 0.705882, 1)
1645lpbuttonlabel.ImageTransparency = 0.80000001192093
1646
1647tptextbox.Name = "tptextbox"
1648tptextbox.Parent = menuframe
1649tptextbox.BackgroundColor3 = Color3.new(1, 1, 1)
1650tptextbox.BackgroundTransparency = 1
1651tptextbox.BorderSizePixel = 0
1652tptextbox.Position = UDim2.new(0, 31, 0, 165)
1653tptextbox.Size = UDim2.new(0, 194, 0, 31)
1654tptextbox.Font = Enum.Font.SourceSans
1655tptextbox.FontSize = Enum.FontSize.Size18
1656tptextbox.Text = "Player Name"
1657tptextbox.TextColor3 = Color3.new(1, 1, 1)
1658tptextbox.TextSize = 15
1659
1660tpunderline.Name = "tpunderline"
1661tpunderline.Parent = tptextbox
1662tpunderline.AnchorPoint = Vector2.new(0, 0)
1663tpunderline.BackgroundColor3 = Color3.new(1, 1, 1)
1664tpunderline.BorderSizePixel = 0
1665tpunderline.Position = UDim2.new(0.496815294, 0, 0.967741966, 0)
1666tpunderline.Size = UDim2.new(0, 0, 0, 2)
1667
1668tpunderlinebase.Name = "tpunderlinebase"
1669tpunderlinebase.Parent = tptextbox
1670tpunderlinebase.AnchorPoint = Vector2.new(0.5, 0.5)
1671tpunderlinebase.BackgroundColor3 = Color3.new(1, 1, 1)
1672tpunderlinebase.BackgroundTransparency = 0.80000001192093
1673tpunderlinebase.BorderSizePixel = 0
1674tpunderlinebase.Position = UDim2.new(0.496815294, 0, 0.967741966, 0)
1675tpunderlinebase.Size = UDim2.new(0, 157, 0, 2)
1676tpunderlinebase.Visible = false --secretkey
1677
1678generalframe.Name = "generalframe"
1679generalframe.Parent = bodyframe
1680generalframe.BackgroundColor3 = Color3.new(1, 1, 1)
1681generalframe.BackgroundTransparency = 1
1682generalframe.BorderSizePixel = 0
1683generalframe.Position = UDim2.new(0, 256, 0, 0)
1684generalframe.Size = UDim2.new(0, 256, 0, 222)
1685
1686generalespframe.Name = "generalespframe"
1687generalespframe.Parent = generalframe
1688generalespframe.BackgroundColor3 = Color3.new(1, 1, 1)
1689generalespframe.BorderSizePixel = 0
1690generalespframe.Position = UDim2.new(0, 31, 0, 172)
1691generalespframe.Size = UDim2.new(0, 194, 0, 30)
1692
1693generalespbutton.Name = "generalespbutton"
1694generalespbutton.Parent = generalespframe
1695generalespbutton.BackgroundColor3 = Color3.new(1, 1, 1)
1696generalespbutton.BackgroundTransparency = 1
1697generalespbutton.BorderSizePixel = 0
1698generalespbutton.ClipsDescendants = true
1699generalespbutton.Size = UDim2.new(0, 194, 0, 30)
1700generalespbutton.Font = Enum.Font.SourceSansSemibold
1701generalespbutton.FontSize = Enum.FontSize.Size24
1702generalespbutton.Text = "ESP (Left Alt)"
1703generalespbutton.TextColor3 = Color3.new(0, 0.615686, 1)
1704generalespbutton.TextSize = 19
1705
1706generalesplabel.Name = "generalesplabel"
1707generalesplabel.Parent = generalespbutton
1708generalesplabel.AnchorPoint = Vector2.new(0.5, 0.5)
1709generalesplabel.BackgroundColor3 = Color3.new(1, 1, 1)
1710generalesplabel.BackgroundTransparency = 1
1711generalesplabel.BorderSizePixel = 0
1712generalesplabel.Position = UDim2.new(0.840206146, 0, 0.500000477, 0)
1713generalesplabel.Size = UDim2.new(0, 50, 0, 50)
1714generalesplabel.Visible = false
1715generalesplabel.Image = "rbxassetid://200182847"
1716generalesplabel.ImageColor3 = Color3.new(0, 0.705882, 1)
1717generalesplabel.ImageTransparency = 0.80000001192093
1718
1719generalcoinframe.Name = "generalcoinframe"
1720generalcoinframe.Parent = generalframe
1721generalcoinframe.BackgroundColor3 = Color3.new(1, 1, 1)
1722generalcoinframe.BorderSizePixel = 0
1723generalcoinframe.Position = UDim2.new(0, 31, 0, 120)
1724generalcoinframe.Size = UDim2.new(0, 194, 0, 30)
1725
1726generalcoinbutton.Name = "generalcoinbutton"
1727generalcoinbutton.Parent = generalcoinframe
1728generalcoinbutton.BackgroundColor3 = Color3.new(1, 1, 1)
1729generalcoinbutton.BackgroundTransparency = 1
1730generalcoinbutton.BorderSizePixel = 0
1731generalcoinbutton.ClipsDescendants = true
1732generalcoinbutton.Position = UDim2.new(0, 0, 0, -1)
1733generalcoinbutton.Size = UDim2.new(0, 194, 0, 31)
1734generalcoinbutton.Font = Enum.Font.SourceSansSemibold
1735generalcoinbutton.FontSize = Enum.FontSize.Size24
1736generalcoinbutton.Text = "Grab 10 Coins"
1737generalcoinbutton.TextColor3 = Color3.new(0, 0.615686, 1)
1738generalcoinbutton.TextSize = 19
1739
1740generalcoinlabel.Name = "generalcoinlabel"
1741generalcoinlabel.Parent = generalcoinbutton
1742generalcoinlabel.AnchorPoint = Vector2.new(0.5, 0.5)
1743generalcoinlabel.BackgroundColor3 = Color3.new(1, 1, 1)
1744generalcoinlabel.BackgroundTransparency = 1
1745generalcoinlabel.BorderSizePixel = 0
1746generalcoinlabel.Position = UDim2.new(0.840206146, 0, 0.500000477, 0)
1747generalcoinlabel.Size = UDim2.new(0, 50, 0, 50)
1748generalcoinlabel.Visible = false
1749generalcoinlabel.Image = "rbxassetid://200182847"
1750generalcoinlabel.ImageColor3 = Color3.new(0, 0.705882, 1)
1751generalcoinlabel.ImageTransparency = 0.80000001192093
1752
1753generalgunframe.Name = "generalgunframe"
1754generalgunframe.Parent = generalframe
1755generalgunframe.BackgroundColor3 = Color3.new(1, 1, 1)
1756generalgunframe.BorderSizePixel = 0
1757generalgunframe.Position = UDim2.new(0, 31, 0, 68)
1758generalgunframe.Size = UDim2.new(0, 194, 0, 30)
1759
1760generalgunbutton.Name = "generalgunbutton"
1761generalgunbutton.Parent = generalgunframe
1762generalgunbutton.BackgroundColor3 = Color3.new(1, 1, 1)
1763generalgunbutton.BackgroundTransparency = 1
1764generalgunbutton.BorderSizePixel = 0
1765generalgunbutton.ClipsDescendants = true
1766generalgunbutton.Size = UDim2.new(0, 194, 0, 30)
1767generalgunbutton.Font = Enum.Font.SourceSansSemibold
1768generalgunbutton.FontSize = Enum.FontSize.Size24
1769generalgunbutton.Text = "Grab Gun"
1770generalgunbutton.TextColor3 = Color3.new(0, 0.615686, 1)
1771generalgunbutton.TextSize = 19
1772
1773generalgunlabel.Name = "generalgunlabel"
1774generalgunlabel.Parent = generalgunbutton
1775generalgunlabel.AnchorPoint = Vector2.new(0.5, 0.5)
1776generalgunlabel.BackgroundColor3 = Color3.new(1, 1, 1)
1777generalgunlabel.BackgroundTransparency = 1
1778generalgunlabel.BorderSizePixel = 0
1779generalgunlabel.Position = UDim2.new(0.840206146, 0, 0.500000477, 0)
1780generalgunlabel.Size = UDim2.new(0, 50, 0, 50)
1781generalgunlabel.Visible = false
1782generalgunlabel.Image = "rbxassetid://200182847"
1783generalgunlabel.ImageColor3 = Color3.new(0, 0.705882, 1)
1784generalgunlabel.ImageTransparency = 0.80000001192093
1785
1786generallobbyframe.Name = "generallobbyframe"
1787generallobbyframe.Parent = generalframe
1788generallobbyframe.BackgroundColor3 = Color3.new(1, 1, 1)
1789generallobbyframe.BorderSizePixel = 0
1790generallobbyframe.Position = UDim2.new(0, 31, 0, 17)
1791generallobbyframe.Size = UDim2.new(0, 194, 0, 30)
1792
1793generallobbybutton.Name = "generallobbybutton"
1794generallobbybutton.Parent = generallobbyframe
1795generallobbybutton.BackgroundColor3 = Color3.new(1, 1, 1)
1796generallobbybutton.BackgroundTransparency = 1
1797generallobbybutton.BorderSizePixel = 0
1798generallobbybutton.ClipsDescendants = true
1799generallobbybutton.Size = UDim2.new(0, 194, 0, 30)
1800generallobbybutton.Font = Enum.Font.SourceSansSemibold
1801generallobbybutton.FontSize = Enum.FontSize.Size24
1802generallobbybutton.Text = "TP to Lobby"
1803generallobbybutton.TextColor3 = Color3.new(0, 0.615686, 1)
1804generallobbybutton.TextSize = 19
1805
1806generallobbylabel.Name = "generallobbylabel"
1807generallobbylabel.Parent = generallobbybutton
1808generallobbylabel.AnchorPoint = Vector2.new(0.5, 0.5)
1809generallobbylabel.BackgroundColor3 = Color3.new(1, 1, 1)
1810generallobbylabel.BackgroundTransparency = 1
1811generallobbylabel.BorderSizePixel = 0
1812generallobbylabel.Position = UDim2.new(0.840206146, 0, 0.500000477, 0)
1813generallobbylabel.Size = UDim2.new(0, 50, 0, 50)
1814generallobbylabel.Visible = false
1815generallobbylabel.Image = "rbxassetid://200182847"
1816generallobbylabel.ImageColor3 = Color3.new(0, 0.705882, 1)
1817generallobbylabel.ImageTransparency = 0.80000001192093
1818
1819lpframe.Name = "lpframe"
1820lpframe.Parent = bodyframe
1821lpframe.BackgroundColor3 = Color3.new(1, 1, 1)
1822lpframe.BackgroundTransparency = 1
1823lpframe.BorderSizePixel = 0
1824lpframe.Position = UDim2.new(0, 256, 0, 0)
1825lpframe.Size = UDim2.new(0, 256, 0, 222)
1826
1827lpjumpframe.Name = "lpjumpframe"
1828lpjumpframe.Parent = lpframe
1829lpjumpframe.BackgroundColor3 = Color3.new(1, 1, 1)
1830lpjumpframe.BorderSizePixel = 0
1831lpjumpframe.Position = UDim2.new(0, 31, 0, 172)
1832lpjumpframe.Size = UDim2.new(0, 194, 0, 30)
1833
1834lpjumpbutton.Name = "lpjumpbutton"
1835lpjumpbutton.Parent = lpjumpframe
1836lpjumpbutton.BackgroundColor3 = Color3.new(1, 1, 1)
1837lpjumpbutton.BackgroundTransparency = 1
1838lpjumpbutton.BorderSizePixel = 0
1839lpjumpbutton.ClipsDescendants = true
1840lpjumpbutton.Size = UDim2.new(0, 194, 0, 30)
1841lpjumpbutton.Font = Enum.Font.SourceSansSemibold
1842lpjumpbutton.FontSize = Enum.FontSize.Size24
1843lpjumpbutton.Text = "High Jump"
1844lpjumpbutton.TextColor3 = Color3.new(0, 0.615686, 1)
1845lpjumpbutton.TextSize = 19
1846
1847lpjumplabel.Name = "lpjumplabel"
1848lpjumplabel.Parent = lpjumpbutton
1849lpjumplabel.AnchorPoint = Vector2.new(0.5, 0.5)
1850lpjumplabel.BackgroundColor3 = Color3.new(1, 1, 1)
1851lpjumplabel.BackgroundTransparency = 1
1852lpjumplabel.BorderSizePixel = 0
1853lpjumplabel.Position = UDim2.new(0.840206146, 0, 0.500000477, 0)
1854lpjumplabel.Size = UDim2.new(0, 50, 0, 50)
1855lpjumplabel.Visible = false
1856lpjumplabel.Image = "rbxassetid://200182847"
1857lpjumplabel.ImageColor3 = Color3.new(0, 0.705882, 1)
1858lpjumplabel.ImageTransparency = 0.80000001192093
1859
1860lpgravframe.Name = "lpgravframe"
1861lpgravframe.Parent = lpframe
1862lpgravframe.BackgroundColor3 = Color3.new(1, 1, 1)
1863lpgravframe.BorderSizePixel = 0
1864lpgravframe.Position = UDim2.new(0, 31, 0, 120)
1865lpgravframe.Size = UDim2.new(0, 194, 0, 30)
1866
1867lpgravbutton.Name = "lpgravbutton"
1868lpgravbutton.Parent = lpgravframe
1869lpgravbutton.BackgroundColor3 = Color3.new(1, 1, 1)
1870lpgravbutton.BackgroundTransparency = 1
1871lpgravbutton.BorderSizePixel = 0
1872lpgravbutton.ClipsDescendants = true
1873lpgravbutton.Position = UDim2.new(0, 0, 0, -1)
1874lpgravbutton.Size = UDim2.new(0, 194, 0, 31)
1875lpgravbutton.Font = Enum.Font.SourceSansSemibold
1876lpgravbutton.FontSize = Enum.FontSize.Size24
1877lpgravbutton.Text = "Low Gravity"
1878lpgravbutton.TextColor3 = Color3.new(0, 0.615686, 1)
1879lpgravbutton.TextSize = 19
1880
1881lpgravlabel.Name = "lpgravlabel"
1882lpgravlabel.Parent = lpgravbutton
1883lpgravlabel.AnchorPoint = Vector2.new(0.5, 0.5)
1884lpgravlabel.BackgroundColor3 = Color3.new(1, 1, 1)
1885lpgravlabel.BackgroundTransparency = 1
1886lpgravlabel.BorderSizePixel = 0
1887lpgravlabel.Position = UDim2.new(0.840206146, 0, 0.500000477, 0)
1888lpgravlabel.Size = UDim2.new(0, 50, 0, 50)
1889lpgravlabel.Visible = false
1890lpgravlabel.Image = "rbxassetid://200182847"
1891lpgravlabel.ImageColor3 = Color3.new(0, 0.705882, 1)
1892lpgravlabel.ImageTransparency = 0.80000001192093
1893
1894lpwalkframe.Name = "lpwalkframe"
1895lpwalkframe.Parent = lpframe
1896lpwalkframe.BackgroundColor3 = Color3.new(1, 1, 1)
1897lpwalkframe.BorderSizePixel = 0
1898lpwalkframe.Position = UDim2.new(0, 31, 0, 68)
1899lpwalkframe.Size = UDim2.new(0, 194, 0, 30)
1900
1901lpwalkbutton.Name = "lpwalkbutton"
1902lpwalkbutton.Parent = lpwalkframe
1903lpwalkbutton.BackgroundColor3 = Color3.new(1, 1, 1)
1904lpwalkbutton.BackgroundTransparency = 1
1905lpwalkbutton.BorderSizePixel = 0
1906lpwalkbutton.ClipsDescendants = true
1907lpwalkbutton.Size = UDim2.new(0, 194, 0, 30)
1908lpwalkbutton.Font = Enum.Font.SourceSansSemibold
1909lpwalkbutton.FontSize = Enum.FontSize.Size24
1910lpwalkbutton.Text = "Fast Walk"
1911lpwalkbutton.TextColor3 = Color3.new(0, 0.615686, 1)
1912lpwalkbutton.TextSize = 19
1913
1914lpwalklabel.Name = "lpwalklabel"
1915lpwalklabel.Parent = lpwalkbutton
1916lpwalklabel.AnchorPoint = Vector2.new(0.5, 0.5)
1917lpwalklabel.BackgroundColor3 = Color3.new(1, 1, 1)
1918lpwalklabel.BackgroundTransparency = 1
1919lpwalklabel.BorderSizePixel = 0
1920lpwalklabel.Position = UDim2.new(0.840206146, 0, 0.500000477, 0)
1921lpwalklabel.Size = UDim2.new(0, 50, 0, 50)
1922lpwalklabel.Visible = false
1923lpwalklabel.Image = "rbxassetid://200182847"
1924lpwalklabel.ImageColor3 = Color3.new(0, 0.705882, 1)
1925lpwalklabel.ImageTransparency = 0.80000001192093
1926
1927lpgodframe.Name = "lpgodframe"
1928lpgodframe.Parent = lpframe
1929lpgodframe.BackgroundColor3 = Color3.new(1, 1, 1)
1930lpgodframe.BorderSizePixel = 0
1931lpgodframe.Position = UDim2.new(0, 31, 0, 17)
1932lpgodframe.Size = UDim2.new(0, 194, 0, 30)
1933
1934lpgodbutton.Name = "lpgodbutton"
1935lpgodbutton.Parent = lpgodframe
1936lpgodbutton.BackgroundColor3 = Color3.new(1, 1, 1)
1937lpgodbutton.BackgroundTransparency = 1
1938lpgodbutton.BorderSizePixel = 0
1939lpgodbutton.ClipsDescendants = true
1940lpgodbutton.Size = UDim2.new(0, 194, 0, 30)
1941lpgodbutton.Font = Enum.Font.SourceSansSemibold
1942lpgodbutton.FontSize = Enum.FontSize.Size24
1943lpgodbutton.Text = "God Mode"
1944lpgodbutton.TextColor3 = Color3.new(0, 0.615686, 1)
1945lpgodbutton.TextSize = 19
1946
1947lpgodlabel.Name = "lpgodlabel"
1948lpgodlabel.Parent = lpgodbutton
1949lpgodlabel.AnchorPoint = Vector2.new(0.5, 0.5)
1950lpgodlabel.BackgroundColor3 = Color3.new(1, 1, 1)
1951lpgodlabel.BackgroundTransparency = 1
1952lpgodlabel.BorderSizePixel = 0
1953lpgodlabel.Position = UDim2.new(0.840206146, 0, 0.500000477, 0)
1954lpgodlabel.Size = UDim2.new(0, 50, 0, 50)
1955lpgodlabel.Visible = false
1956lpgodlabel.Image = "rbxassetid://200182847"
1957lpgodlabel.ImageColor3 = Color3.new(0, 0.705882, 1)
1958lpgodlabel.ImageTransparency = 0.80000001192093
1959
1960backbutton1.Name = "backbutton1"
1961backbutton1.Parent = maintab
1962backbutton1.Active = false
1963backbutton1.BackgroundColor3 = Color3.new(0, 0.407843, 0.658824)
1964backbutton1.BackgroundTransparency = 1
1965backbutton1.BorderSizePixel = 0
1966backbutton1.ClipsDescendants = true
1967backbutton1.Size = UDim2.new(0, 29, 0, 30)
1968backbutton1.Visible = false
1969backbutton1.AutoButtonColor = false
1970backbutton1.Font = Enum.Font.SourceSansBold
1971backbutton1.FontSize = Enum.FontSize.Size24
1972backbutton1.Text = "<"
1973backbutton1.TextColor3 = Color3.new(1, 1, 1)
1974backbutton1.TextSize = 20
1975
1976backbutton1label.Name = "backbutton1label"
1977backbutton1label.Parent = backbutton1
1978backbutton1label.AnchorPoint = Vector2.new(0.5, 0.5)
1979backbutton1label.BackgroundColor3 = Color3.new(1, 1, 1)
1980backbutton1label.BackgroundTransparency = 1
1981backbutton1label.BorderSizePixel = 0
1982backbutton1label.Position = UDim2.new(0.840206146, 0, 0.500000477, 0)
1983backbutton1label.Size = UDim2.new(0, 50, 0, 50)
1984backbutton1label.Visible = false
1985backbutton1label.Image = "rbxassetid://200182847"
1986backbutton1label.ImageTransparency = 0.80000001192093
1987
1988backbutton2.Name = "backbutton2"
1989backbutton2.Parent = maintab
1990backbutton2.Active = false
1991backbutton2.BackgroundColor3 = Color3.new(0, 0.407843, 0.658824)
1992backbutton2.BackgroundTransparency = 1
1993backbutton2.BorderSizePixel = 0
1994backbutton2.ClipsDescendants = true
1995backbutton2.Size = UDim2.new(0, 29, 0, 30)
1996backbutton2.Visible = false
1997backbutton2.AutoButtonColor = false
1998backbutton2.Font = Enum.Font.SourceSansBold
1999backbutton2.FontSize = Enum.FontSize.Size24
2000backbutton2.Text = "<"
2001backbutton2.TextColor3 = Color3.new(1, 1, 1)
2002backbutton2.TextSize = 20
2003
2004backbutton2label.Name = "backbutton2label"
2005backbutton2label.Parent = backbutton2
2006backbutton2label.AnchorPoint = Vector2.new(0.5, 0.5)
2007backbutton2label.BackgroundColor3 = Color3.new(1, 1, 1)
2008backbutton2label.BackgroundTransparency = 1
2009backbutton2label.BorderSizePixel = 0
2010backbutton2label.Position = UDim2.new(0.840206146, 0, 0.500000477, 0)
2011backbutton2label.Size = UDim2.new(0, 50, 0, 50)
2012backbutton2label.Visible = false
2013backbutton2label.Image = "rbxassetid://200182847"
2014backbutton2label.ImageTransparency = 0.80000001192093
2015
2016creditsbutton.Name = "creditsbutton"
2017creditsbutton.Parent = maintab
2018creditsbutton.BackgroundColor3 = Color3.new(1, 1, 1)
2019creditsbutton.BackgroundTransparency = 1
2020creditsbutton.BorderSizePixel = 0
2021creditsbutton.ClipsDescendants = true
2022creditsbutton.Position = UDim2.new(0.87890625, 0, 0, 0)
2023creditsbutton.Size = UDim2.new(0, 31, 0, 30)
2024creditsbutton.Font = Enum.Font.SourceSansSemibold
2025creditsbutton.FontSize = Enum.FontSize.Size18
2026creditsbutton.Text = ""
2027creditsbutton.TextColor3 = Color3.new(0, 0.615686, 1)
2028creditsbutton.TextSize = 15
2029
2030creditsiconlabel1.Name = "creditsiconlabel1"
2031creditsiconlabel1.Parent = creditsbutton
2032creditsiconlabel1.AnchorPoint = Vector2.new(0.5, 0.5)
2033creditsiconlabel1.BackgroundColor3 = Color3.new(1, 1, 1)
2034creditsiconlabel1.BackgroundTransparency = 1
2035creditsiconlabel1.BorderSizePixel = 0
2036creditsiconlabel1.Position = UDim2.new(0.840206146, 0, 0.500000477, 0)
2037creditsiconlabel1.Size = UDim2.new(0, 50, 0, 50)
2038creditsiconlabel1.Visible = false
2039creditsiconlabel1.Image = "rbxassetid://200182847"
2040creditsiconlabel1.ImageTransparency = 0.80000001192093
2041
2042creditsiconlabel2.Name = "creditsiconlabel2"
2043creditsiconlabel2.Parent = creditsbutton
2044creditsiconlabel2.AnchorPoint = Vector2.new(0.5, 0.5)
2045creditsiconlabel2.BackgroundColor3 = Color3.new(1, 1, 1)
2046creditsiconlabel2.BackgroundTransparency = 1
2047creditsiconlabel2.BorderSizePixel = 0
2048creditsiconlabel2.Position = UDim2.new(0.5, 0, 0.5, 0)
2049creditsiconlabel2.Size = UDim2.new(0, 17, 0, 17)
2050creditsiconlabel2.Image = "rbxassetid://23151450"
2051
2052toggle.Name = "toggle"
2053toggle.Parent = mygui
2054toggle.Active = true
2055toggle.BackgroundColor3 = Color3.new(0.992157, 0.984314, 1)
2056toggle.BackgroundTransparency = 0.5
2057toggle.BorderSizePixel = 0
2058toggle.Draggable = true
2059toggle.Position = UDim2.new(0, 5, 0, 530)
2060toggle.Size = UDim2.new(0, 140, 0, 30)
2061
2062closeall.Name = "closeall"
2063closeall.Parent = toggle
2064closeall.BackgroundColor3 = Color3.new(1, 0, 0)
2065closeall.BorderSizePixel = 0
2066closeall.Position = UDim2.new(0, 110, 0, 0)
2067closeall.Size = UDim2.new(0, 30, 0, 30)
2068closeall.FontSize = Enum.FontSize.Size18
2069closeall.Text = ""
2070closeall.TextSize = 15
2071
2072closeopen.Name = "closeopen"
2073closeopen.Parent = toggle
2074closeopen.BackgroundColor3 = Color3.new(0, 0.615686, 1)
2075closeopen.BorderSizePixel = 0
2076closeopen.ClipsDescendants = true
2077closeopen.Size = UDim2.new(0, 110, 0, 30)
2078closeopen.AutoButtonColor = false
2079closeopen.Font = Enum.Font.SourceSansBold
2080closeopen.FontSize = Enum.FontSize.Size24
2081closeopen.Text = "Close"
2082closeopen.TextColor3 = Color3.new(1, 1, 1)
2083closeopen.TextSize = 20
2084
2085closeopenlabel.Name = "closeopenlabel"
2086closeopenlabel.Parent = closeopen
2087closeopenlabel.AnchorPoint = Vector2.new(0.5, 0.5)
2088closeopenlabel.BackgroundColor3 = Color3.new(1, 1, 1)
2089closeopenlabel.BackgroundTransparency = 1
2090closeopenlabel.BorderSizePixel = 0
2091closeopenlabel.Position = UDim2.new(0.840206146, 0, 0.500000477, 0)
2092closeopenlabel.Size = UDim2.new(0, 50, 0, 50)
2093closeopenlabel.Visible = false
2094closeopenlabel.Image = "rbxassetid://200182847"
2095closeopenlabel.ImageTransparency = 0.80000001192093
2096
2097creditstab.Name = "creditstab"
2098creditstab.Parent = mygui
2099creditstab.Active = true
2100creditstab.BackgroundColor3 = Color3.new(1, 1, 1)
2101creditstab.BackgroundTransparency = 0.5
2102creditstab.BorderSizePixel = 0
2103creditstab.Draggable = true
2104creditstab.Position = UDim2.new(0, 42, 0, 47)
2105creditstab.Size = UDim2.new(0, 256, 0, 30)
2106creditstab.Visible = false
2107
2108creditstitle.Name = "creditstitle"
2109creditstitle.Parent = creditstab
2110creditstitle.BackgroundColor3 = Color3.new(0, 0.45098, 0.862745)
2111creditstitle.BorderSizePixel = 0
2112creditstitle.Position = UDim2.new(-0.001953125, 0, 0, 0)
2113creditstitle.Size = UDim2.new(0, 256, 0, 30)
2114creditstitle.Font = Enum.Font.SourceSansBold
2115creditstitle.FontSize = Enum.FontSize.Size24
2116creditstitle.Text = "Credits"
2117creditstitle.TextColor3 = Color3.new(1, 1, 1)
2118creditstitle.TextSize = 23
2119
2120creditsframe.Name = "creditsframe"
2121creditsframe.Parent = creditstab
2122creditsframe.BackgroundColor3 = Color3.new(0, 0.615686, 1)
2123creditsframe.BorderSizePixel = 0
2124creditsframe.ClipsDescendants = true
2125creditsframe.Position = UDim2.new(0, 0, 0, 30)
2126creditsframe.Size = UDim2.new(0, 256, 0, 222)
2127
2128creditsmenuframe.Name = "menuframe"
2129creditsmenuframe.Parent = creditsframe
2130creditsmenuframe.BackgroundColor3 = Color3.new(1, 1, 1)
2131creditsmenuframe.BackgroundTransparency = 1
2132creditsmenuframe.BorderSizePixel = 0
2133creditsmenuframe.Size = UDim2.new(0, 256, 0, 222)
2134
2135creditsfield.Name = "creditsfield"
2136creditsfield.Parent = creditsmenuframe
2137creditsfield.BackgroundColor3 = Color3.new(1, 1, 1)
2138creditsfield.BorderSizePixel = 0
2139creditsfield.Position = UDim2.new(0, 31, 0, 31)
2140creditsfield.Size = UDim2.new(0, 194, 0, 31)
2141creditsfield.Font = Enum.Font.SourceSansSemibold
2142creditsfield.FontSize = Enum.FontSize.Size24
2143creditsfield.Text = "By: abs_0"
2144creditsfield.TextColor3 = Color3.new(0, 0.615686, 1)
2145creditsfield.TextSize = 20
2146
2147closecredits.Name = "closeall"
2148closecredits.Parent = creditstab
2149closecredits.BackgroundColor3 = Color3.new(1, 0, 0)
2150closecredits.BorderSizePixel = 0
2151closecredits.Position = UDim2.new(0, 226, 0, 0)
2152closecredits.Size = UDim2.new(0, 30, 0, 30)
2153closecredits.FontSize = Enum.FontSize.Size18
2154closecredits.Text = ""
2155closecredits.TextSize = 15
2156
2157--Appearance Scripts
2158
2159--mygui.maintab.bodyframe.generalframe.generallobbyframe.generallobbybutton.Script
2160local mouse = game.Players.LocalPlayer:GetMouse()
2161
2162
2163generallobbybutton.MouseButton1Down:connect(function()
2164 local x = (mouse.X) - (generallobbybutton.AbsolutePosition.X)
2165 local y = (mouse.Y) - (generallobbybutton.AbsolutePosition.Y)
2166 generallobbylabel.Position = UDim2.new(0,x,0,y)
2167 generallobbylabel.Size = UDim2.new(0,50,0,50)
2168 generallobbylabel.ImageTransparency = 0.8
2169 generallobbylabel.Visible = true
2170
2171 wait()
2172
2173 generallobbylabel:TweenSize(
2174 UDim2.new(0,390,0,390),
2175 "Out",
2176 "Quint",
2177 1
2178 )
2179end)
2180
2181generallobbybutton.MouseButton1Up:connect(function()
2182 wait(0.35)
2183 local TweenService = game:GetService("TweenService")
2184 local circle = generallobbylabel
2185
2186 local Info = TweenInfo.new(
2187 0.2, -- Length
2188 Enum.EasingStyle.Linear, -- Easing Style
2189 Enum.EasingDirection.Out, -- Easing Direction
2190 0, -- Times repeated
2191 false, -- Reverse
2192 0 -- Delay
2193 )
2194 local Goals =
2195 {
2196 ImageTransparency = 1;
2197 }
2198
2199 local tween = TweenService:Create(circle,Info,Goals)
2200 tween:Play()
2201end)
2202
2203--mygui.maintab.bodyframe.generalframe.generalgunframe.generalgunbutton.Script
2204local mouse = game.Players.LocalPlayer:GetMouse()
2205
2206
2207generalgunbutton.MouseButton1Down:connect(function()
2208 local x = (mouse.X) - (generalgunbutton.AbsolutePosition.X)
2209 local y = (mouse.Y) - (generalgunbutton.AbsolutePosition.Y)
2210 generalgunlabel.Position = UDim2.new(0,x,0,y)
2211 generalgunlabel.Size = UDim2.new(0,50,0,50)
2212 generalgunlabel.ImageTransparency = 0.8
2213 generalgunlabel.Visible = true
2214
2215 wait()
2216
2217 generalgunlabel:TweenSize(
2218 UDim2.new(0,390,0,390),
2219 "Out",
2220 "Quint",
2221 1
2222 )
2223end)
2224
2225generalgunbutton.MouseButton1Up:connect(function()
2226 wait(0.35)
2227 local TweenService = game:GetService("TweenService")
2228 local circle = generalgunlabel
2229
2230 local Info = TweenInfo.new(
2231 0.2, -- Length
2232 Enum.EasingStyle.Linear, -- Easing Style
2233 Enum.EasingDirection.Out, -- Easing Direction
2234 0, -- Times repeated
2235 false, -- Reverse
2236 0 -- Delay
2237 )
2238 local Goals =
2239 {
2240 ImageTransparency = 1;
2241 }
2242
2243 local tween = TweenService:Create(circle,Info,Goals)
2244 tween:Play()
2245end)
2246
2247--mygui.maintab.bodyframe.generalframe.generalcoinframe.generalcoinbutton.Script
2248local mouse = game.Players.LocalPlayer:GetMouse()
2249
2250
2251generalcoinbutton.MouseButton1Down:connect(function()
2252 local x = (mouse.X) - (generalcoinbutton.AbsolutePosition.X)
2253 local y = (mouse.Y) - (generalcoinbutton.AbsolutePosition.Y)
2254 generalcoinlabel.Position = UDim2.new(0,x,0,y)
2255 generalcoinlabel.Size = UDim2.new(0,50,0,50)
2256 generalcoinlabel.ImageTransparency = 0.8
2257 generalcoinlabel.Visible = true
2258
2259 wait()
2260
2261 generalcoinlabel:TweenSize(
2262 UDim2.new(0,390,0,390),
2263 "Out",
2264 "Quint",
2265 1
2266 )
2267end)
2268
2269generalcoinbutton.MouseButton1Up:connect(function()
2270 wait(0.35)
2271 local TweenService = game:GetService("TweenService")
2272 local circle = generalcoinlabel
2273
2274 local Info = TweenInfo.new(
2275 0.2, -- Length
2276 Enum.EasingStyle.Linear, -- Easing Style
2277 Enum.EasingDirection.Out, -- Easing Direction
2278 0, -- Times repeated
2279 false, -- Reverse
2280 0 -- Delay
2281 )
2282 local Goals =
2283 {
2284 ImageTransparency = 1;
2285 }
2286
2287 local tween = TweenService:Create(circle,Info,Goals)
2288 tween:Play()
2289end)
2290
2291--mygui.maintab.bodyframe.generalframe.generalespframe.generalespbutton.Script
2292local mouse = game.Players.LocalPlayer:GetMouse()
2293
2294
2295generalespbutton.MouseButton1Down:connect(function()
2296 local x = (mouse.X) - (generalespbutton.AbsolutePosition.X)
2297 local y = (mouse.Y) - (generalespbutton.AbsolutePosition.Y)
2298 generalesplabel.Position = UDim2.new(0,x,0,y)
2299 generalesplabel.Size = UDim2.new(0,50,0,50)
2300 generalesplabel.ImageTransparency = 0.8
2301 generalesplabel.Visible = true
2302
2303 wait()
2304
2305 generalesplabel:TweenSize(
2306 UDim2.new(0,390,0,390),
2307 "Out",
2308 "Quint",
2309 1
2310 )
2311end)
2312
2313generalespbutton.MouseButton1Up:connect(function()
2314 wait(0.35)
2315 local TweenService = game:GetService("TweenService")
2316 local circle = generalesplabel
2317
2318 local Info = TweenInfo.new(
2319 0.2, -- Length
2320 Enum.EasingStyle.Linear, -- Easing Style
2321 Enum.EasingDirection.Out, -- Easing Direction
2322 0, -- Times repeated
2323 false, -- Reverse
2324 0 -- Delay
2325 )
2326 local Goals =
2327 {
2328 ImageTransparency = 1;
2329 }
2330
2331 local tween = TweenService:Create(circle,Info,Goals)
2332 tween:Play()
2333end)
2334
2335--mygui.maintab.bodyframe.lpframe.lpgodframe.lpgodbutton.Script
2336local mouse = game.Players.LocalPlayer:GetMouse()
2337
2338
2339lpgodbutton.MouseButton1Down:connect(function()
2340 local x = (mouse.X) - (lpgodbutton.AbsolutePosition.X)
2341 local y = (mouse.Y) - (lpgodbutton.AbsolutePosition.Y)
2342 lpgodbutton.lpgodlabel.Position = UDim2.new(0,x,0,y)
2343 lpgodbutton.lpgodlabel.Size = UDim2.new(0,50,0,50)
2344 lpgodbutton.lpgodlabel.ImageTransparency = 0.8
2345 lpgodbutton.lpgodlabel.Visible = true
2346
2347 wait()
2348
2349 lpgodbutton.lpgodlabel:TweenSize(
2350 UDim2.new(0,390,0,390),
2351 "Out",
2352 "Quint",
2353 1
2354 )
2355end)
2356
2357lpgodbutton.MouseButton1Up:connect(function()
2358 wait(0.35)
2359 local TweenService = game:GetService("TweenService")
2360 local circle = lpgodbutton.lpgodlabel
2361
2362 local Info = TweenInfo.new(
2363 0.2, -- Length
2364 Enum.EasingStyle.Linear, -- Easing Style
2365 Enum.EasingDirection.Out, -- Easing Direction
2366 0, -- Times repeated
2367 false, -- Reverse
2368 0 -- Delay
2369 )
2370 local Goals =
2371 {
2372 ImageTransparency = 1;
2373 }
2374
2375 local tween = TweenService:Create(circle,Info,Goals)
2376 tween:Play()
2377end)
2378
2379--mygui.maintab.bodyframe.lpframe.lpwalkframe.lpwalkbutton.Script
2380local mouse = game.Players.LocalPlayer:GetMouse()
2381
2382
2383lpwalkbutton.MouseButton1Down:connect(function()
2384 if game.Players.LocalPlayer.Character.Humanoid.WalkSpeed == 16 * 5 then
2385 lpwalkbutton.TextColor3 = Color3.new(1,128/255,0)
2386 lpwalkbutton.lpwalklabel.ImageColor3 = Color3.new(1,128/255,0)
2387 else
2388 lpwalkbutton.TextColor3 = Color3.new(0,157/255,1)
2389 lpwalkbutton.lpwalklabel.ImageColor3 = Color3.new(0,157/255,1)
2390 end
2391
2392 local x = (mouse.X) - (lpwalkbutton.AbsolutePosition.X)
2393 local y = (mouse.Y) - (lpwalkbutton.AbsolutePosition.Y)
2394 lpwalkbutton.lpwalklabel.Position = UDim2.new(0,x,0,y)
2395 lpwalkbutton.lpwalklabel.Size = UDim2.new(0,50,0,50)
2396 lpwalkbutton.lpwalklabel.ImageTransparency = 0.8
2397 lpwalkbutton.lpwalklabel.Visible = true
2398
2399 wait()
2400
2401 lpwalkbutton.lpwalklabel:TweenSize(
2402 UDim2.new(0,390,0,390),
2403 "Out",
2404 "Quint",
2405 1
2406 )
2407end)
2408
2409lpwalkbutton.MouseButton1Up:connect(function()
2410 wait(0.35)
2411 local TweenService = game:GetService("TweenService")
2412 local circle = lpwalkbutton.lpwalklabel
2413
2414 local Info = TweenInfo.new(
2415 0.2, -- Length
2416 Enum.EasingStyle.Linear, -- Easing Style
2417 Enum.EasingDirection.Out, -- Easing Direction
2418 0, -- Times repeated
2419 false, -- Reverse
2420 0 -- Delay
2421 )
2422 local Goals =
2423 {
2424 ImageTransparency = 1;
2425 }
2426
2427 local tween = TweenService:Create(circle,Info,Goals)
2428 tween:Play()
2429end)
2430
2431--mygui.maintab.bodyframe.lpframe.lpgravframe.lpgravbutton.Script
2432local mouse = game.Players.LocalPlayer:GetMouse()
2433
2434lpgravbutton.MouseButton1Down:connect(function()
2435 if game.Workspace.Gravity < 196.1 then
2436 lpgravbutton.TextColor3 = Color3.new(1,128/255,0)
2437 lpgravbutton.lpgravlabel.ImageColor3 = Color3.new(1,128/255,0)
2438 else
2439 lpgravbutton.TextColor3 = Color3.new(0,157/255,1)
2440 lpgravbutton.lpgravlabel.ImageColor3 = Color3.new(0,157/255,1)
2441 end
2442
2443 local x = (mouse.X) - (lpgravbutton.AbsolutePosition.X)
2444 local y = (mouse.Y) - (lpgravbutton.AbsolutePosition.Y)
2445 lpgravbutton.lpgravlabel.Position = UDim2.new(0,x,0,y)
2446 lpgravbutton.lpgravlabel.Size = UDim2.new(0,50,0,50)
2447 lpgravbutton.lpgravlabel.ImageTransparency = 0.8
2448 lpgravbutton.lpgravlabel.Visible = true
2449
2450 wait()
2451
2452 lpgravbutton.lpgravlabel:TweenSize(
2453 UDim2.new(0,390,0,390),
2454 "Out",
2455 "Quint",
2456 1
2457 )
2458end)
2459
2460lpgravbutton.MouseButton1Up:connect(function()
2461 wait(0.35)
2462 local TweenService = game:GetService("TweenService")
2463 local circle = lpgravbutton.lpgravlabel
2464
2465 local Info = TweenInfo.new(
2466 0.2, -- Length
2467 Enum.EasingStyle.Linear, -- Easing Style
2468 Enum.EasingDirection.Out, -- Easing Direction
2469 0, -- Times repeated
2470 false, -- Reverse
2471 0 -- Delay
2472 )
2473 local Goals =
2474 {
2475 ImageTransparency = 1;
2476 }
2477
2478 local tween = TweenService:Create(circle,Info,Goals)
2479 tween:Play()
2480end)
2481
2482--mygui.maintab.bodyframe.lpframe.lpjumpframe.lpjumpbutton.Script
2483local mouse = game.Players.LocalPlayer:GetMouse()
2484
2485
2486lpjumpbutton.MouseButton1Down:connect(function()
2487 if game.Players.LocalPlayer.Character.Humanoid.JumpPower == 100 then
2488 lpjumpbutton.TextColor3 = Color3.new(1,128/255,0)
2489 lpjumpbutton.lpjumplabel.ImageColor3 = Color3.new(1,128/255,0)
2490 else
2491 lpjumpbutton.TextColor3 = Color3.new(0,157/255,1)
2492 lpjumpbutton.lpjumplabel.ImageColor3 = Color3.new(0,157/255,1)
2493 end
2494
2495 local x = (mouse.X) - (lpjumpbutton.AbsolutePosition.X)
2496 local y = (mouse.Y) - (lpjumpbutton.AbsolutePosition.Y)
2497 lpjumpbutton.lpjumplabel.Position = UDim2.new(0,x,0,y)
2498 lpjumpbutton.lpjumplabel.Size = UDim2.new(0,50,0,50)
2499 lpjumpbutton.lpjumplabel.ImageTransparency = 0.8
2500 lpjumpbutton.lpjumplabel.Visible = true
2501
2502 wait()
2503
2504 lpjumpbutton.lpjumplabel:TweenSize(
2505 UDim2.new(0,390,0,390),
2506 "Out",
2507 "Quint",
2508 1
2509 )
2510end)
2511
2512lpjumpbutton.MouseButton1Up:connect(function()
2513 wait(0.35)
2514 local TweenService = game:GetService("TweenService")
2515 local circle = lpjumpbutton.lpjumplabel
2516
2517 local Info = TweenInfo.new(
2518 0.2, -- Length
2519 Enum.EasingStyle.Linear, -- Easing Style
2520 Enum.EasingDirection.Out, -- Easing Direction
2521 0, -- Times repeated
2522 false, -- Reverse
2523 0 -- Delay
2524 )
2525 local Goals =
2526 {
2527 ImageTransparency = 1;
2528 }
2529
2530 local tween = TweenService:Create(circle,Info,Goals)
2531 tween:Play()
2532end)
2533
2534--mygui.maintab.bodyframe.menuframe.generalbuttonframe.generalbutton.Script
2535local mouse = game.Players.LocalPlayer:GetMouse()
2536
2537
2538generalbutton.MouseButton1Down:connect(function()
2539 local x = (mouse.X) - (generalbutton.AbsolutePosition.X)
2540 local y = (mouse.Y) - (generalbutton.AbsolutePosition.Y)
2541 generalbutton.generalbuttonlabel.Position = UDim2.new(0,x,0,y)
2542 generalbutton.generalbuttonlabel.Size = UDim2.new(0,50,0,50)
2543 generalbutton.generalbuttonlabel.ImageTransparency = 0.8
2544 generalbutton.generalbuttonlabel.Visible = true
2545
2546 wait()
2547
2548 generalbutton.generalbuttonlabel:TweenSize(
2549 UDim2.new(0,390,0,390),
2550 "Out",
2551 "Quint",
2552 1
2553 )
2554end)
2555
2556generalbutton.MouseButton1Up:connect(function()
2557 wait(0.35)
2558 local TweenService = game:GetService("TweenService")
2559 local circle = generalbutton.generalbuttonlabel
2560
2561 local Info = TweenInfo.new(
2562 0.2, -- Length
2563 Enum.EasingStyle.Linear, -- Easing Style
2564 Enum.EasingDirection.Out, -- Easing Direction
2565 0, -- Times repeated
2566 false, -- Reverse
2567 0 -- Delay
2568 )
2569 local Goals =
2570 {
2571 ImageTransparency = 1;
2572 }
2573
2574 local tween = TweenService:Create(circle,Info,Goals)
2575 tween:Play()
2576end)
2577
2578--mygui.maintab.bodyframe.menuframe.generalbuttonframe.generalbutton.TransitionScript
2579generalbutton.MouseButton1Click:connect(function()
2580 wait(0.25)
2581 menuframe:TweenPosition(
2582 UDim2.new(0,-256,0,0),
2583 "Out",
2584 "Quint",
2585 0.2
2586 )
2587 generalframe:TweenPosition(
2588 UDim2.new(0,0,0,0),
2589 "Out",
2590 "Quint",
2591 0.2
2592 )
2593 backbutton1.Visible = true
2594 backbutton1.Active = true
2595 maintab.title.Text = "General"
2596 maintab.title.TextSize = 19
2597end)
2598
2599--mygui.maintab.bodyframe.menuframe.lpbuttonframe.lpbutton.Script
2600local mouse = game.Players.LocalPlayer:GetMouse()
2601
2602
2603lpbutton.MouseButton1Down:connect(function()
2604 local x = (mouse.X) - (lpbutton.AbsolutePosition.X)
2605 local y = (mouse.Y) - (lpbutton.AbsolutePosition.Y)
2606 lpbutton.lpbuttonlabel.Position = UDim2.new(0,x,0,y)
2607 lpbutton.lpbuttonlabel.Size = UDim2.new(0,50,0,50)
2608 lpbutton.lpbuttonlabel.ImageTransparency = 0.8
2609 lpbutton.lpbuttonlabel.Visible = true
2610
2611 wait()
2612
2613 lpbuttonlabel:TweenSize(
2614 UDim2.new(0,390,0,390),
2615 "Out",
2616 "Quint",
2617 1
2618 )
2619end)
2620
2621lpbutton.MouseButton1Up:connect(function()
2622 wait(0.35)
2623 local TweenService = game:GetService("TweenService")
2624 local circle = lpbutton.lpbuttonlabel
2625
2626 local Info = TweenInfo.new(
2627 0.2, -- Length
2628 Enum.EasingStyle.Linear, -- Easing Style
2629 Enum.EasingDirection.Out, -- Easing Direction
2630 0, -- Times repeated
2631 false, -- Reverse
2632 0 -- Delay
2633 )
2634 local Goals =
2635 {
2636 ImageTransparency = 1;
2637 }
2638
2639 local tween = TweenService:Create(circle,Info,Goals)
2640 tween:Play()
2641end)
2642
2643--mygui.maintab.bodyframe.menuframe.lpbuttonframe.lpbutton.TransitionScript
2644lpbutton.MouseButton1Click:connect(function()
2645 wait(0.25)
2646 menuframe:TweenPosition(
2647 UDim2.new(0,-256,0,0),
2648 "Out",
2649 "Quint",
2650 0.2
2651 )
2652 lpframe:TweenPosition(
2653 UDim2.new(0,0,0,0),
2654 "Out",
2655 "Quint",
2656 0.2
2657 )
2658 backbutton2.Visible = true
2659 backbutton2.Active = true
2660 maintab.title.Text = "Local Player"
2661 maintab.title.TextSize = 19
2662end)
2663
2664--mygui.maintab.bodyframe.menuframe.tpbuttonframe.tpbutton.Script
2665local mouse = game.Players.LocalPlayer:GetMouse()
2666
2667
2668tpbutton.MouseButton1Down:connect(function()
2669 local x = (mouse.X) - (tpbutton.AbsolutePosition.X)
2670 local y = (mouse.Y) - (tpbutton.AbsolutePosition.Y)
2671 tpbutton.tpbuttonlabel.Position = UDim2.new(0,x,0,y)
2672 tpbutton.tpbuttonlabel.Size = UDim2.new(0,0,0,0)
2673 tpbutton.tpbuttonlabel.ImageTransparency = 0.8
2674 tpbutton.tpbuttonlabel.Visible = true
2675
2676 wait()
2677
2678 tpbutton.tpbuttonlabel:TweenSize(
2679 UDim2.new(0,75,0,75),
2680 "Out",
2681 "Quint",
2682 0.9
2683 )
2684end)
2685
2686tpbutton.MouseButton1Up:connect(function()
2687 wait(0.35)
2688 local TweenService = game:GetService("TweenService")
2689 local circle = tpbutton.tpbuttonlabel
2690
2691 local Info = TweenInfo.new(
2692 0.2, -- Length
2693 Enum.EasingStyle.Linear, -- Easing Style
2694 Enum.EasingDirection.Out, -- Easing Direction
2695 0, -- Times repeated
2696 false, -- Reverse
2697 0 -- Delay
2698 )
2699 local Goals =
2700 {
2701 ImageTransparency = 1;
2702 }
2703
2704 local tween = TweenService:Create(circle,Info,Goals)
2705 tween:Play()
2706end)
2707
2708--mygui.maintab.bodyframe.menuframe.tptextbox.matscript
2709--[[tptextbox.Focused:connect(function()
2710 local mouse = game.Players.LocalPlayer:GetMouse()
2711 tptextbox.tpunderline.BackgroundTransparency = 0
2712 local x = (mouse.X) - (tpbutton.AbsolutePosition.X)
2713 tpunderline.Position = UDim2.new(0,x,0,30) --insert correct offset in Y!!
2714
2715 wait()
2716 tptextbox.tpunderline:TweenSizeAndPosition(
2717 UDim2.new(0,156,0,2),
2718 UDim2.new(0,0,0,30),
2719 "Out",
2720 "Quint",
2721 0.2
2722 )
2723end)]]--
2724
2725--mygui.maintab.backbutton1.Script
2726local mouse = game.Players.LocalPlayer:GetMouse()
2727
2728backbutton1.MouseButton1Down:connect(function()
2729 backbutton1.backbutton1label.Position = UDim2.new(0.5,0,0.5,0)
2730 backbutton1.backbutton1label.Size = UDim2.new(0,0,0,0)
2731 backbutton1.backbutton1label.ImageTransparency = 0.8
2732 backbutton1.backbutton1label.Visible = true
2733
2734 wait()
2735
2736 backbutton1.backbutton1label:TweenSize(
2737 UDim2.new(0,60,0,60),
2738 "Out",
2739 "Quint",
2740 0.25
2741 )
2742end)
2743
2744backbutton1.MouseButton1Up:connect(function()
2745 wait(0.35)
2746 local TweenService = game:GetService("TweenService")
2747 local circle = backbutton1.backbutton1label
2748
2749 local Info = TweenInfo.new(
2750 0.2, -- Length
2751 Enum.EasingStyle.Linear, -- Easing Style
2752 Enum.EasingDirection.Out, -- Easing Direction
2753 0, -- Times repeated
2754 false, -- Reverse
2755 0 -- Delay
2756 )
2757 local Goals =
2758 {
2759 ImageTransparency = 1;
2760 }
2761
2762 local tween = TweenService:Create(circle,Info,Goals)
2763 tween:Play()
2764end)
2765
2766--mygui.maintab.backbutton1.TransitionScript
2767backbutton1.MouseButton1Click:connect(function()
2768 wait(0.2)
2769 menuframe:TweenPosition(
2770 UDim2.new(0,0,0,0),
2771 "Out",
2772 "Quint",
2773 0.2
2774 )
2775 generalframe:TweenPosition(
2776 UDim2.new(0,256,0,0),
2777 "Out",
2778 "Quint",
2779 0.2
2780 )
2781 backbutton1.Visible = false
2782 backbutton1.Active = false
2783 maintab.title.Text = "MM2 Gui"
2784 maintab.title.TextSize = 20
2785end)
2786
2787--mygui.maintab.backbutton2.Script
2788local mouse = game.Players.LocalPlayer:GetMouse()
2789
2790
2791backbutton2.MouseButton1Down:connect(function()
2792 backbutton2.backbutton2label.Position = UDim2.new(0.5,0,0.5,0)
2793 backbutton2.backbutton2label.Size = UDim2.new(0,0,0,0)
2794 backbutton2.backbutton2label.ImageTransparency = 0.8
2795 backbutton2.backbutton2label.Visible = true
2796
2797 wait()
2798
2799 backbutton2.backbutton2label:TweenSize(
2800 UDim2.new(0,60,0,60),
2801 "Out",
2802 "Quint",
2803 0.25
2804 )
2805end)
2806
2807backbutton2.MouseButton1Up:connect(function()
2808 wait(0.35)
2809 local TweenService = game:GetService("TweenService")
2810 local circle = backbutton2.backbutton2label
2811
2812 local Info = TweenInfo.new(
2813 0.2, -- Length
2814 Enum.EasingStyle.Linear, -- Easing Style
2815 Enum.EasingDirection.Out, -- Easing Direction
2816 0, -- Times repeated
2817 false, -- Reverse
2818 0 -- Delay
2819 )
2820 local Goals =
2821 {
2822 ImageTransparency = 1;
2823 }
2824
2825 local tween = TweenService:Create(circle,Info,Goals)
2826 tween:Play()
2827end)
2828
2829--mygui.maintab.backbutton2.TransitionScript
2830backbutton2.MouseButton1Click:connect(function()
2831 wait(0.2)
2832 menuframe:TweenPosition(
2833 UDim2.new(0,0,0,0),
2834 "Out",
2835 "Quint",
2836 0.2
2837 )
2838 lpframe:TweenPosition(
2839 UDim2.new(0,256,0,0),
2840 "Out",
2841 "Quint",
2842 0.2
2843 )
2844 backbutton2.Visible = false
2845 backbutton2.Active = false
2846 backbutton2.Parent.title.Text = "MM2 Gui"
2847 backbutton2.Parent.title.TextSize = 20
2848end)
2849
2850--mygui.maintab.creditsbutton.Script
2851local mouse = game.Players.LocalPlayer:GetMouse()
2852
2853
2854creditsbutton.MouseButton1Down:connect(function()
2855 local x = (mouse.X) - (creditsbutton.AbsolutePosition.X)
2856 local y = (mouse.Y) - (creditsbutton.AbsolutePosition.Y)
2857 creditsbutton.creditsiconlabel1.Position = UDim2.new(0,x,0,y)
2858 creditsbutton.creditsiconlabel1.Size = UDim2.new(0,0,0,0)
2859 creditsbutton.creditsiconlabel1.ImageTransparency = 0.8
2860 creditsbutton.creditsiconlabel1.Visible = true
2861
2862 wait()
2863
2864 creditsbutton.creditsiconlabel1:TweenSize(
2865 UDim2.new(0,75,0,75),
2866 "Out",
2867 "Quint",
2868 0.9
2869 )
2870end)
2871
2872creditsbutton.MouseButton1Up:connect(function()
2873 wait(0.35)
2874 local TweenService = game:GetService("TweenService")
2875 local circle = creditsbutton.creditsiconlabel1
2876
2877 local Info = TweenInfo.new(
2878 0.2, -- Length
2879 Enum.EasingStyle.Linear, -- Easing Style
2880 Enum.EasingDirection.Out, -- Easing Direction
2881 0, -- Times repeated
2882 false, -- Reverse
2883 0 -- Delay
2884 )
2885 local Goals =
2886 {
2887 ImageTransparency = 1;
2888 }
2889
2890 local tween = TweenService:Create(circle,Info,Goals)
2891 tween:Play()
2892end)
2893
2894--mygui.maintab.creditsbutton.CreditsWindowScript
2895creditsbutton.MouseButton1Click:connect(function()
2896 creditstab.Visible = true
2897 creditstab.Active = true
2898end)
2899
2900--mygui.creditstab.closecredits.Script
2901closecredits.MouseButton1Click:connect(function()
2902 creditstab.Visible = false
2903 creditstab.Active = false
2904end)
2905
2906--mygui.toggle.closeopen.CloseOpenScript
2907closeopen.MouseButton1Click:connect(function()
2908 if
2909 (maintab.Visible == true) and
2910 (maintab.Active == true) then
2911 maintab.Visible = false
2912 maintab.Active = false
2913 closeopen.Text = "Open"
2914 else
2915 maintab.Visible = true
2916 maintab.Active = true
2917 closeopen.Text = "Close"
2918 end
2919end)
2920
2921--mygui.toggle.closeopen.Script
2922local mouse = game.Players.LocalPlayer:GetMouse()
2923
2924
2925closeopen.MouseButton1Down:connect(function()
2926 local x = (mouse.X) - (closeopen.AbsolutePosition.X)
2927 local y = (mouse.Y) - (closeopen.AbsolutePosition.Y)
2928 closeopen.closeopenlabel.Position = UDim2.new(0,x,0,y)
2929 closeopen.closeopenlabel.Size = UDim2.new(0,50,0,50)
2930 closeopen.closeopenlabel.ImageTransparency = 0.8
2931 closeopen.closeopenlabel.Visible = true
2932
2933 wait()
2934
2935 closeopen.closeopenlabel:TweenSize(
2936 UDim2.new(0,240,0,240),
2937 "Out",
2938 "Quint",
2939 1
2940 )
2941end)
2942
2943closeopen.MouseButton1Up:connect(function()
2944 wait(0.35)
2945 local TweenService = game:GetService("TweenService")
2946 local circle = closeopen.closeopenlabel
2947
2948 local Info = TweenInfo.new(
2949 0.2, -- Length
2950 Enum.EasingStyle.Linear, -- Easing Style
2951 Enum.EasingDirection.Out, -- Easing Direction
2952 0, -- Times repeated
2953 false, -- Reverse
2954 0 -- Delay
2955 )
2956 local Goals =
2957 {
2958 ImageTransparency = 1;
2959 }
2960
2961 local tween = TweenService:Create(circle,Info,Goals)
2962 tween:Play()
2963end)
2964
2965--mygui.toggle.closeall.Script
2966closeall.MouseButton1Click:connect(function()
2967 mygui:Remove()
2968end)
2969
2970-- Scripts
2971
2972lpgravbutton.MouseButton1Down:connect(function()
2973 if game.Workspace.Gravity > 196.1 then
2974 game.Workspace.Gravity = 50
2975 else
2976 game.Workspace.Gravity = 196.2
2977 end
2978end)
2979
2980lpwalkbutton.MouseButton1Down:connect(function()
2981 if game.Players.LocalPlayer.Character.Humanoid.WalkSpeed == 16 then
2982 game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16 * 5
2983 else
2984 game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16
2985 end
2986end)
2987
2988lpjumpbutton.MouseButton1Down:connect(function()
2989 if game.Players.LocalPlayer.Character.Humanoid.JumpPower == 50 then
2990 game.Players.LocalPlayer.Character.Humanoid.JumpPower = 100
2991 else
2992 game.Players.LocalPlayer.Character.Humanoid.JumpPower = 50
2993 end
2994end)
2995
2996lpgodbutton.MouseButton1Down:connect(function()
2997 game.Players.LocalPlayer.Character.Humanoid:Remove()
2998 Instance.new('Humanoid', game.Players.LocalPlayer.Character)
2999end)
3000
3001generallobbybutton.MouseButton1Down:connect(function()
3002 game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-109.56, 140, -11.75) + Vector3.new(1, 0, 0)
3003end)
3004
3005generalgunbutton.MouseButton1Down:connect(function()
3006 game.Workspace.GunDrop.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame + Vector3.new(2,0,0)
3007end)
3008
3009generalcoinbutton.MouseButton1Down:connect(function()
3010 for i = 10, 1, -1 do
3011 for i,v in pairs(game.Workspace:GetChildren()) do
3012 local s = v:FindFirstChild("CoinContainer")
3013 local e = game.Players.LocalPlayer.Character:FindFirstChild("Torso")
3014 if e and s then
3015 for i,c in pairs(s:GetChildren()) do
3016 c.CFrame = game.Players.LocalPlayer.Character.Torso.CFrame
3017 end
3018 end
3019 end
3020 wait(0.7)
3021 end
3022end)
3023
3024--[[tpbutton.MouseButton1Down:connect(function()
3025 for i,v in pairs(game.Workspace:GetChildren()) do
3026 if tptextbox.Text:lower() == v.Name:lower() then
3027 game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = workspace[v.Name].HumanoidRootPart.CFrame
3028 else
3029 print("Player not found")
3030 end
3031 end
3032end)]]--
3033
3034
3035
3036
3037--script
3038local parent = tptextbox --insert textbox name!
3039local mouse = game.Players.LocalPlayer:GetMouse()
3040
3041local xsize = parent.Size.X.Offset
3042local ysize = parent.Size.Y.Offset
3043parent.Visible = true
3044parent.Active = true
3045parent.Selectable = true
3046
3047local Underline = Instance.new("Frame")
3048local UnderlineBase = Instance.new("Frame")
3049
3050Underline.Name = "Underline"
3051Underline.Parent = parent
3052Underline.BackgroundColor3 = parent.TextColor3
3053Underline.BorderSizePixel = 0
3054Underline.Position = UDim2.new(0, 0, 1, 0)
3055Underline.Size = UDim2.new(0, 0, 0, 1)
3056
3057UnderlineBase.Name = "UnderlineBase"
3058UnderlineBase.Parent = parent
3059UnderlineBase.BackgroundColor3 = parent.TextColor3
3060UnderlineBase.BackgroundTransparency = 0.85
3061UnderlineBase.BorderSizePixel = 0
3062UnderlineBase.Position = UDim2.new(0, 0, 1, 0)
3063UnderlineBase.Size = UDim2.new(0, xsize, 0, 1)
3064
3065parent.Focused:connect(function()
3066 local x = (mouse.X) - (parent.AbsolutePosition.X)
3067 Underline.BackgroundTransparency = 0
3068 Underline.Position = UDim2.new(0,x,1,0)
3069 wait()
3070 Underline:TweenSizeAndPosition(
3071 UDim2.new(0, xsize, 0, 1),
3072 UDim2.new(0, 0, 1, 0),
3073 "Out",
3074 "Quint",
3075 0.2
3076 )
3077end)
3078
3079parent.FocusLost:connect(function(enterPressed)
3080 if parent.Text == "" then
3081 parent.Text = "Player Name"
3082 end
3083
3084 local TweenService = game:GetService("TweenService")
3085
3086 local Info = TweenInfo.new(
3087 0.15,
3088 Enum.EasingStyle.Linear,
3089 Enum.EasingDirection.Out,
3090 0,
3091 false,
3092 0
3093 )
3094 local Goals =
3095 {
3096 BackgroundTransparency = 1;
3097 }
3098
3099 local tween = TweenService:Create(Underline,Info,Goals)
3100 tween:Play()
3101
3102 wait(0.15)
3103 Underline.Size = UDim2.new(0,0,0,1)
3104
3105 if enterPressed then
3106 for i,v in pairs(game.Workspace:GetChildren()) do
3107 if tptextbox.Text:lower() == v.Name:lower() then
3108 game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = workspace[v.Name].HumanoidRootPart.CFrame
3109 else
3110 print("Player not found")
3111 end
3112 end
3113 print(true)
3114 elseif tptextbox.Text ~= "Player Name" then
3115 tptextbox.Text = "Press Enter to TP"
3116 end
3117end)
3118
3119--/script
3120
3121if enterPressed then
3122 for i,v in pairs(game.Workspace:GetChildren()) do
3123 if tptextbox.Text:lower() == v.Name:lower() then
3124 game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = workspace[v.Name].HumanoidRootPart.CFrame
3125 else
3126 print("Player not found")
3127 end
3128 end
3129end
3130
3131generalespbutton.MouseButton1Down:connect(function()
3132 --credits to Nebula Hub for the esp + aimbot
3133 PLAYER = game.Players.LocalPlayer
3134 MOUSE = PLAYER:GetMouse()
3135 CC = game.Workspace.CurrentCamera
3136
3137 ENABLED = false
3138 ESP_ENABLED = false
3139
3140 _G.FREE_FOR_ALL = true
3141
3142 _G.BIND = 50
3143 _G.ESP_BIND = 52
3144 _G.CHANGE_AIM = 'q'
3145
3146 _G.AIM_AT = 'Head'
3147
3148 wait(1)
3149
3150 function GetNearestPlayerToMouse()
3151 local PLAYERS = {}
3152 local PLAYER_HOLD = {}
3153 local DISTANCES = {}
3154 for i, v in pairs(game.Players:GetPlayers()) do
3155 if v ~= PLAYER then
3156 table.insert(PLAYERS, v)
3157 end
3158 end
3159 for i, v in pairs(PLAYERS) do
3160 if _G.FREE_FOR_ALL == false then
3161 if v and (v.Character) ~= nil and v.TeamColor ~= PLAYER.TeamColor then
3162 local AIM = v.Character:FindFirstChild(_G.AIM_AT)
3163 if AIM ~= nil then
3164 local DISTANCE = (AIM.Position - game.Workspace.CurrentCamera.CoordinateFrame.p).magnitude
3165 local RAY = Ray.new(game.Workspace.CurrentCamera.CoordinateFrame.p, (MOUSE.Hit.p - CC.CoordinateFrame.p).unit * DISTANCE)
3166 local HIT,POS = game.Workspace:FindPartOnRay(RAY, game.Workspace)
3167 local DIFF = math.floor((POS - AIM.Position).magnitude)
3168 PLAYER_HOLD[v.Name .. i] = {}
3169 PLAYER_HOLD[v.Name .. i].dist = DISTANCE
3170 PLAYER_HOLD[v.Name .. i].plr = v
3171 PLAYER_HOLD[v.Name .. i].diff = DIFF
3172 table.insert(DISTANCES, DIFF)
3173 end
3174 end
3175 elseif _G.FREE_FOR_ALL == true then
3176 local AIM = v.Character:FindFirstChild(_G.AIM_AT)
3177 if AIM ~= nil then
3178 local DISTANCE = (AIM.Position - game.Workspace.CurrentCamera.CoordinateFrame.p).magnitude
3179 local RAY = Ray.new(game.Workspace.CurrentCamera.CoordinateFrame.p, (MOUSE.Hit.p - CC.CoordinateFrame.p).unit * DISTANCE)
3180 local HIT,POS = game.Workspace:FindPartOnRay(RAY, game.Workspace)
3181 local DIFF = math.floor((POS - AIM.Position).magnitude)
3182 PLAYER_HOLD[v.Name .. i] = {}
3183 PLAYER_HOLD[v.Name .. i].dist = DISTANCE
3184 PLAYER_HOLD[v.Name .. i].plr = v
3185 PLAYER_HOLD[v.Name .. i].diff = DIFF
3186 table.insert(DISTANCES, DIFF)
3187 end
3188 end
3189 end
3190
3191 if unpack(DISTANCES) == nil then
3192 return false
3193 end
3194
3195 local L_DISTANCE = math.floor(math.min(unpack(DISTANCES)))
3196 if L_DISTANCE > 20 then
3197 return false
3198 end
3199
3200 for i, v in pairs(PLAYER_HOLD) do
3201 if v.diff == L_DISTANCE then
3202 return v.plr
3203 end
3204 end
3205 return false
3206 end
3207
3208 GUI_MAIN = Instance.new('ScreenGui', game.CoreGui)
3209 GUI_TARGET = Instance.new('TextLabel', GUI_MAIN)
3210 GUI_AIM_AT = Instance.new('TextLabel', GUI_MAIN)
3211
3212 GUI_MAIN.Name = 'AIMBOT'
3213
3214 GUI_TARGET.Size = UDim2.new(0,200,0,30)
3215 GUI_TARGET.BackgroundTransparency = 0.5
3216 GUI_TARGET.BackgroundColor = BrickColor.new('Fossil')
3217 GUI_TARGET.BorderSizePixel = 0
3218 GUI_TARGET.Position = UDim2.new(0.5,-100,0,0)
3219 GUI_TARGET.Text = 'AIMBOT : OFF'
3220 GUI_TARGET.TextColor3 = Color3.new(1,1,1)
3221 GUI_TARGET.TextStrokeTransparency = 1
3222 GUI_TARGET.TextWrapped = true
3223 GUI_TARGET.FontSize = 'Size24'
3224 GUI_TARGET.Font = 'SourceSansBold'
3225
3226 GUI_AIM_AT.Size = UDim2.new(0,200,0,20)
3227 GUI_AIM_AT.BackgroundTransparency = 0.5
3228 GUI_AIM_AT.BackgroundColor = BrickColor.new('Fossil')
3229 GUI_AIM_AT.BorderSizePixel = 0
3230 GUI_AIM_AT.Position = UDim2.new(0.5,-100,0,30)
3231 GUI_AIM_AT.Text = 'AIMING : HEAD'
3232 GUI_AIM_AT.TextColor3 = Color3.new(1,1,1)
3233 GUI_AIM_AT.TextStrokeTransparency = 1
3234 GUI_AIM_AT.TextWrapped = true
3235 GUI_AIM_AT.FontSize = 'Size18'
3236 GUI_AIM_AT.Font = 'SourceSansBold'
3237
3238 local TRACK = false
3239
3240 function CREATE(BASE, COLOR)
3241 local ESP_MAIN = Instance.new('BillboardGui', PLAYER.PlayerGui)
3242 local ESP_DOT = Instance.new('Frame', ESP_MAIN)
3243 local ESP_NAME = Instance.new('TextLabel', ESP_MAIN)
3244
3245 ESP_MAIN.Name = 'ESP'
3246 ESP_MAIN.Adornee = BASE
3247 ESP_MAIN.AlwaysOnTop = true
3248 ESP_MAIN.ExtentsOffset = Vector3.new(0, 1, 0)
3249 ESP_MAIN.Size = UDim2.new(0, 5, 0, 5)
3250
3251 ESP_DOT.Name = 'DOT'
3252 ESP_DOT.BackgroundColor3 = COLOR
3253 ESP_DOT.BackgroundTransparency = 0.3
3254 ESP_DOT.BorderSizePixel = 0
3255 ESP_DOT.Position = UDim2.new(-0.5, 0, -0.5, 0)
3256 ESP_DOT.Size = UDim2.new(2, 0, 2, 0)
3257 ESP_DOT.Visible = true
3258 ESP_DOT.ZIndex = 10
3259
3260 ESP_NAME.Name = 'NAME'
3261 ESP_NAME.BackgroundColor3 = Color3.new(255, 255, 255)
3262 ESP_NAME.BackgroundTransparency = 1
3263 ESP_NAME.BorderSizePixel = 0
3264 ESP_NAME.Position = UDim2.new(0, 0, 0, -40)
3265 ESP_NAME.Size = UDim2.new(1, 0, 10, 0)
3266 ESP_NAME.Visible = true
3267 ESP_NAME.ZIndex = 10
3268 ESP_NAME.Font = 'ArialBold'
3269 ESP_NAME.FontSize = 'Size14'
3270 ESP_NAME.Text = BASE.Parent.Name:upper()
3271 ESP_NAME.TextColor3 = COLOR
3272 end
3273
3274 function CLEAR()
3275 for _,v in pairs(PLAYER.PlayerGui:children()) do
3276 if v.Name == 'ESP' and v:IsA('BillboardGui') then
3277 v:Destroy()
3278 end
3279 end
3280 end
3281
3282 local Remote = game:service'ReplicatedStorage'.GetPlayerData
3283 local player_roles = Remote:InvokeServer()
3284 function FIND()
3285 CLEAR()
3286 TRACK = true
3287 spawn(function()
3288 while wait() do
3289 if TRACK then
3290 CLEAR()
3291 local a,b = ypcall(function()
3292 for name,player in pairs(player_roles)do
3293 if game:service'Players':FindFirstChild(name) ~= nil then
3294 local v = game:service'Players':FindFirstChild(name)
3295 if v.Character and v.Character:FindFirstChild('Head') then
3296 if v.Character:FindFirstChild('Head') then
3297 if player.Dead ~= true then
3298 if player.Role == "Murderer"then
3299 CREATE(v.Character.Head, Color3.new(1,0,0))
3300 elseif player.Role == "Sheriff" or player.Role == "Hero" then
3301 CREATE(v.Character.Head, Color3.new(0,0,1))
3302 else
3303 CREATE(v.Character.Head, Color3.new(0,1,0))
3304 end
3305 end
3306 end
3307 end
3308 end
3309 end
3310 end)
3311 end
3312 end
3313 wait(1)
3314 end)
3315 end
3316 coroutine.wrap(function()
3317 while wait()do
3318 player_roles = Remote:InvokeServer()
3319 end
3320 end)()
3321
3322 MOUSE.KeyDown:connect(function(KEY)
3323 KEY = KEY:lower():byte()
3324 if KEY == _G.BIND then
3325 ENABLED = true
3326 end
3327 end)
3328
3329 MOUSE.KeyUp:connect(function(KEY)
3330 KEY = KEY:lower():byte()
3331 if KEY == _G.BIND then
3332 ENABLED = false
3333 end
3334 end)
3335
3336 MOUSE.KeyDown:connect(function(KEY)
3337 KEY = KEY:lower():byte()
3338 if KEY == _G.ESP_BIND then
3339 if ESP_ENABLED == false then
3340 FIND()
3341 ESP_ENABLED = true
3342 print('ESP : ON')
3343 elseif ESP_ENABLED == true then
3344 wait()
3345 CLEAR()
3346 TRACK = false
3347 ESP_ENABLED = false
3348 print('ESP : OFF')
3349 end
3350 end
3351 end)
3352
3353 MOUSE.KeyDown:connect(function(KEY)
3354 if KEY == _G.CHANGE_AIM then
3355 if _G.AIM_AT == 'Head' then
3356 _G.AIM_AT = 'Torso'
3357 GUI_AIM_AT.Text = 'AIMING : TORSO'
3358 elseif _G.AIM_AT == 'Torso' then
3359 _G.AIM_AT = 'Head'
3360 GUI_AIM_AT.Text = 'AIMING : HEAD'
3361 end
3362 end
3363 end)
3364
3365 game:GetService('RunService').RenderStepped:connect(function()
3366 if ENABLED then
3367 local TARGET = GetNearestPlayerToMouse()
3368 if (TARGET ~= false) then
3369 local AIM = TARGET.Character:FindFirstChild(_G.AIM_AT)
3370 if AIM then
3371 CC.CoordinateFrame = CFrame.new(CC.CoordinateFrame.p, AIM.CFrame.p)
3372 end
3373 GUI_TARGET.Text = 'AIMBOT : '.. TARGET.Name:sub(1, 5)
3374 else
3375 GUI_TARGET.Text = 'AIMBOT : OFF'
3376 end
3377 end
3378 end)
3379
3380 repeat
3381 wait()
3382 if ESP_ENABLED == true then
3383 FIND()
3384 end
3385 until ESP_ENABLED == false
3386
3387
3388 wait()
3389
3390 _G.FREE_FOR_ALL = true
3391
3392 _G.BIND = 50 -- LEFT CTRL
3393 _G.ESP_BIND = 52 -- LEFT ALT
3394end)
3395
3396local plr = game.Players.LocalPlayer
3397
3398plr:GetMouse().KeyDown:connect(function(KeyUp)
3399 if KeyUp == "0" then
3400 plr.Character.Humanoid.WalkSpeed = 35
3401 end
3402end)
3403
3404plr:GetMouse().KeyUp:connect(function(KeyUp)
3405 if KeyUp == "0" then
3406 plr.Character.Humanoid.WalkSpeed = 16
3407 end
3408end)
3409end)