Advertisement
forgetfuldingo

BrokenBonesFinal

Aug 9th, 2020
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.89 KB | None | 0 0
  1. local ScreenGui = Instance.new("ScreenGui")
  2.  
  3. local GUIBody = Instance.new("Frame")
  4.  
  5. local ImageLabel = Instance.new("ImageLabel")
  6.  
  7. local JailShitter = Instance.new("TextButton")
  8.  
  9. local Close = Instance.new("TextButton")
  10.  
  11. local OpenMain = Instance.new("Frame")
  12.  
  13. local OpenButton = Instance.new("TextButton")
  14.  
  15.  
  16.  
  17. --Properties:
  18.  
  19.  
  20.  
  21. ScreenGui.Parent = game.CoreGui
  22.  
  23.  
  24.  
  25. GUIBody.Name = "GUIBody"
  26.  
  27. GUIBody.Parent = ScreenGui
  28.  
  29. GUIBody.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  30.  
  31. GUIBody.Position = UDim2.new(0.247040257, 0, 0.205159709, 0)
  32.  
  33. GUIBody.Size = UDim2.new(0, 640, 0, 480)
  34.  
  35. GUIBody.Active = true
  36.  
  37. GUIBody.Draggable = true
  38.  
  39.  
  40.  
  41. ImageLabel.Parent = GUIBody
  42.  
  43. ImageLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  44.  
  45. ImageLabel.Size = UDim2.new(0, 640, 0, 480)
  46.  
  47. ImageLabel.Image = "rbxassetid://5518260950"
  48.  
  49.  
  50.  
  51. JailShitter.Name = "JailShitter"
  52.  
  53. JailShitter.Parent = GUIBody
  54.  
  55. JailShitter.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  56.  
  57. JailShitter.Position = UDim2.new(0.34375, 0, 0.208333328, 0)
  58.  
  59. JailShitter.Size = UDim2.new(0, 200, 0, 50)
  60.  
  61. JailShitter.Font = Enum.Font.ArialBold
  62.  
  63. JailShitter.Text = "Auto Break"
  64.  
  65. JailShitter.TextColor3 = Color3.fromRGB(0, 0, 0)
  66.  
  67. JailShitter.TextSize = 25.000
  68.  
  69. JailShitter.TextWrapped = true
  70.  
  71. JailShitter.MouseButton1Down:connect(function()JailShitter.BackgroundColor3 = Color3.fromRGB(0, 255, 0)
  72.  
  73. end)
  74.  
  75. JailShitter.MouseButton1Down:connect(function()
  76.  
  77. -- Everything below is the auto break script
  78.  
  79. local GUI = Instance.new("ScreenGui")
  80.  
  81. local OpenFrame = Instance.new("Frame")
  82.  
  83. local Open = Instance.new("TextButton")
  84.  
  85. local Main = Instance.new("Frame")
  86.  
  87. local TextOben = Instance.new("TextLabel")
  88.  
  89. local TextUnten = Instance.new("TextLabel")
  90.  
  91. local Start = Instance.new("TextButton")
  92.  
  93. local Stop = Instance.new("TextButton")
  94.  
  95. local Close = Instance.new("TextButton")
  96.  
  97. local Oben = Instance.new("Frame")
  98.  
  99. local Unten = Instance.new("Frame")
  100.  
  101.  
  102.  
  103. GUI.Name = "GUI"
  104.  
  105. GUI.Parent = game.CoreGui
  106.  
  107.  
  108.  
  109. OpenFrame.Name = "OpenFrame"
  110.  
  111. OpenFrame.Parent = GUI
  112.  
  113. OpenFrame.Active = true
  114.  
  115. OpenFrame.BackgroundColor3 = Color3.new(0.247059, 0.247059, 0.247059)
  116.  
  117. OpenFrame.Position = UDim2.new(0, 0, 0.539840639, 0)
  118.  
  119. OpenFrame.Size = UDim2.new(0, 114, 0, 30)
  120.  
  121.  
  122.  
  123. Open.Name = "Open"
  124.  
  125. Open.Parent = OpenFrame
  126.  
  127. Open.BackgroundColor3 = Color3.new(0.247059, 0.247059, 0.247059)
  128.  
  129. Open.BorderSizePixel = 0
  130.  
  131. Open.Position = UDim2.new(0.0370370373, 0, 0.13333334, 0)
  132.  
  133. Open.Size = UDim2.new(0, 104, 0, 22)
  134.  
  135. Open.Font = Enum.Font.SciFi
  136.  
  137. Open.Text = "Open"
  138.  
  139. Open.TextColor3 = Color3.new(0, 0, 0)
  140.  
  141. Open.TextSize = 20
  142.  
  143. Open.MouseButton1Down:connect(function()
  144.  
  145. Main.Visible = true
  146.  
  147. OpenFrame.Visible = false
  148.  
  149. end)
  150.  
  151.  
  152.  
  153. Main.Name = "Main"
  154.  
  155. Main.Parent = GUI
  156.  
  157. Main.Active = true
  158.  
  159. Main.BackgroundColor3 = Color3.new(0.203922, 0.203922, 0.203922)
  160.  
  161. Main.BackgroundTransparency = 0.20000000298023
  162.  
  163. Main.BorderColor3 = Color3.new(0, 0, 0)
  164.  
  165. Main.Position = UDim2.new(0.393034846, 0, 0.288844645, 0)
  166.  
  167. Main.Size = UDim2.new(0, 172, 0, 211)
  168.  
  169. Main.Draggable = true
  170.  
  171.  
  172.  
  173. TextOben.Name = "TextOben"
  174.  
  175. TextOben.Parent = Main
  176.  
  177. TextOben.BackgroundColor3 = Color3.new(0, 0.333333, 1)
  178.  
  179. TextOben.BorderColor3 = Color3.new(0, 0, 0)
  180.  
  181. TextOben.Position = UDim2.new(-0.116279073, 0, -0.0900473967, 0)
  182.  
  183. TextOben.Size = UDim2.new(0, 212, 0, 31)
  184.  
  185. TextOben.Font = Enum.Font.SciFi
  186.  
  187. TextOben.Text = ""
  188.  
  189. TextOben.TextColor3 = Color3.new(0, 0, 0)
  190.  
  191. TextOben.TextSize = 30
  192.  
  193.  
  194.  
  195. TextUnten.Name = "TextUnten"
  196.  
  197. TextUnten.Parent = Main
  198.  
  199. TextUnten.BackgroundColor3 = Color3.new(0, 0.333333, 1)
  200.  
  201. TextUnten.Position = UDim2.new(-0.116279073, 0, 0.928909957, 0)
  202.  
  203. TextUnten.Size = UDim2.new(0, 212, 0, 31)
  204.  
  205. TextUnten.Font = Enum.Font.SciFi
  206.  
  207. TextUnten.Text = ""
  208.  
  209. TextUnten.TextColor3 = Color3.new(0, 0, 0)
  210.  
  211. TextUnten.TextSize = 24
  212.  
  213.  
  214.  
  215. Start.Name = "Start"
  216.  
  217. Start.Parent = Main
  218.  
  219. Start.BackgroundColor3 = Color3.new(1, 1, 1)
  220.  
  221. Start.BackgroundTransparency = 1
  222.  
  223. Start.BorderSizePixel = 0
  224.  
  225. Start.Position = UDim2.new(0.0755813941, 0, 0.113744073, 0)
  226.  
  227. Start.Size = UDim2.new(0, 146, 0, 54)
  228.  
  229. Start.Font = Enum.Font.Cartoon
  230.  
  231. Start.Text = "Start"
  232.  
  233. Start.TextColor3 = Color3.new(0, 0, 0)
  234.  
  235. Start.TextSize = 40
  236.  
  237. Start.MouseButton1Down:connect(function()
  238.  
  239. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(2207, 128, -374)
  240.  
  241. end)
  242.  
  243. Start.MouseButton1Down:connect(function()
  244.  
  245. plr = game:GetService('Players').LocalPlayer
  246.  
  247. torso = plr.Character.UpperTorso
  248.  
  249. hum = plr.Character.Humanoid
  250.  
  251. mouse = plr:GetMouse()
  252.  
  253. stop = false
  254.  
  255. while stop == false do
  256.  
  257. local bp = Instance.new('BodyPosition')
  258.  
  259. bp.MaxForce = Vector3.new(999999,999999,999999)
  260.  
  261. bp.Position = torso.Position
  262.  
  263. bp.Parent = torso
  264.  
  265. local bav = Instance.new('BodyAngularVelocity')
  266.  
  267. bav.MaxTorque = Vector3.new(999999,999999,999999)
  268.  
  269. bav.AngularVelocity = Vector3.new(200,200,200)
  270.  
  271. bav.Parent = torso
  272.  
  273. wait()
  274.  
  275. end
  276.  
  277. end)
  278.  
  279. Start.MouseButton1Down:connect(function()
  280.  
  281. local VirtualUser=game:service'VirtualUser'
  282.  
  283. game:service'Players'.LocalPlayer.Idled:connect(function()
  284.  
  285. VirtualUser:CaptureController()
  286.  
  287. VirtualUser:ClickButton2(Vector2.new())
  288.  
  289. end)
  290.  
  291. -- No longer the auto break script
  292.  
  293. end)
  294.  
  295.  
  296.  
  297. Stop.Name = "Stop"
  298.  
  299. Stop.Parent = Main
  300.  
  301. Stop.BackgroundColor3 = Color3.new(1, 1, 1)
  302.  
  303. Stop.BackgroundTransparency = 1
  304.  
  305. Stop.BorderSizePixel = 0
  306.  
  307. Stop.Position = UDim2.new(0.0755813941, 0, 0.369668275, 0)
  308.  
  309. Stop.Size = UDim2.new(0, 146, 0, 54)
  310.  
  311. Stop.Font = Enum.Font.Cartoon
  312.  
  313. Stop.Text = "Stop"
  314.  
  315. Stop.TextColor3 = Color3.new(0, 0, 0)
  316.  
  317. Stop.TextSize = 40
  318.  
  319. Stop.MouseButton1Down:connect(function()
  320.  
  321. local player = game.Players.LocalPlayer.Name
  322.  
  323.  
  324.  
  325. game.workspace[player]:BreakJoints()
  326.  
  327. end)
  328.  
  329.  
  330.  
  331. Close.Name = "Close"
  332.  
  333. Close.Parent = Main
  334.  
  335. Close.BackgroundColor3 = Color3.new(1, 1, 1)
  336.  
  337. Close.BackgroundTransparency = 1
  338.  
  339. Close.BorderSizePixel = 0
  340.  
  341. Close.Position = UDim2.new(0.0755813941, 0, 0.654028475, 0)
  342.  
  343. Close.Size = UDim2.new(0, 145, 0, 45)
  344.  
  345. Close.Font = Enum.Font.SciFi
  346.  
  347. Close.Text = "Close"
  348.  
  349. Close.TextColor3 = Color3.new(0, 0, 0)
  350.  
  351. Close.TextSize = 25
  352.  
  353. Close.MouseButton1Down:connect(function()
  354.  
  355. OpenFrame.Visible = true
  356.  
  357. Main.Visible = false
  358.  
  359. end)
  360.  
  361.  
  362.  
  363. Oben.Name = "Oben"
  364.  
  365. Oben.Parent = Main
  366.  
  367. Oben.BackgroundColor3 = Color3.new(1, 1, 1)
  368.  
  369. Oben.BackgroundTransparency = 1
  370.  
  371. Oben.BorderSizePixel = 0
  372.  
  373. Oben.Position = UDim2.new(-0.116279066, 0, -0.0900473967, 0)
  374.  
  375. Oben.Size = UDim2.new(0, 213, 0, 30)
  376.  
  377.  
  378.  
  379. Unten.Name = "Unten"
  380.  
  381. Unten.Parent = Main
  382.  
  383. Unten.BackgroundColor3 = Color3.new(1, 1, 1)
  384.  
  385. Unten.BackgroundTransparency = 1
  386.  
  387. Unten.BorderSizePixel = 0
  388.  
  389. Unten.Position = UDim2.new(-0.116279073, 0, 0.933649242, 0)
  390.  
  391. Unten.Size = UDim2.new(0, 212, 0, 30)
  392.  
  393. end)
  394.  
  395.  
  396.  
  397. Close.Name = "Close"
  398.  
  399. Close.Parent = GUIBody
  400.  
  401. Close.BackgroundColor3 = Color3.fromRGB(170, 0, 0)
  402.  
  403. Close.Position = UDim2.new(0.953125, 0, 0, 0)
  404.  
  405. Close.Size = UDim2.new(0, 30, 0, 30)
  406.  
  407. Close.Font = Enum.Font.SourceSans
  408.  
  409. Close.Text = "X"
  410.  
  411. Close.TextColor3 = Color3.fromRGB(0, 0, 0)
  412.  
  413. Close.TextScaled = true
  414.  
  415. Close.TextSize = 14.000
  416.  
  417. Close.TextWrapped = true
  418.  
  419. Close.MouseButton1Down:connect(function()
  420.  
  421. GUIBody.Visible = false
  422.  
  423. OpenMain.Visible = true
  424.  
  425. end)
  426.  
  427.  
  428.  
  429.  
  430.  
  431. OpenMain.Name = "OpenMain"
  432.  
  433. OpenMain.Parent = ScreenGui
  434.  
  435. OpenMain.BackgroundColor3 = Color3.fromRGB(0, 85, 0)
  436.  
  437. OpenMain.Position = UDim2.new(0, 0, 0.444717467, 0)
  438.  
  439. OpenMain.Size = UDim2.new(0, 80, 0, 60)
  440.  
  441. OpenMain.Draggable = true
  442.  
  443. OpenMain.Active = true
  444.  
  445.  
  446.  
  447. OpenButton.Name = "OpenButton"
  448.  
  449. OpenButton.Parent = OpenMain
  450.  
  451. OpenButton.BackgroundColor3 = Color3.fromRGB(0, 170, 0)
  452.  
  453. OpenButton.Size = UDim2.new(0, 80, 0, 40)
  454.  
  455. OpenButton.Font = Enum.Font.SourceSans
  456.  
  457. OpenButton.Text = "Open"
  458.  
  459. OpenButton.TextColor3 = Color3.fromRGB(0, 0, 0)
  460.  
  461. OpenButton.TextSize = 14.000
  462.  
  463. OpenButton.MouseButton1Down:connect(function()
  464.  
  465. GUIBody.Visible = true
  466.  
  467. OpenMain.Visible = false
  468.  
  469. end)
  470.  
  471. -- end of broken bones script
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement