Advertisement
Boujemaa

Combo list 5000 Hamid

Jan 21st, 2020
187
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 11.27 KB | None | 0 0
  1. Hi gxchj vgchjxf
  2. Hffhjvgv
  3. Gcfcfhj
  4.  
  5. rawdownloadreport 22.44 KB
  6. ----Not Script Subscribe to BTY GLITCHES on youtube----
  7. local plr = game:GetService("Players").LocalPlayer
  8.  
  9. local TpMethod = 1
  10.  
  11. function JailbreakTp(...)
  12.     getfenv()["TpMethod" .. TpMethod](...)
  13. end
  14.  
  15. function TpMethod1(...)
  16.     local char = plr.Character
  17.     local root = char.HumanoidRootPart
  18.     local args = {...}
  19.     for i=0,1,0.05 do
  20.         wait()
  21.         root.CFrame = root.CFrame:lerp(CFrame.new(unpack(args,1,3)), i)
  22.     end
  23. end
  24.  
  25. function TpMethod2(...)
  26.     local args = {...}
  27.     local char = plr.Character
  28.     local target = Vector3.new(unpack(args,1,3))
  29.     local dist = (char:WaitForChild"HumanoidRootPart".Position - target).magnitude
  30.     dist = math.floor(dist / 100) + 1
  31.     for i=0,dist * 4 do
  32.         wait()
  33.         char:MoveTo(Vector3.new(...))
  34.     end
  35.     if args[#args] == true then
  36.         wait()
  37.         char:WaitForChild'HumanoidRootPart'.CFrame = CFrame.new(unpack(args,1,#args - 1))
  38.     end
  39. end
  40.  
  41. function Tween(obj, t, properties)
  42.     local TweenService = game:GetService("TweenService")
  43.     local tweenInfo = TweenInfo.new(t,Enum.EasingStyle.Linear,Enum.EasingDirection.In,0,false,0)
  44.     local tween = TweenService:Create(obj,tweenInfo,properties)
  45.     tween:Play()
  46.     return tween
  47. end
  48.  
  49. local Tracers = {}
  50.  
  51. local function AddLasso(p,team)
  52.     if not Tracers[team.Name] then return end
  53.     if p == plr then return end
  54.     spawn(function()
  55.         if p.Character then
  56.             local l = Instance.new("SelectionPartLasso")
  57.             l.Parent = p.Character
  58.             l.Humanoid = p.Character:FindFirstChildOfClass"Humanoid"
  59.             l.Part = plr.Character:WaitForChild"HumanoidRootPart"
  60.             l.Visible = true
  61.             l.Color3 = team.TeamColor.Color
  62.             for i=0,5 do
  63.                 local sg = Instance.new("SurfaceGui")
  64.                 sg.Face = i
  65.                 sg.Parent = p.Character
  66.                 sg.Adornee = p.Character:FindFirstChild"HumanoidRootPart"
  67.                 sg.AlwaysOnTop = true
  68.                 local f = Instance.new("Frame", sg)
  69.                 f.Size = UDim2.new(1,0,1,0)
  70.                 f.BorderSizePixel = 0
  71.                 f.BackgroundColor3 = team.TeamColor.Color
  72.                 f.BackgroundTransparency = 0.5
  73.             end
  74.         end
  75.     end)
  76. end
  77.  
  78. local function RemoveLasso(p)
  79.     if not p.Character then return end
  80.     for i,v in pairs(p.Character:GetDescendants()) do
  81.         if v.ClassName:find("Selection") or v.ClassName == "SurfaceGui" then
  82.             v:Destroy()
  83.         end
  84.     end
  85. end
  86.  
  87. for _,team in pairs(game:GetService("Teams"):GetChildren()) do
  88.     team.PlayerAdded:connect(function(p)
  89.         AddLasso(p,team)
  90.     end)
  91.    
  92.     team.PlayerRemoved:connect(function(p)
  93.         RemoveLasso(p)
  94.     end)
  95. end
  96.  
  97. function ToggleTracers(team, bool)
  98.     Tracers[team] = bool
  99.     local t = game:GetService("Teams"):FindFirstChild(team)
  100.     if not t then return end
  101.     for i,v in pairs(t:GetPlayers()) do
  102.         if bool then
  103.             AddLasso(v,t)
  104.         else
  105.             RemoveLasso(v)
  106.         end
  107.     end
  108. end
  109.  
  110. local function CharAdded(plr, char)
  111.     if Tracers[tostring(plr.Team)] then
  112.         AddLasso(plr,plr.Team)
  113.     end
  114. end
  115.  
  116. local function PlrAdded(plr)
  117.     plr.CharacterAdded:connect(function(char)
  118.         CharAdded(plr, char)
  119.     end)
  120.     if plr.Character then
  121.         CharAdded(plr, plr.Character)
  122.     end
  123. end
  124.  
  125. game:GetService("Players").PlayerAdded:connect(PlrAdded)
  126. for _,v in pairs(game:GetService("Players"):GetPlayers()) do
  127.     PlrAdded(v)
  128. end
  129.  
  130. --Creating Gui--
  131.  
  132. local function Create(classname)
  133.     return function(t)
  134.         local ins = Instance.new(classname)
  135.         for i,v in pairs(t) do
  136.             ins[i] = v
  137.         end
  138.         return ins
  139.     end
  140. end
  141.  
  142. --local parent = game:GetService("CoreGui"):WaitForChild("RobloxGui")
  143. local main = Create "Frame" {
  144.     Active = true,
  145.     ClipsDescendants = true,
  146.     Draggable = true,
  147.     BackgroundColor3 = Color3.new(1,1,1),
  148.     BorderSizePixel = 0,
  149.     Size = UDim2.new(0,400,0,300),
  150.     Position = UDim2.new(0.5,-200,0,-300),
  151.     BackgroundTransparency = 1,
  152.     Parent = Instance.new("ScreenGui", plr.PlayerGui)--parent
  153. }
  154. do
  155.     local effect = Create "Frame" {
  156.         Parent = main,
  157.         Size = UDim2.new(1,0,0,50),
  158.         BackgroundColor3 = Color3.fromRGB(85,170,255),
  159.         BorderSizePixel = 0,
  160.         ClipsDescendants = true,
  161.     }
  162.     local lb = Create "TextLabel" {
  163.         Parent = effect,
  164.         Size = UDim2.new(1,0,1,0),
  165.         BackgroundTransparency = 1,
  166.         BorderSizePixel = 0,
  167.         TextSize = 30,
  168.         TextColor3 = Color3.new(1,1,1),
  169.         TextXAlignment = "Left",
  170.         Font = "SourceSansBold",
  171.         Text = "Jailbreak GUI",
  172.         ZIndex = 2,
  173.     }
  174.     local function GTween()
  175.         lb:TweenPosition(UDim2.new(1,10,0,0), nil,nil,3,true,function(ts)
  176.             if ts == Enum.TweenStatus.Completed then
  177.                 lb.Position = UDim2.new(0,0 - lb.TextBounds.X - 2,0,0)
  178.                 GTween()
  179.             end
  180.         end)
  181.     end
  182.     GTween()
  183. end
  184.  
  185. local Menu = Create "Frame" {
  186.     BackgroundColor3 = Color3.new(1,1,1),
  187.     BorderSizePixel = 0,
  188.     Position = UDim2.new(0,0,0,50),
  189.     Size = UDim2.new(1,0,1,-50),
  190.     Parent = main,
  191. }
  192.  
  193. local MenuLabel = Create "TextLabel" {
  194.     BackgroundTransparency = 1,
  195.     BorderSizePixel = 0,
  196.     TextColor3 = Color3.new(0,0,0),
  197.     TextSize = 20,
  198.     Font = "SourceSans",
  199.     Text = "Made by refrfgrtgef for v3rm\n(won't tell you my roblox name)",
  200.     TextWrapped = true,
  201.     Size = UDim2.new(1,0,0,50),
  202.     Parent = Menu
  203. }
  204.  
  205. local function CreateButton(text,parent)
  206.     return Create "TextButton" {
  207.         Active = true,
  208.         AutoButtonColor = true,
  209.         BackgroundColor3 = Color3.fromRGB(0,155,232),
  210.         BorderSizePixel = 1,
  211.         Size = UDim2.new(0,100,0,30),
  212.         Font = "SourceSansBold",
  213.         TextColor3 = Color3.new(1,1,0),
  214.         TextSize = 20,
  215.         Text = text,
  216.         Parent = parent
  217.     }
  218. end
  219.  
  220. local function CreateFrame(name)
  221.     local f = Create "Frame" {
  222.         BackgroundColor3 = Color3.new(1,1,1),
  223.         BorderSizePixel = 0,
  224.         Position = UDim2.new(0,0,0,50),
  225.         Size = UDim2.new(1,0,1,-50),
  226.         Visible = false,
  227.     }
  228.     local lb = Create "TextLabel" {
  229.         BackgroundTransparency = 1,
  230.         BorderSizePixel = 0,
  231.         TextSize = 20,
  232.         TextColor3 = Color3.new(1,1,0),
  233.         Position = UDim2.new(0,0,0,5),
  234.         Text = name,
  235.         Parent = f,
  236.         TextXAlignment = "Center",
  237.         TextYAlignment = "Center",
  238.         Size = UDim2.new(1,0,0,30),
  239.     }
  240.     local exit = CreateButton("Back", f)
  241.     exit.Position = UDim2.new(0.5,-50,1,-45)
  242.     exit.MouseButton1Click:connect(function()
  243.         Menu.Visible = true
  244.         f.Visible = false
  245.         ActiveFrame = Menu
  246.     end)
  247.     return f
  248. end
  249.  
  250. ActiveFrame = Menu
  251.  
  252. local TeleportsFrame = CreateFrame("Teleports")
  253. TeleportsFrame.Parent = main
  254.  
  255. local BankIn = CreateButton("Bank (In)", TeleportsFrame)
  256. BankIn.Position = UDim2.new(0,15,0,40)
  257. BankIn.Size = UDim2.new(0,80,0,30)
  258. BankIn.MouseButton1Click:connect(function()
  259.     JailbreakTp(32,0.715,814, true)
  260. end)
  261.  
  262. local BankOut = CreateButton("Bank (Out)", TeleportsFrame)
  263. BankOut.Position = UDim2.new(0,105,0,40)
  264. BankOut.MouseButton1Click:connect(function()
  265.     JailbreakTp(10, 18, 784)
  266. end)
  267.  
  268. local JailIn = CreateButton("Jail (In)", TeleportsFrame)
  269. JailIn.Position = UDim2.new(0,215,0,40)
  270. JailIn.Size = UDim2.new(0,80,0,30)
  271. JailIn.MouseButton1Click:connect(function()
  272.     JailbreakTp(-1310, 18, -1658)
  273. end)
  274.  
  275. local JailOut = CreateButton("Jail (Out)", TeleportsFrame)
  276. JailOut.Position = UDim2.new(0,305,0,40)
  277. JailOut.Size = UDim2.new(0,80,0,30)
  278. JailOut.MouseButton1Click:connect(function()
  279.     JailbreakTp(-1133, 18, -1355)
  280. end)
  281.  
  282. local Garage = CreateButton("Garage", TeleportsFrame)
  283. Garage.Position = UDim2.new(0,335,0,120)--UDim2.new(0,10,0,80)
  284. Garage.Size = UDim2.new(0,60,0,30)
  285. Garage.MouseButton1Click:connect(function()
  286.     JailbreakTp(-352, 23, 1175)
  287. end)
  288.  
  289. local JewelIn = CreateButton("Jewelry (In)", TeleportsFrame)
  290. JewelIn.Position = UDim2.new(0,25,0,80)
  291. JewelIn.MouseButton1Click:connect(function()
  292.     JailbreakTp(133, 18, 1320, true)
  293. end)
  294.  
  295. local JewelOut = CreateButton("Jewelry (Out)", TeleportsFrame)
  296. JewelOut.Position = UDim2.new(0,135,0,80)
  297. JewelOut.Size = UDim2.new(0,115,0,30)
  298. JewelOut.MouseButton1Click:connect(function()
  299.     JailbreakTp(142, 18, 1365)
  300. end)
  301.  
  302. local Crim1 = CreateButton("Crim base 1", TeleportsFrame)
  303. Crim1.Position = UDim2.new(0,5,0,120)
  304. Crim1.MouseButton1Click:connect(function()
  305.     JailbreakTp(-226, 18, 1590, true)
  306. end)
  307.  
  308. local Crim2 = CreateButton("Crim base 2", TeleportsFrame)
  309. Crim2.Position = UDim2.new(0,115,0,120)
  310. Crim2.MouseButton1Click:connect(function()
  311.     JailbreakTp(true, 1637, 50, -1768, true)
  312. end)
  313.  
  314. local Donut = CreateButton("Donut Shop", TeleportsFrame)
  315. Donut.Position = UDim2.new(0,225,0,120)
  316. Donut.MouseButton1Click:connect(function()
  317.     JailbreakTp(268, 18, -1760, true)
  318. end)
  319.  
  320. local Gas = CreateButton("Gas Station", TeleportsFrame)
  321. Gas.Position = UDim2.new(0,260,0,80)
  322. Gas.MouseButton1Click:connect(function()
  323.     JailbreakTp(-1583, 18, 724, true)
  324. end)
  325.  
  326. local TeleportsBtn = CreateButton("Teleports", MenuLabel)
  327. TeleportsBtn.Position = UDim2.new(0.5,-50,0,60)
  328. TeleportsBtn.MouseButton1Click:connect(function()
  329.     TeleportsFrame.Visible = true
  330.     Menu.Visible = false
  331.     ActiveFrame = TeleportsFrame
  332. end)
  333.  
  334. local StuffFrame = CreateFrame("Stuff")
  335. StuffFrame.Parent = main
  336.  
  337. local StuffBtn = CreateButton("Stuff", MenuLabel)
  338. StuffBtn.Position = TeleportsBtn.Position + UDim2.new(0,0,0,40)
  339. StuffBtn.MouseButton1Click:connect(function()
  340.     StuffFrame.Visible = true
  341.     Menu.Visible = false
  342.     ActiveFrame = StuffFrame
  343. end)
  344.  
  345. local RemoveDoors = CreateButton("Remove Doors", StuffFrame)
  346. RemoveDoors.Size = UDim2.new(0,120,0,30)
  347. RemoveDoors.Position = UDim2.new(0,10,0,50)
  348. RemoveDoors.MouseButton1Click:connect(function()
  349.     local doors = workspace:FindFirstChild("Doors")
  350.     if not doors then return end
  351.     for i,v in pairs(doors:GetChildren()) do
  352.         v:Destroy()
  353.     end
  354. end)
  355.  
  356. local Platform = CreateButton("Platform", StuffFrame)
  357. Platform.Position = UDim2.new(0.5,-60,0,50)
  358. Platform.MouseButton1Click:connect(function()
  359.     local p = Instance.new("Part", workspace)
  360.     p.Size = Vector3.new(30,0.5,30)
  361.     p.Anchored = true
  362.     p.Position = plr.Character.HumanoidRootPart.Position + Vector3.new(0,15,0)
  363.     plr.Character:MoveTo(p.Position + Vector3.new(0,1,0))
  364.     spawn(function()
  365.         while p.Parent do
  366.             wait(1)
  367.             if (plr.Character.HumanoidRootPart.Position - p.Position).magnitude > 20 then
  368.                 p:Destroy()
  369.             end
  370.         end
  371.     end)
  372. end)
  373.  
  374. local Tracers = CreateButton("Tracers: None", StuffFrame)
  375. Tracers.Size = UDim2.new(0,140,0,30)
  376. Tracers.Position = UDim2.new(1,-150,0,50)
  377. Tracers.MouseButton1Click:connect(function()
  378.     local curr = Tracers.Text:sub(10)
  379.     if curr ~= "None" then
  380.         ToggleTracers(curr, false)
  381.     end
  382.     local teams = {"None", "Police", "Criminal", "Prisoner"}
  383.     local new = ""
  384.     for i,v in pairs(teams) do
  385.         if v == curr then
  386.             new = teams[i + 1] or teams[1]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement