Advertisement
Guest User

Untitled

a guest
Nov 15th, 2018
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.72 KB | None | 0 0
  1. --Scripts For JailBreak Gui
  2.  
  3. Bank.MouseButton1Down:connect(function()
  4. for i = 1,45 do
  5. wait(.08)
  6. game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(9.92591476, 17.8639755, 786.788147)
  7. end
  8. end)
  9.  
  10. CrimBase1.MouseButton1Down:connect(function()
  11. for i = 1,45 do
  12. wait(.08)
  13. game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-221.723099, 17.8924026, 1578.80261)
  14. end
  15. end)
  16.  
  17. JewO.MouseButton1Down:connect(function()
  18. for i = 1,45 do
  19. wait(.08)
  20. game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(101.211128, 98.6576996, 1310.54175)
  21. end
  22. end)
  23.  
  24. BTools.MouseButton1Down:connect(function()
  25. game.StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Backpack, true)
  26. for index, child in pairs(game:GetService("Workspace"):GetChildren()) do
  27. if child.ClassName == "Part" then
  28. child.Locked = false
  29. end
  30. if child.ClassName == "MeshPart" then
  31. child.Locked = false
  32. end
  33. if child.ClassName == "UnionOperation" then
  34. child.Locked = false
  35. end
  36. if child.ClassName == "Model" then
  37. for index, chil in pairs(child:GetChildren()) do
  38. if chil.ClassName == "Part" then
  39. chil.Locked = false
  40. end
  41. if chil.ClassName == "MeshPart" then
  42. chil.Locked = false
  43. end
  44. if chil.ClassName == "UnionOperation" then
  45. chil.Locked = false
  46. end
  47. if chil.ClassName == "Model" then
  48. for index, childe in pairs(chil:GetChildren()) do
  49. if childe.ClassName == "Part" then
  50. childe.Locked = false
  51. end
  52. if childe.ClassName == "MeshPart" then
  53. childe.Locked = false
  54. end
  55. if childe.ClassName == "UnionOperation" then
  56. childe.Locked = false
  57. end
  58. if childe.ClassName == "Model" then
  59. for index, childeo in pairs(childe:GetChildren()) do
  60. if childeo.ClassName == "Part" then
  61. childeo.Locked = false
  62. end
  63. if childeo.ClassName == "MeshPart" then
  64. childeo.Locked = false
  65. end
  66. if childeo.ClassName == "UnionOperation" then
  67. childeo.Locked = false
  68. end
  69. if childeo.ClassName == "Model" then
  70. end
  71. end
  72. end
  73. end
  74. end
  75. end
  76. end
  77. end
  78. c = Instance.new("HopperBin", game:GetService("Players").LocalPlayer.Backpack)
  79. c.BinType = Enum.BinType.Hammer
  80. c = Instance.new("HopperBin", game:GetService("Players").LocalPlayer.Backpack)
  81. c.BinType = Enum.BinType.Clone
  82. c = Instance.new("HopperBin", game:GetService("Players").LocalPlayer.Backpack)
  83. c.BinType = Enum.BinType.Grab
  84. end)
  85.  
  86. NoClip.MouseButton1Down:connect(function()
  87. local noclipplayer = game:GetService("Players").LocalPlayer
  88. local noclipmouse = noclipplayer:GetMouse()
  89.  
  90. local donoclip = false
  91. local noclip = false
  92.  
  93. function b_noclip(key)
  94. if (key == "b") then
  95. if noclip == false then
  96. donoclip = true
  97.  
  98. noclip = true
  99. elseif noclip == true then
  100. donoclip = false
  101.  
  102. noclip = false
  103. end
  104. end
  105. end
  106.  
  107. noclipmouse.KeyDown:connect(b_noclip)
  108.  
  109. game:GetService("Players").LocalPlayer.Character.Head.Touched:connect(function(obj)
  110. if obj ~= workspace.Terrain then
  111. if donoclip == true then
  112. obj.CanCollide = false
  113. else
  114. obj.CanCollide = true
  115. end
  116. end
  117. end)
  118. end)
  119.  
  120. WalkSpeed.MouseButton1Down:connect(function()
  121. local walkspeedplayer = game:GetService("Players").LocalPlayer
  122. local walkspeedmouse = walkspeedplayer:GetMouse()
  123.  
  124. local walkspeedenabled = false
  125.  
  126. function x_walkspeed(key)
  127. if (key == "x") then
  128. if walkspeedenabled == false then
  129. _G.WS = 200;
  130. local Humanoid = game:GetService("Players").LocalPlayer.Character.Humanoid;
  131. Humanoid:GetPropertyChangedSignal("WalkSpeed"):Connect(function()
  132. Humanoid.WalkSpeed = _G.WS;
  133. end)
  134. Humanoid.WalkSpeed = _G.WS;
  135.  
  136. walkspeedenabled = true
  137. elseif walkspeedenabled == true then
  138. _G.WS = 20;
  139. local Humanoid = game:GetService("Players").LocalPlayer.Character.Humanoid;
  140. Humanoid:GetPropertyChangedSignal("WalkSpeed"):Connect(function()
  141. Humanoid.WalkSpeed = _G.WS;
  142. end)
  143. Humanoid.WalkSpeed = _G.WS;
  144.  
  145. walkspeedenabled = false
  146. end
  147. end
  148. end
  149.  
  150. walkspeedmouse.KeyDown:connect(x_walkspeed)
  151.  
  152. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement