Advertisement
PareX

woow

Jun 1st, 2019
269
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 3.19 KB | None | 0 0
  1. -- Objects
  2.  
  3. local ScreenGui = Instance.new("ScreenGui")
  4. local Frame = Instance.new("Frame")
  5. local Start = Instance.new("TextButton")
  6. local Stop = Instance.new("TextButton")
  7. local TextLabel = Instance.new("TextLabel")
  8. local TextLabel1 = Instance.new("TextLabel")
  9.  
  10. -- Properties
  11.  
  12. ScreenGui.Parent = game.CoreGui
  13. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  14.  
  15. Frame.Parent = ScreenGui
  16. Frame.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
  17. Frame.Position = UDim2.new(0.67339313, 0, 0.0655339956, 0)
  18. Frame.Size = UDim2.new(0, 164, 0, 226)
  19. Frame.Active = true
  20. Frame.Draggable = true
  21.  
  22. Start.Name = "Start"
  23. Start.Parent = Frame
  24. Start.BackgroundColor3 = Color3.new(0.235294, 0.235294, 0.235294)
  25. Start.BorderSizePixel = 0
  26. Start.Position = UDim2.new(0.10975609, 0, 0.190265492, 0)
  27. Start.Size = UDim2.new(0, 127, 0, 32)
  28. Start.Font = Enum.Font.GothamBlack
  29. Start.Text = "Start! Inf Money!"
  30. Start.TextColor3 = Color3.new(0.929412, 0.929412, 0.929412)
  31. Start.TextSize = 14
  32. Start.MouseButton1Down:connect(function()
  33. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(2207, 128, -374)
  34. end)
  35. Start.MouseButton1Down:connect(function()
  36. plr = game:GetService('Players').LocalPlayer
  37. torso = plr.Character.UpperTorso
  38. hum = plr.Character.Humanoid
  39. mouse = plr:GetMouse()
  40. stop = false
  41. while stop == false do
  42. local bp = Instance.new('BodyPosition')
  43. bp.MaxForce = Vector3.new(999999,999999,999999)
  44. bp.Position = torso.Position
  45. bp.Parent = torso
  46. local bav = Instance.new('BodyAngularVelocity')
  47. bav.MaxTorque = Vector3.new(999999,999999,999999)
  48. bav.AngularVelocity = Vector3.new(200,200,200)
  49. bav.Parent = torso
  50. wait()
  51. end
  52. end)
  53. Start.MouseButton1Down:connect(function()
  54. local VirtualUser=game:service'VirtualUser'
  55. game:service'Players'.LocalPlayer.Idled:connect(function()
  56. VirtualUser:CaptureController()
  57. VirtualUser:ClickButton2(Vector2.new())
  58. end)
  59. end)
  60.  
  61. Stop.Name = "Stop"
  62. Stop.Parent = Frame
  63. Stop.BackgroundColor3 = Color3.new(0.235294, 0.235294, 0.235294)
  64. Stop.BorderSizePixel = 0
  65. Stop.Position = UDim2.new(0.10975609, 0, 0.424778759, 0)
  66. Stop.Size = UDim2.new(0, 127, 0, 32)
  67. Stop.Font = Enum.Font.GothamBlack
  68. Stop.Text = "Stop!"
  69. Stop.TextColor3 = Color3.new(0.929412, 0.929412, 0.929412)
  70. Stop.TextSize = 14
  71. Stop.MouseButton1Down:connect(function()
  72. local player = game.Players.LocalPlayer.Name
  73.  
  74. game.workspace[player]:BreakJoints()
  75. end)
  76.  
  77. TextLabel.Parent = Frame
  78. TextLabel.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
  79. TextLabel.BorderSizePixel = 0
  80. TextLabel.Position = UDim2.new(0.048780486, 0, 0.805309772, 0)
  81. TextLabel.Size = UDim2.new(0, 146, 0, 37)
  82. TextLabel.Font = Enum.Font.SourceSans
  83. TextLabel.Text = "Made by Lexify Team (Dede)"
  84. TextLabel.TextColor3 = Color3.new(0.929412, 0.929412, 0.929412)
  85. TextLabel.TextSize = 14
  86.  
  87. TextLabel1.Name = "TextLabel1"
  88. TextLabel1.Parent = Frame
  89. TextLabel1.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
  90. TextLabel1.BorderSizePixel = 0
  91. TextLabel1.Position = UDim2.new(0.0548780486, 0, -0.0044247508, 0)
  92. TextLabel1.Size = UDim2.new(0, 146, 0, 37)
  93. TextLabel1.Font = Enum.Font.ArialBold
  94. TextLabel1.Text = "Lexify!"
  95. TextLabel1.TextColor3 = Color3.new(0.929412, 0.929412, 0.929412)
  96. TextLabel1.TextSize = 20
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement