Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Made by Jxnt#9029 Enjoy!
- local ScreenGui = Instance.new("ScreenGui")
- local MainTab = Instance.new("Frame")
- local Header = Instance.new("TextLabel")
- local Credits = Instance.new("TextLabel")
- local Fly = Instance.new("TextButton")
- local Noclip = Instance.new("TextButton")
- local AutoXPOff = Instance.new("TextButton")
- local AutoRob = Instance.new("TextButton")
- local AutoArrest = Instance.new("TextButton")
- local Teleports = Instance.new("TextButton")
- local AutoXPOn = Instance.new("TextButton")
- local SetSpeed = Instance.new("TextButton")
- local SetGravity = Instance.new("TextButton")
- local Number = Instance.new("TextBox")
- local ExitMain = Instance.new("TextButton")
- local TeleportTab = Instance.new("Frame")
- local Header_2 = Instance.new("TextLabel")
- local ExitTeleports = Instance.new("TextButton")
- local Garage = Instance.new("TextButton")
- local Base = Instance.new("TextButton")
- local Camaro = Instance.new("TextButton")
- local Bank = Instance.new("TextButton")
- local Jewelry = Instance.new("TextButton")
- local Header_3 = Instance.new("TextLabel")
- local Credits_2 = Instance.new("Frame")
- local Bean07 = Instance.new("TextLabel")
- local Credits_3 = Instance.new("TextLabel")
- local TheLondiux = Instance.new("TextLabel")
- local Tos = Instance.new("TextLabel")
- local Ok = Instance.new("TextButton")
- ScreenGui.Parent = game.CoreGui
- ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
- MainTab.Name = "Main Tab"
- MainTab.Parent = ScreenGui
- MainTab.Active = true
- MainTab.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
- MainTab.BackgroundTransparency = 0.25
- MainTab.BorderColor3 = Color3.new(1, 1, 1)
- MainTab.BorderSizePixel = 2
- MainTab.ClipsDescendants = true
- MainTab.Position = UDim2.new(0.412600368, 0, 0.323095888, 0)
- MainTab.Selectable = true
- MainTab.Size = UDim2.new(0, 282, 0, 263)
- MainTab.Visible = false
- MainTab.Draggable = true
- Header.Name = "Header"
- Header.Parent = MainTab
- Header.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
- Header.BorderColor3 = Color3.new(1, 1, 1)
- Header.BorderSizePixel = 2
- Header.Size = UDim2.new(0, 282, 0, 20)
- Header.Font = Enum.Font.Cartoon
- Header.Text = "Mad-Lads v3"
- Header.TextColor3 = Color3.new(1, 1, 1)
- Header.TextSize = 22
- Credits.Name = "Credits"
- Credits.Parent = MainTab
- Credits.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
- Credits.BorderColor3 = Color3.new(1, 1, 1)
- Credits.BorderSizePixel = 2
- Credits.Position = UDim2.new(0, 0, 0.932270944, 0)
- Credits.Size = UDim2.new(0, 282, 0, 17)
- Credits.Font = Enum.Font.Cartoon
- Credits.Text = ""
- Credits.TextColor3 = Color3.new(1, 1, 1)
- Credits.TextSize = 17
- Fly.Name = "Fly"
- Fly.Parent = MainTab
- Fly.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
- Fly.BackgroundTransparency = 0.25
- Fly.BorderColor3 = Color3.new(1, 1, 1)
- Fly.BorderSizePixel = 2
- Fly.Position = UDim2.new(0.0396602079, 0, 0.135094613, 0)
- Fly.Size = UDim2.new(0, 72, 0, 30)
- Fly.Font = Enum.Font.Cartoon
- Fly.Text = "Fly [F]"
- Fly.TextColor3 = Color3.new(1, 1, 1)
- Fly.TextSize = 14
- Fly.MouseButton1Click:connect (function()
- repeat wait()
- until game:GetService"Players".LocalPlayer and game:GetService"Players".LocalPlayer.Character and game:GetService"Players".LocalPlayer.Character:findFirstChild("UpperTorso") and game:GetService"Players".LocalPlayer.Character:findFirstChild("Humanoid")
- local mouse = game:GetService"Players".LocalPlayer:GetMouse()
- repeat wait() until mouse
- local plr = game:GetService"Players".LocalPlayer
- local torso = plr.Character.UpperTorso
- local flying = true
- local deb = true
- local ctrl = {f = 0, b = 0, l = 0, r = 0}
- local lastctrl = {f = 0, b = 0, l = 0, r = 0}
- local maxspeed = 100
- local speed = 0
- function Fly()
- local bg = Instance.new("BodyGyro", torso)
- bg.P = 9e4
- bg.maxTorque = Vector3.new(9e9, 9e9, 9e9)
- bg.cframe = torso.CFrame
- local bv = Instance.new("BodyVelocity", torso)
- bv.velocity = Vector3.new(0,0.1,0)
- bv.maxForce = Vector3.new(9e9, 9e9, 9e9)
- repeat wait()
- plr.Character.Humanoid.PlatformStand = true
- if ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0 then
- speed = speed+.5+(speed/maxspeed)
- if speed > maxspeed then
- speed = maxspeed
- end
- elseif not (ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0) and speed ~= 0 then
- speed = speed-1
- if speed < 0 then
- speed = 0
- end
- end
- if (ctrl.l + ctrl.r) ~= 0 or (ctrl.f + ctrl.b) ~= 0 then
- bv.velocity = ((game:GetService("Workspace").CurrentCamera.CoordinateFrame.lookVector * (ctrl.f+ctrl.b)) + ((game:GetService("Workspace").CurrentCamera.CoordinateFrame * CFrame.new(ctrl.l+ctrl.r,(ctrl.f+ctrl.b)*.2,0).p) - game:GetService("Workspace").CurrentCamera.CoordinateFrame.p))*speed
- lastctrl = {f = ctrl.f, b = ctrl.b, l = ctrl.l, r = ctrl.r}
- elseif (ctrl.l + ctrl.r) == 0 and (ctrl.f + ctrl.b) == 0 and speed ~= 0 then
- bv.velocity = ((game:GetService("Workspace").CurrentCamera.CoordinateFrame.lookVector * (lastctrl.f+lastctrl.b)) + ((game:GetService("Workspace").CurrentCamera.CoordinateFrame * CFrame.new(lastctrl.l+lastctrl.r,(lastctrl.f+lastctrl.b)*.2,0).p) - game:GetService("Workspace").CurrentCamera.CoordinateFrame.p))*speed
- else
- bv.velocity = Vector3.new(0,0.1,0)
- end
- bg.cframe = game:GetService("Workspace").CurrentCamera.CoordinateFrame * CFrame.Angles(-math.rad((ctrl.f+ctrl.b)*50*speed/maxspeed),0,0)
- until not flying
- ctrl = {f = 0, b = 0, l = 0, r = 0}
- lastctrl = {f = 0, b = 0, l = 0, r = 0}
- speed = 0
- bg:Destroy()
- bv:Destroy()
- plr.Character.Humanoid.PlatformStand = false
- end
- mouse.KeyDown:connect(function(key)
- if key:lower() == "f" then
- if flying then flying = false
- else
- flying = true
- Fly()
- end
- elseif key:lower() == "w" then
- ctrl.f = 1
- elseif key:lower() == "s" then
- ctrl.b = -1
- elseif key:lower() == "a" then
- ctrl.l = -1
- elseif key:lower() == "d" then
- ctrl.r = 1
- end
- end)
- mouse.KeyUp:connect(function(key)
- if key:lower() == "w" then
- ctrl.f = 0
- elseif key:lower() == "s" then
- ctrl.b = 0
- elseif key:lower() == "a" then
- ctrl.l = 0
- elseif key:lower() == "d" then
- ctrl.r = 0
- end
- end)
- Fly()
- end)
- Noclip.Name = "Noclip"
- Noclip.Parent = MainTab
- Noclip.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
- Noclip.BackgroundTransparency = 0.25
- Noclip.BorderColor3 = Color3.new(1, 1, 1)
- Noclip.BorderSizePixel = 2
- Noclip.Position = UDim2.new(0.0396602079, 0, 0.290291309, 0)
- Noclip.Size = UDim2.new(0, 72, 0, 30)
- Noclip.Font = Enum.Font.Cartoon
- Noclip.Text = "Noclip [N]"
- Noclip.TextColor3 = Color3.new(1, 1, 1)
- Noclip.TextSize = 14
- Noclip.MouseButton1Click:connect (function()
- local Player = game.Players.LocalPlayer
- local Mouse = Player:GetMouse();
- Mouse.KeyDown:connect(function(key)
- if key == "n" then
- local plr = game:GetService("Players")local Z=game:GetService("Players").LocalPlayer;function Torso(plr)if plr.Character then if plr.Character:FindFirstChild('UpperTorso')then return plr.Character.UpperTorso else return plr.Character.Torso end end end;if Clip==true then Clip=false;return end;Clip=true;game:GetService("RunService").Stepped:connect(function()Torso(Z).CanCollide=not Clip;Z.Character.Head.CanCollide=not Clip;Z.Character.HumanoidRootPart.CanCollide=not Clip;if Z.Character.UpperTorso then Z.Character.LowerTorso.CanCollide=not Clip end end)Z.Character.RightFoot.Touched:connect(function(_)Torso(Z).CanCollide=not Clip;Z.Character.Head.CanCollide=not Clip;Z.Character.HumanoidRootPart.CanCollide=not Clip;if Z.Character.UpperTorso then Z.Character.LowerTorso.CanCollide=not Clip end end)Z.Character.LeftFoot.Touched:connect(function(a0)Torso(Z).CanCollide=not Clip;Z.Character.Head.CanCollide=not Clip;Z.Character.HumanoidRootPart.CanCollide=not Clip;if Z.Character.UpperTorso then Z.Character.LowerTorso.CanCollide=not Clip end end)Z.Character.RightLowerLeg.Touched:connect(function(a1)Torso(Z).CanCollide=not Clip;Z.Character.Head.CanCollide=not Clip;Z.Character.HumanoidRootPart.CanCollide=not Clip;if Z.Character.UpperTorso then Z.Character.LowerTorso.CanCollide=not Clip end end)Z.Character.LeftLowerLeg.Touched:connect(function(a2)Torso(Z).CanCollide=not Clip;Z.Character.Head.CanCollide=not Clip;Z.Character.HumanoidRootPart.CanCollide=not Clip;if Z.Character.UpperTorso then Z.Character.LowerTorso.CanCollide=not Clip end end)Z.Character.RightHand.Touched:connect(function(a3)Torso(Z).CanCollide=not Clip;Z.Character.Head.CanCollide=not Clip;Z.Character.HumanoidRootPart.CanCollide=not Clip;if Z.Character.UpperTorso then Z.Character.LowerTorso.CanCollide=not Clip end end)Z.Character.LeftHand.Touched:connect(function(a4)Torso(Z).CanCollide=not Clip;Z.Character.Head.CanCollide=not Clip;Z.Character.HumanoidRootPart.CanCollide=not Clip;if Z.Character.UpperTorso then Z.Character.LowerTorso.CanCollide=not Clip end end)Z.Character.Head.Touched:connect(function(a5)Torso(Z).CanCollide=not Clip;Z.Character.Head.CanCollide=not Clip;Z.Character.HumanoidRootPart.CanCollide=not Clip;if Z.Character.UpperTorso then Z.Character.LowerTorso.CanCollide=not Clip end end)Z.Character.Torso.Touched:connect(function(a6)Torso(Z).CanCollide=not Clip;Z.Character.Head.CanCollide=not Clip;Z.Character.HumanoidRootPart.CanCollide=not Clip;if Z.Character.UpperTorso then Z.Character.LowerTorso.CanCollide=not Clip end end)
- end
- end)
- end)
- AutoXPOff.Name = "AutoXP [Off]"
- AutoXPOff.Parent = MainTab
- AutoXPOff.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
- AutoXPOff.BackgroundTransparency = 0.25
- AutoXPOff.BorderColor3 = Color3.new(1, 1, 1)
- AutoXPOff.BorderSizePixel = 2
- AutoXPOff.Position = UDim2.new(0.36888656, 0, 0.441685736, 0)
- AutoXPOff.Size = UDim2.new(0, 72, 0, 30)
- AutoXPOff.Font = Enum.Font.Cartoon
- AutoXPOff.Text = "AutoXP [Off]"
- AutoXPOff.TextColor3 = Color3.new(1, 1, 1)
- AutoXPOff.TextSize = 14
- AutoXPOff.MouseButton1Click:connect (function()
- AutoXPOff.Visible = false
- AutoXPOn.Visible = true
- _G.YEET = true
- while wait() do
- if _G.YEET then
- for _, v in next, game.Players:GetPlayers() do
- if v.Team.Name == "Criminals" then
- game.Players.LocalPlayer.Character.Humanoid:UnequipTools()
- if not workspace.ObjectSelection:FindFirstChild(v.Name.."'s Vehicle") then
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.Character.HumanoidRootPart.CFrame
- game.Players.LocalPlayer.Character.Humanoid:EquipTool(game.Players.LocalPlayer.Backpack:FindFirstChild("Tazer"))
- game.ReplicatedStorage.Event:FireServer("TAZ", v.Character.HumanoidRootPart)
- end
- end
- end
- end
- end
- _G.YEET = true
- end)
- AutoRob.Name = "AutoRob"
- AutoRob.Parent = MainTab
- AutoRob.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
- AutoRob.BackgroundTransparency = 0.25
- AutoRob.BorderColor3 = Color3.new(1, 1, 1)
- AutoRob.BorderSizePixel = 2
- AutoRob.Position = UDim2.new(0.36888656, 0, 0.135094583, 0)
- AutoRob.Size = UDim2.new(0, 72, 0, 30)
- AutoRob.Font = Enum.Font.Cartoon
- AutoRob.Text = "AutoRob"
- AutoRob.TextColor3 = Color3.new(1, 1, 1)
- AutoRob.TextSize = 14
- AutoRob.MouseButton1Click:connect (function()
- game:GetService("RunService").Stepped:connect(function()
- game.Players.LocalPlayer.Character.Head.CanCollide = false
- game.Players.LocalPlayer.Character.LowerTorso.CanCollide = false
- game.Players.LocalPlayer.Character.HumanoidRootPart.CanCollide = false
- game.Players.LocalPlayer.Character.UpperTorso.CanCollide = false
- end)
- game.Players.LocalPlayer.Character.HumanoidRootPart.Changed:connect(function()
- game.Players.LocalPlayer.Character.Head.CanCollide = false
- game.Players.LocalPlayer.Character.LowerTorso.CanCollide = false
- game.Players.LocalPlayer.Character.HumanoidRootPart.CanCollide = false
- game.Players.LocalPlayer.Character.UpperTorso.CanCollide = false
- end)
- local busy = false
- local busy_with = "busy_with"
- local thing = "thing"
- local busy_str = "Can't rob %s because you are busy with %s"
- local not_finished = "Can't rob other things because the %s rob isn't finished"
- local cashRegister = coroutine.wrap(function()
- while wait(5) do
- pcall(function()
- if busy == false then
- for i, v in pairs(workspace.ObjectSelection:GetChildren()) do
- if v.Name == "CashRegister" then
- local part = v:FindFirstChildOfClass("Part")
- if part.Name ~= "Nope" then
- busy = true
- busy_with = "cash registers"
- local pos = v.SmashCash.Position
- for i = 1, math.random(5,10) do
- wait(.1)
- game.Players.LocalPlayer.Character.HumanoidRootPart.Position = pos
- end
- wait(0.3)
- v.SmashCash.SmashCash.Event:FireServer()
- wait(2)
- if part.Name ~= "Nope" then
- warn(string.format(not_finished, "cash registers"))
- else
- busy = false
- end
- end
- end
- end
- else
- thing = "cash registers"
- warn(string.format(busy_str, thing, busy_with))
- end
- end)
- end
- end)
- local diamondBox = coroutine.wrap(function()
- while wait(5) do
- pcall(function()
- if busy == false then
- for i, v in pairs(workspace.ObjectSelection:GetChildren()) do
- if v.Name == "DiamondBox" then
- local part = v:FindFirstChildOfClass("Part")
- if part.Name ~= "Nope" then
- busy = true
- busy_with = "diamond boxes"
- local pos = v.SmashCash.Position
- for i = 1, math.random(5,10) do
- wait(.1)
- game.Players.LocalPlayer.Character.HumanoidRootPart.Position = pos
- end
- wait(0.3)
- v.SmashCash.SmashCash.Event:FireServer()
- wait(2)
- if part.Name ~= "Nope" then
- warn(string.format(not_finished, "diamond boxes"))
- else
- busy = false
- end
- end
- end
- end
- else
- thing = "diamond boxes"
- warn(string.format(busy_str, thing, busy_with))
- end
- end)
- end
- end)
- local safe = coroutine.wrap(function()
- while wait(5) do
- pcall(function()
- if busy == false then
- for i, v in pairs(workspace.ObjectSelection:GetChildren()) do
- if v.Name == "Safe" then
- local part = v:FindFirstChildOfClass("Part")
- if part.Name ~= "Nope" then
- busy = true
- busy_with = "safes"
- local pos = v.SmashCash.Position
- for i = 1, math.random(5,10) do
- wait(.1)
- game.Players.LocalPlayer.Character.HumanoidRootPart.Position = pos
- end
- wait(0.3)
- v.SmashCash.SmashCash.Event:FireServer()
- wait(2)
- if part.Name ~= "Nope" then
- warn(string.format(not_finished, "safes"))
- else
- busy = false
- end
- end
- end
- end
- else
- thing = "safes"
- warn(string.format(busy_str, thing, busy_with))
- end
- end)
- end
- end)
- local tipJar = coroutine.wrap(function()
- while wait(5) do
- pcall(function()
- if busy == false then
- for i, v in pairs(workspace.ObjectSelection:GetChildren()) do
- if v.Name == "TipJar" then
- local part = v:FindFirstChildOfClass("Part")
- if part.Name == "SmashCash" then
- busy = true
- busy_with = "tip jars"
- local pos = v.SmashCash.Position
- for i = 1, math.random(5,10) do
- wait(.1)
- game.Players.LocalPlayer.Character.HumanoidRootPart.Position = pos
- end
- wait(0.3)
- v.SmashCash.SmashCash.Event:FireServer()
- wait(2)
- if part.Name == "SmashCash" then
- warn(string.format(not_finished, "tip jars"))
- else
- busy = false
- end
- end
- end
- end
- else
- thing = "tip jars"
- warn(string.format(busy_str, thing, busy_with))
- end
- end)
- end
- end)
- local cash = coroutine.wrap(function()
- while wait(5) do
- pcall(function()
- if busy == false then
- for i, v in pairs(workspace.ObjectSelection:GetChildren()) do
- if v.Name == "Cash" then
- local part = v:FindFirstChildOfClass("MeshPart")
- if part.Name == "Cash" then
- busy = true
- busy_with = "cash"
- local pos = v.Cash.Position
- for i = 1, math.random(5,10) do
- wait(.1)
- game.Players.LocalPlayer.Character.HumanoidRootPart.Position = pos
- end
- wait(0.3)
- v.Cash.Cash.Event:FireServer()
- wait(2)
- if part.Name == "Cash" then
- warn(string.format(not_finished, "cash"))
- else
- busy = false
- end
- end
- end
- end
- else
- thing = "cash"
- warn(string.format(busy_str, thing, busy_with))
- end
- end)
- end
- end)
- local tv = coroutine.wrap(function()
- while wait(5) do
- pcall(function()
- if busy == false then
- for i, v in pairs(workspace.ObjectSelection:GetChildren()) do
- if v.Name == "TV" then
- local part = v:FindFirstChildOfClass("Part")
- if part.Name ~= "Nope" then
- busy = true
- busy_with = "TVs"
- local pos = v.StealTV.Position
- for i = 1, math.random(5,10) do
- wait(.1)
- game.Players.LocalPlayer.Character.HumanoidRootPart.Position = pos
- end
- wait(0.3)
- v.StealTV.StealTV.Event:FireServer()
- wait(2)
- if part.Name ~= "Nope" then
- warn(string.format(not_finished, "TVs"))
- else
- busy = false
- end
- end
- end
- end
- else
- thing = "TVs"
- warn(string.format(busy_str, thing, busy_with))
- end
- end)
- end
- end)
- local dropCrate = coroutine.wrap(function()
- while wait(5) do
- pcall(function()
- if busy == false then
- for i, v in pairs(workspace.ObjectSelection:GetChildren()) do
- if v.Name == "DropCrate" then
- local part = v:FindFirstChildOfClass("Part")
- if part.Name ~= "Nope" then
- busy = true
- busy_with = "drop crates"
- local pos = v.DropCrate.Position
- for i = 1, math.random(5,10) do
- wait(.1)
- game.Players.LocalPlayer.Character.HumanoidRootPart.Position = pos
- end
- wait(0.3)
- v.DropCrate.DropCrate.Event:FireServer()
- wait(2)
- if part.Name ~= "Nope" then
- warn(string.format(not_finished, "drop crates"))
- else
- busy = false
- end
- end
- end
- end
- else
- thing = "drop crates"
- warn(string.format(busy_str, thing, busy_with))
- end
- end)
- end
- end)
- local atm = coroutine.wrap(function()
- while wait(5) do
- pcall(function()
- if busy == false then
- for i, v in pairs(workspace.ObjectSelection:GetChildren()) do
- if v.Name == "ATM" then
- local part = v:FindFirstChildOfClass("Part")
- if part.Name ~= "Nope" then
- busy = true
- busy_with = "ATMs"
- local pos = v.ATM.Position
- for i = 1, math.random(5,10) do
- wait(.1)
- game.Players.LocalPlayer.Character.HumanoidRootPart.Position = pos
- end
- wait(0.3)
- v.ATM.ATM.Event:FireServer()
- wait(2)
- if part.Name ~= "Nope" then
- warn(string.format(not_finished, "ATMs"))
- else
- busy = false
- end
- end
- end
- end
- else
- thing = "ATMs"
- warn(string.format(busy_str, thing, busy_with))
- end
- end)
- end
- end)
- cashRegister()
- wait(20)
- diamondBox()
- wait(15)
- safe()
- wait(15)
- tipJar()
- wait(15)
- cash()
- wait(15)
- tv()
- --wait(15)
- --dropCrate()
- wait(15)
- atm()
- end)
- AutoArrest.Name = "AutoArrest"
- AutoArrest.Parent = MainTab
- AutoArrest.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
- AutoArrest.BackgroundTransparency = 0.25
- AutoArrest.BorderColor3 = Color3.new(1, 1, 1)
- AutoArrest.BorderSizePixel = 2
- AutoArrest.Position = UDim2.new(0.36888653, 0, 0.290291309, 0)
- AutoArrest.Size = UDim2.new(0, 72, 0, 30)
- AutoArrest.Font = Enum.Font.Cartoon
- AutoArrest.Text = "AutoArrest"
- AutoArrest.TextColor3 = Color3.new(1, 1, 1)
- AutoArrest.TextSize = 14
- AutoArrest.MouseButton1Click:connect (function()
- while wait() do
- game.Players.LocalPlayer.Character.Humanoid:EquipTool(game.Players.LocalPlayer.Backpack.Handcuffs)
- game.ReplicatedStorage.Event:FireServer("Equip", game.Players.LocalPlayer.Character, game.Players.LocalPlayer.Character.Handcuffs.Handle)
- for i,v in pairs(game.Players:GetChildren()) do
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.Character.HumanoidRootPart.CFrame
- wait(0.4)
- game.ReplicatedStorage.Event:FireServer("Arrest", v)
- wait(.2)
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(0, 0,0)
- end
- wait(0.25)
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(0, -1000,0)
- game.Players.LocalPlayer.Character:BreakJoints()
- wait(20)
- end
- end)
- Teleports.Name = "Teleports"
- Teleports.Parent = MainTab
- Teleports.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
- Teleports.BackgroundTransparency = 0.25
- Teleports.BorderColor3 = Color3.new(1, 1, 1)
- Teleports.BorderSizePixel = 2
- Teleports.Position = UDim2.new(0.692305267, 0, 0.135094613, 0)
- Teleports.Size = UDim2.new(0, 72, 0, 30)
- Teleports.Font = Enum.Font.Cartoon
- Teleports.Text = "Teleports"
- Teleports.TextColor3 = Color3.new(1, 1, 1)
- Teleports.TextSize = 14
- Teleports.MouseButton1Click:connect (function()
- TeleportTab.Visible = true
- end)
- AutoXPOn.Name = "AutoXP [On]"
- AutoXPOn.Parent = MainTab
- AutoXPOn.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
- AutoXPOn.BackgroundTransparency = 0.25
- AutoXPOn.BorderColor3 = Color3.new(1, 1, 1)
- AutoXPOn.BorderSizePixel = 2
- AutoXPOn.Position = UDim2.new(0.36888653, 0, 0.441685677, 0)
- AutoXPOn.Size = UDim2.new(0, 72, 0, 30)
- AutoXPOn.Visible = false
- AutoXPOn.Font = Enum.Font.Cartoon
- AutoXPOn.Text = "AutoXP [On]"
- AutoXPOn.TextColor3 = Color3.new(1, 1, 1)
- AutoXPOn.TextSize = 14
- AutoXPOn.MouseButton1Click:connect (function()
- AutoXPOn.Visible = false
- _G.YEET = false
- AutoXPOff.Visible = true
- end)
- SetSpeed.Name = "Set Speed"
- SetSpeed.Parent = MainTab
- SetSpeed.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
- SetSpeed.BackgroundTransparency = 0.25
- SetSpeed.BorderColor3 = Color3.new(1, 1, 1)
- SetSpeed.BorderSizePixel = 2
- SetSpeed.Position = UDim2.new(0.224057466, 0, 0.664066195, 0)
- SetSpeed.Size = UDim2.new(0, 73, 0, 30)
- SetSpeed.Font = Enum.Font.Cartoon
- SetSpeed.Text = "Set Speed"
- SetSpeed.TextColor3 = Color3.new(1, 1, 1)
- SetSpeed.TextSize = 14
- SetSpeed.MouseButton1Click:connect (function()
- plr = game.Players.LocalPlayer
- plr.Character.Humanoid.WalkSpeed = Number.Text
- end)
- SetGravity.Name = "Set Gravity"
- SetGravity.Parent = MainTab
- SetGravity.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
- SetGravity.BackgroundTransparency = 0.25
- SetGravity.BorderColor3 = Color3.new(1, 1, 1)
- SetGravity.BorderSizePixel = 2
- SetGravity.Position = UDim2.new(0.52543211, 0, 0.664066195, 0)
- SetGravity.Size = UDim2.new(0, 72, 0, 30)
- SetGravity.Font = Enum.Font.Cartoon
- SetGravity.Text = "Set Gravity"
- SetGravity.TextColor3 = Color3.new(1, 1, 1)
- SetGravity.TextSize = 14
- SetGravity.MouseButton1Click:connect (function()
- game.Workspace.Gravity = Number.Text
- end)
- Number.Name = "Number"
- Number.Parent = MainTab
- Number.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
- Number.BackgroundTransparency = 0.25
- Number.BorderColor3 = Color3.new(1, 1, 1)
- Number.BorderSizePixel = 2
- Number.Position = UDim2.new(0.224057466, 0, 0.807674289, 0)
- Number.Size = UDim2.new(0, 157, 0, 21)
- Number.Font = Enum.Font.Cartoon
- Number.Text = ""
- Number.TextColor3 = Color3.new(0, 0, 0)
- Number.TextSize = 14
- ExitMain.Name = "Exit Main"
- ExitMain.Parent = MainTab
- ExitMain.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
- ExitMain.BorderSizePixel = 0
- ExitMain.Position = UDim2.new(0.916998029, 0, 0, 0)
- ExitMain.Size = UDim2.new(0, 23, 0, 19)
- ExitMain.Font = Enum.Font.Cartoon
- ExitMain.Text = "X"
- ExitMain.TextColor3 = Color3.new(1, 1, 1)
- ExitMain.TextSize = 14
- ExitMain.MouseButton1Click:connect (function()
- MainTab.Visible = false
- end)
- TeleportTab.Name = "Teleport Tab"
- TeleportTab.Parent = ScreenGui
- TeleportTab.Active = true
- TeleportTab.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
- TeleportTab.BackgroundTransparency = 0.25
- TeleportTab.BorderColor3 = Color3.new(1, 1, 1)
- TeleportTab.BorderSizePixel = 2
- TeleportTab.ClipsDescendants = true
- TeleportTab.Position = UDim2.new(0.621988893, 0, 0.218673214, 0)
- TeleportTab.Selectable = true
- TeleportTab.Size = UDim2.new(0, 84, 0, 219)
- TeleportTab.Visible = false
- TeleportTab.Draggable = true
- Header_2.Name = "Header"
- Header_2.Parent = TeleportTab
- Header_2.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
- Header_2.BorderColor3 = Color3.new(1, 1, 1)
- Header_2.BorderSizePixel = 2
- Header_2.Size = UDim2.new(0, 84, 0, 20)
- Header_2.Font = Enum.Font.Cartoon
- Header_2.Text = ""
- Header_2.TextColor3 = Color3.new(1, 1, 1)
- Header_2.TextSize = 22
- ExitTeleports.Name = "Exit Teleports"
- ExitTeleports.Parent = TeleportTab
- ExitTeleports.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
- ExitTeleports.BorderSizePixel = 0
- ExitTeleports.Position = UDim2.new(0.729411781, 0, 0, 0)
- ExitTeleports.Size = UDim2.new(0, 23, 0, 19)
- ExitTeleports.Font = Enum.Font.Cartoon
- ExitTeleports.Text = "X"
- ExitTeleports.TextColor3 = Color3.new(1, 1, 1)
- ExitTeleports.TextSize = 14
- ExitTeleports.MouseButton1Click:connect (function()
- TeleportTab.Visible = false
- end)
- Garage.Name = "Garage"
- Garage.Parent = TeleportTab
- Garage.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
- Garage.BackgroundTransparency = 0.25
- Garage.BorderColor3 = Color3.new(1, 1, 1)
- Garage.BorderSizePixel = 2
- Garage.Position = UDim2.new(0.0747687817, 0, 0.652119875, 0)
- Garage.Size = UDim2.new(0, 72, 0, 30)
- Garage.Font = Enum.Font.Cartoon
- Garage.Text = "Garage"
- Garage.TextColor3 = Color3.new(1, 1, 1)
- Garage.TextSize = 17
- Garage.MouseButton1Click:connect (function()
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(231.40872192383,24.549949645996,-493.32705688477)
- end)
- Base.Name = "Base"
- Base.Parent = TeleportTab
- Base.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
- Base.BackgroundTransparency = 0.25
- Base.BorderColor3 = Color3.new(1, 1, 1)
- Base.BorderSizePixel = 2
- Base.Position = UDim2.new(0.0747687817, 0, 0.480433851, 0)
- Base.Size = UDim2.new(0, 72, 0, 30)
- Base.Font = Enum.Font.Cartoon
- Base.Text = "Base"
- Base.TextColor3 = Color3.new(1, 1, 1)
- Base.TextSize = 17
- Base.MouseButton1Click:connect (function()
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(2116.2019042969,25.10528755188,348.36651611328)
- end)
- Camaro.Name = "Camaro"
- Camaro.Parent = TeleportTab
- Camaro.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
- Camaro.BackgroundTransparency = 0.25
- Camaro.BorderColor3 = Color3.new(1, 1, 1)
- Camaro.BorderSizePixel = 2
- Camaro.Position = UDim2.new(0.0747687817, 0, 0.827622652, 0)
- Camaro.Size = UDim2.new(0, 72, 0, 30)
- Camaro.Font = Enum.Font.Cartoon
- Camaro.Text = "Camaro"
- Camaro.TextColor3 = Color3.new(1, 1, 1)
- Camaro.TextSize = 17
- Camaro.MouseButton1Click:connect (function()
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-882.36700439453,53.278591156006,-2648.3139648438)
- end)
- Bank.Name = "Bank"
- Bank.Parent = TeleportTab
- Bank.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
- Bank.BackgroundTransparency = 0.25
- Bank.BorderColor3 = Color3.new(1, 1, 1)
- Bank.BorderSizePixel = 2
- Bank.Position = UDim2.new(0.0747687817, 0, 0.119703263, 0)
- Bank.Size = UDim2.new(0, 72, 0, 30)
- Bank.Font = Enum.Font.Cartoon
- Bank.Text = "Bank"
- Bank.TextColor3 = Color3.new(1, 1, 1)
- Bank.TextSize = 17
- Bank.MouseButton1Click:connect (function()
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(690.11553955078,24.889343261719,446.09664916992)
- end)
- Jewelry.Name = "Jewelry"
- Jewelry.Parent = TeleportTab
- Jewelry.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
- Jewelry.BackgroundTransparency = 0.25
- Jewelry.BorderColor3 = Color3.new(1, 1, 1)
- Jewelry.BorderSizePixel = 2
- Jewelry.Position = UDim2.new(0.0747687817, 0, 0.303432226, 0)
- Jewelry.Size = UDim2.new(0, 72, 0, 30)
- Jewelry.Font = Enum.Font.Cartoon
- Jewelry.Text = "Jewelry"
- Jewelry.TextColor3 = Color3.new(1, 1, 1)
- Jewelry.TextSize = 17
- Jewelry.MouseButton1Click:connect (function()
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-203.3496960449,24.578149795532,731.06182861328)
- end)
- Header_3.Name = "Header"
- Header_3.Parent = GunsTab
- Header_3.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
- Header_3.BorderColor3 = Color3.new(1, 1, 1)
- Header_3.BorderSizePixel = 2
- Header_3.Size = UDim2.new(0, 84, 0, 20)
- Header_3.Font = Enum.Font.Cartoon
- Header_3.Text = ""
- Header_3.TextColor3 = Color3.new(1, 1, 1)
- Header_3.TextSize = 22
- Credits_2.Name = "Credits"
- Credits_2.Parent = ScreenGui
- Credits_2.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
- Credits_2.BackgroundTransparency = 0.25
- Credits_2.BorderColor3 = Color3.new(1, 1, 1)
- Credits_2.BorderSizePixel = 2
- Credits_2.ClipsDescendants = true
- Credits_2.Position = UDim2.new(0.439777642, 0, 0.337837845, 0)
- Credits_2.Selectable = true
- Credits_2.Size = UDim2.new(0, 195, 0, 241)
- Bean07.Name = "Bean07"
- Bean07.Parent = Credits_2
- Bean07.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
- Bean07.BackgroundTransparency = 0.25
- Bean07.BorderColor3 = Color3.new(1, 1, 1)
- Bean07.BorderSizePixel = 2
- Bean07.Position = UDim2.new(0.0535057895, 0, 0.178707227, 0)
- Bean07.Size = UDim2.new(0, 174, 0, 30)
- Bean07.Font = Enum.Font.Cartoon
- Bean07.Text = "Bean07 for Auto XP!"
- Bean07.TextColor3 = Color3.new(1, 1, 1)
- Bean07.TextScaled = true
- Bean07.TextSize = 30
- Bean07.TextWrapped = true
- Credits_3.Name = "Credits"
- Credits_3.Parent = Credits_2
- Credits_3.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
- Credits_3.BorderColor3 = Color3.new(1, 1, 1)
- Credits_3.BorderSizePixel = 2
- Credits_3.Size = UDim2.new(0, 195, 0, 33)
- Credits_3.Font = Enum.Font.Cartoon
- Credits_3.Text = "Credits"
- Credits_3.TextColor3 = Color3.new(1, 1, 1)
- Credits_3.TextSize = 22
- TheLondiux.Name = "TheLondiux"
- TheLondiux.Parent = Credits_2
- TheLondiux.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
- TheLondiux.BackgroundTransparency = 0.25
- TheLondiux.BorderColor3 = Color3.new(1, 1, 1)
- TheLondiux.BorderSizePixel = 2
- TheLondiux.Position = UDim2.new(0.0535057895, 0, 0.334600776, 0)
- TheLondiux.Size = UDim2.new(0, 174, 0, 30)
- TheLondiux.Font = Enum.Font.Cartoon
- TheLondiux.Text = "TheLondiux for Auto Rob!"
- TheLondiux.TextColor3 = Color3.new(1, 1, 1)
- TheLondiux.TextScaled = true
- TheLondiux.TextSize = 30
- TheLondiux.TextWrapped = true
- Tos.Name = "Tos"
- Tos.Parent = Credits_2
- Tos.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
- Tos.BackgroundTransparency = 0.25
- Tos.BorderColor3 = Color3.new(1, 1, 1)
- Tos.BorderSizePixel = 2
- Tos.Position = UDim2.new(0.0740187466, 0, 0.50190115, 0)
- Tos.Size = UDim2.new(0, 166, 0, 66)
- Tos.Font = Enum.Font.Cartoon
- Tos.Text = "Please dont give me credit for the Auto Rob or Auto XP, Those scripts were made by other people letting me put them in here, Thanks!"
- Tos.TextColor3 = Color3.new(1, 1, 1)
- Tos.TextScaled = true
- Tos.TextSize = 30
- Tos.TextWrapped = true
- Ok.Name = "Ok!"
- Ok.Parent = Credits_2
- Ok.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
- Ok.BackgroundTransparency = 0.25
- Ok.BorderColor3 = Color3.new(1, 1, 1)
- Ok.BorderSizePixel = 2
- Ok.Position = UDim2.new(0.371454626, 0, 0.829875529, 0)
- Ok.Size = UDim2.new(0, 49, 0, 30)
- Ok.Font = Enum.Font.Cartoon
- Ok.Text = "Ok!"
- Ok.TextColor3 = Color3.new(1, 1, 1)
- Ok.TextScaled = true
- Ok.TextSize = 14
- Ok.TextWrapped = true
- Ok.MouseButton1Click:connect (function()
- Credits_2.Visible = false
- MainTab.Visible = true
- end)
Add Comment
Please, Sign In to add comment