Advertisement
ImTotallyWaggy

JailbreakHaxx

Dec 3rd, 2018
4,918
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.46 KB | None | 0 0
  1. --[[
  2. __ _ ____ __ __ __
  3. / /___ _(_) / /_ ________ ____ _/ /__/ / / /___ __ ___ __
  4. __ / / __ `/ / / __ \/ ___/ _ \/ __ `/ //_/ /_/ / __ `/ |/_/ |/_/
  5. / /_/ / /_/ / / / /_/ / / / __/ /_/ / ,< / __ / /_/ /> <_> <
  6. \____/\__,_/_/_/_.___/_/ \___/\__,_/_/|_/_/ /_/\__,_/_/|_/_/|_|
  7. A quality script created by Plexinomity
  8. --]]
  9.  
  10. --[[ Main Table ]]--
  11. local JbHaxx = {}
  12.  
  13. --[[ Prefixes ]]--
  14. JbHaxx.Prefixes = {}
  15.  
  16. JbHaxx.Prefixes.PrefixNM = "/e jh "
  17. JbHaxx.Prefixes.PrefixSP = JbHaxx.Prefixes.PrefixNM .. "spawn:"
  18. JbHaxx.Prefixes.PrefixTP = JbHaxx.Prefixes.PrefixNM .. "tp:"
  19.  
  20. --[[ ROBLOX Services ]]--
  21. JbHaxx.Services = {}
  22.  
  23. JbHaxx.Services.Players = game:GetService("Players")
  24. JbHaxx.Services.LocalPlayer = JbHaxx.Services.Players.LocalPlayer
  25. JbHaxx.Services.UIS = game:GetService("UserInputService")
  26. JbHaxx.Services.RunService = game:GetService("RunService")
  27. JbHaxx.Services.Workspace = game:GetService("Workspace")
  28. JbHaxx.Services.SGui = game:GetService("StarterGui")
  29.  
  30. --[[ CFrames ]]--
  31. JbHaxx.CFrames = {}
  32.  
  33. JbHaxx.CFrames.Places = {}
  34. JbHaxx.CFrames.Places.Bank = CFrame.new(32.214, 2.67609, 818.648926) + Vector3.new(1,0,0)
  35. JbHaxx.CFrames.Places.Jewelry = CFrame.new(137.325, 17.878, 1320.123) + Vector3.new(1,0,0)
  36. JbHaxx.CFrames.Places.Prison = CFrame.new(-1138.66, 18.009, -1430.01) + Vector3.new(1,0,0)
  37. JbHaxx.CFrames.Places.GasStation = CFrame.new(-1548.20093, 17.7475166, 701.546997) + Vector3.new(1,0,0)
  38. JbHaxx.CFrames.Places.DonutShop = CFrame.new(267.315552, 17.6180038, -1796.33093) + Vector3.new(1,0,0)
  39.  
  40. JbHaxx.CFrames.Places.PoliceBases = {}
  41. JbHaxx.CFrames.Places.PoliceBases.Prison = CFrame.new(-1130.11426, 17.950058, -1593.09766) + Vector3.new(1,0,0)
  42. JbHaxx.CFrames.Places.PoliceBases.City = CFrame.new(736.232239, 38.1125107, 1130.04456) + Vector3.new(1,0,0)
  43.  
  44. JbHaxx.CFrames.Places.CriminalBases = {}
  45. JbHaxx.CFrames.Places.CriminalBases.City = CFrame.new(-222.339157, 17.9125443, 1575.82336) + Vector3.new(1,0,0)
  46. JbHaxx.CFrames.Places.CriminalBases.Volcano = CFrame.new(1579.4823, 49.787693, -1759.61438) + Vector3.new(1,0,0)
  47.  
  48. JbHaxx.CFrames.Cars = {}
  49. JbHaxx.CFrames.Cars.Lamborghini = CFrame.new(144.794067, 17.6189003, 768.572693) + Vector3.new(1,0,0)
  50. JbHaxx.CFrames.Cars.Buggati = CFrame.new(245.938766, 17.6064777, 1372.15076) + Vector3.new(1,0,0)
  51. JbHaxx.CFrames.Cars.DuneBuggy = CFrame.new(571.526733, 16.66436, -470.50943) + Vector3.new(1,0,0)
  52. JbHaxx.CFrames.Cars.PickupTruck = CFrame.new(-1541.10388, 17.746624, 729) + Vector3.new(1,0,0)
  53. JbHaxx.CFrames.Cars.DirtBike = CFrame.new(1313.71118, 17.3656254, 370.085327) + Vector3.new(1,0,0)
  54. JbHaxx.CFrames.Cars.Porsche = CFrame.new(1112.11475, 101.16069, 1290.57654) + Vector3.new(1,0,0)
  55. JbHaxx.CFrames.Cars.Camaro = CFrame.new(-956.153564, 19.8500576, -1451.23572) + Vector3.new(1,0,0)
  56. JbHaxx.CFrames.Cars.MiniCooper = CFrame.new(767.823242, 17.3656254, -1216.83643) + Vector3.new(1,0,0)
  57. JbHaxx.CFrames.Cars.Tesla = CFrame.new(-111.571999, 17.6169529, 541.515747) + Vector3.new(1,0,0)
  58.  
  59. --[[ Functions ]]--
  60. JbHaxx.Functions = {}
  61.  
  62. JbHaxx.Functions.TP = function(CFRAME)
  63. for i = 1,30 do
  64. JbHaxx.Services.LocalPlayer.Character.HumanoidRootPart.CFrame = CFRAME
  65. end
  66. end
  67.  
  68. JbHaxx.Functions.SpawnItem = function(ItemLocation, ItemName)
  69. local part = Instance.new("Part")
  70. part.Anchored = true
  71. part.CanCollide = false
  72. part.CFrame = JbHaxx.Services.LocalPlayer.Character.HumanoidRootPart.CFrame + Vector3.new(0, 0, -3)
  73. part.Parent = JbHaxx.Services.Workspace
  74.  
  75. for _,i in pairs(JbHaxx.Services.Workspace["Givers"]:GetChildren()) do
  76. if i.Name == ItemLocation then
  77. for _,v in pairs(i:GetChildren()) do
  78. if v:IsA("StringValue") then
  79. if v.Value == ItemName then
  80. i.CFrame = CFrame.new(JbHaxx.Services.LocalPlayer.Character.HumanoidRootPart.CFrame + Vector3.new(0, 0, -3))
  81. end
  82. end
  83. end
  84. end
  85. end
  86. end
  87.  
  88. JbHaxx.Functions.Notification = function(msg)
  89. JbHaxx.Services.SGui:SetCore("SendNotification", {
  90. Title = "JailbreakHaxx";
  91. Text = msg;
  92. Duration = 8;
  93. })
  94. end
  95.  
  96. --[[ Game Check ]]--
  97. if game.PlaceId ~= 606849621 then
  98. JbHaxx.Functions.Notification("This game is not Jailbreak!")
  99. return
  100. end
  101.  
  102. --[[ Loading... ]]--
  103. JbHaxx.Functions.Notification("JailbreakHaxx is loading...")
  104.  
  105.  
  106. --[[ Main ]]--
  107. JbHaxx.Services.LocalPlayer.Chatted:Connect(function(cmd)
  108.  
  109. end)
  110.  
  111. --[[ Loaded! ]]--
  112. JbHaxx.Functions.Notification("JailbreakHaxx has successfully loaded!")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement