Advertisement
Guest User

Untitled

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