Guest User

Broken Cash

a guest
Nov 3rd, 2019
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.14 KB | None | 0 0
  1. --- Credits to Ziegel#8171
  2.  
  3. local GUI = Instance.new("ScreenGui")
  4. local OpenFrame = Instance.new("Frame")
  5. local Open = Instance.new("TextButton")
  6. local Main = Instance.new("Frame")
  7. local TextOben = Instance.new("TextLabel")
  8. local TextUnten = Instance.new("TextLabel")
  9. local Start = Instance.new("TextButton")
  10. local Stop = Instance.new("TextButton")
  11. local Close = Instance.new("TextButton")
  12. --Properties:
  13. GUI.Name = "GUI"
  14. GUI.Parent = game.CoreGui
  15.  
  16. OpenFrame.Name = "OpenFrame"
  17. OpenFrame.Parent = GUI
  18. OpenFrame.Active = true
  19. OpenFrame.BackgroundColor3 = Color3.new(0.247059, 0.247059, 0.247059)
  20. OpenFrame.Position = UDim2.new(0, 0, 0.539840639, 0)
  21. OpenFrame.Size = UDim2.new(0, 114, 0, 30)
  22.  
  23. Open.Name = "Open"
  24. Open.Parent = OpenFrame
  25. Open.BackgroundColor3 = Color3.new(0.247059, 0.247059, 0.247059)
  26. Open.BorderSizePixel = 0
  27. Open.Position = UDim2.new(0.0370370373, 0, 0.13333334, 0)
  28. Open.Size = UDim2.new(0, 104, 0, 22)
  29. Open.Font = Enum.Font.SciFi
  30. Open.Text = "Open"
  31. Open.TextColor3 = Color3.new(0, 0, 0)
  32. Open.TextSize = 20
  33. Open.MouseButton1Down:connect(function()
  34. Main.Visible = true
  35. OpenFrame.Visible = false
  36. end)
  37.  
  38. Main.Name = "Main"
  39. Main.Parent = GUI
  40. Main.Active = true
  41. Main.BackgroundColor3 = Color3.new(0.203922, 0.203922, 0.203922)
  42. Main.BackgroundTransparency = 0.20000000298023
  43. Main.BorderColor3 = Color3.new(0, 0, 0)
  44. Main.Position = UDim2.new(0.393034846, 0, 0.288844645, 0)
  45. Main.Size = UDim2.new(0, 172, 0, 211)
  46. Main.Draggable = true
  47.  
  48. TextOben.Name = "TextOben"
  49. TextOben.Parent = Main
  50. TextOben.BackgroundColor3 = Color3.new(0, 0.333333, 1)
  51. TextOben.BorderColor3 = Color3.new(0, 0, 0)
  52. TextOben.Position = UDim2.new(-0.116279073, 0, -0.0900473967, 0)
  53. TextOben.Size = UDim2.new(0, 212, 0, 31)
  54. TextOben.Font = Enum.Font.SciFi
  55. TextOben.Text = "Broken Cash"
  56. TextOben.TextColor3 = Color3.new(0, 0, 0)
  57. TextOben.TextSize = 30
  58.  
  59. TextUnten.Name = "TextUnten"
  60. TextUnten.Parent = Main
  61. TextUnten.BackgroundColor3 = Color3.new(0, 0.333333, 1)
  62. TextUnten.Position = UDim2.new(-0.116279073, 0, 0.928909957, 0)
  63. TextUnten.Size = UDim2.new(0, 212, 0, 31)
  64. TextUnten.Font = Enum.Font.SciFi
  65. TextUnten.Text = "Credits Ziegel#8171"
  66. TextUnten.TextColor3 = Color3.new(0, 0, 0)
  67. TextUnten.TextSize = 24
  68.  
  69. Start.Name = "Start"
  70. Start.Parent = Main
  71. Start.BackgroundColor3 = Color3.new(1, 1, 1)
  72. Start.BackgroundTransparency = 1
  73. Start.BorderSizePixel = 0
  74. Start.Position = UDim2.new(0.0755813941, 0, 0.113744073, 0)
  75. Start.Size = UDim2.new(0, 146, 0, 54)
  76. Start.Font = Enum.Font.Cartoon
  77. Start.Text = "Start"
  78. Start.TextColor3 = Color3.new(0, 0, 0)
  79. Start.TextSize = 40
  80. Start.MouseButton1Down:connect(function()
  81. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(2207, 128, -374)
  82. end)
  83. Start.MouseButton1Down:connect(function()
  84. plr = game:GetService('Players').LocalPlayer
  85. torso = plr.Character.UpperTorso
  86. hum = plr.Character.Humanoid
  87. mouse = plr:GetMouse()
  88. stop = false
  89. while stop == false do
  90. local bp = Instance.new('BodyPosition')
  91. bp.MaxForce = Vector3.new(999999,999999,999999)
  92. bp.Position = torso.Position
  93. bp.Parent = torso
  94. local bav = Instance.new('BodyAngularVelocity')
  95. bav.MaxTorque = Vector3.new(999999,999999,999999)
  96. bav.AngularVelocity = Vector3.new(200,200,200)
  97. bav.Parent = torso
  98. wait()
  99. end
  100. end)
  101.  
  102. Stop.Name = "Stop"
  103. Stop.Parent = Main
  104. Stop.BackgroundColor3 = Color3.new(1, 1, 1)
  105. Stop.BackgroundTransparency = 1
  106. Stop.BorderSizePixel = 0
  107. Stop.Position = UDim2.new(0.0755813941, 0, 0.369668275, 0)
  108. Stop.Size = UDim2.new(0, 146, 0, 54)
  109. Stop.Font = Enum.Font.Cartoon
  110. Stop.Text = "Stop"
  111. Stop.TextColor3 = Color3.new(0, 0, 0)
  112. Stop.TextSize = 40
  113. Stop.MouseButton1Down:connect(function()
  114. local player = game.Players.LocalPlayer.Name
  115.  
  116. game.workspace[player]:BreakJoints()
  117. end)
  118.  
  119. Close.Name = "Close"
  120. Close.Parent = Main
  121. Close.BackgroundColor3 = Color3.new(1, 1, 1)
  122. Close.BackgroundTransparency = 1
  123. Close.BorderSizePixel = 0
  124. Close.Position = UDim2.new(0.0755813941, 0, 0.654028475, 0)
  125. Close.Size = UDim2.new(0, 145, 0, 45)
  126. Close.Font = Enum.Font.SciFi
  127. Close.Text = "Close"
  128. Close.TextColor3 = Color3.new(0, 0, 0)
  129. Close.TextSize = 25
  130. Close.MouseButton1Down:connect(function()
  131. OpenFrame.Visible = true
  132. Main.Visible = false
  133. end)
Add Comment
Please, Sign In to add comment