Advertisement
roblox_exploit

Untitled

Aug 3rd, 2019
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.81 KB | None | 0 0
  1. -- reav
  2. local ok = false
  3. local player = game.Players.LocalPlayer
  4. local mouse = game.Players.LocalPlayer:GetMouse()
  5. local gui = Frame -- replace Frame to the name of the frame your gui is in
  6.  
  7.  
  8. -- Objects
  9.  
  10. local ScreenGui = Instance.new("ScreenGui")
  11. local Frame = Instance.new("Frame")
  12. local TextButton = Instance.new("TextButton")
  13. local TextLabel = Instance.new("TextLabel")
  14. local TextLabel_2 = Instance.new("TextLabel")
  15. -- Properties
  16.  
  17. ScreenGui.Parent = game:GetService("CoreGui")
  18.  
  19. Frame.Parent = ScreenGui
  20. Frame.BackgroundColor3 = Color3.new(0.301961, 0.301961, 0.301961)
  21. Frame.BorderColor3 = Color3.new(0, 0, 0)
  22. Frame.Position = UDim2.new(0.172302201, 0, 0.29214862, 0)
  23. Frame.Selectable = true
  24. Frame.Size = UDim2.new(0, 299, 0, 233)
  25. Frame.Active = true
  26. Frame.Draggable = true
  27.  
  28. TextButton.Parent = Frame
  29. TextButton.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
  30. TextButton.Position = UDim2.new(0.0327655859, 0, 0.337103128, 0)
  31. TextButton.Size = UDim2.new(0, 279, 0, 74)
  32. TextButton.Font = Enum.Font.SciFi
  33. TextButton.Text = "FARM = OFF"
  34. TextButton.TextColor3 = Color3.new(0.541176, 0, 0)
  35. TextButton.TextSize = 50
  36.  
  37. TextLabel.Parent = Frame
  38. TextLabel.BackgroundColor3 = Color3.new(0.207843, 0.207843, 0.207843)
  39. TextLabel.BorderSizePixel = 0
  40. TextLabel.Position = UDim2.new(-0.00161084533, 0, -0.00398874283, 0)
  41. TextLabel.Size = UDim2.new(0, 299, 0, 25)
  42. TextLabel.Font = Enum.Font.SciFi
  43. TextLabel.Text = "| Anti-Report | by reav"
  44. TextLabel.TextColor3 = Color3.new(0.439216, 0.709804, 0)
  45. TextLabel.TextSize = 14
  46.  
  47. TextLabel_2.Parent = Frame
  48. TextLabel_2.BackgroundColor3 = Color3.new(0.207843, 0.207843, 0.207843)
  49. TextLabel_2.BackgroundTransparency = 100
  50. TextLabel_2.BorderColor3 = Color3.new(0, 0, 0)
  51. TextLabel_2.Position = UDim2.new(-0.00572396815, 0, 0.843203187, 0)
  52. TextLabel_2.Size = UDim2.new(0, 299, 0, 25)
  53. TextLabel_2.Font = Enum.Font.SciFi
  54. TextLabel_2.Text = "Troublesome Adventure"
  55. TextLabel_2.TextColor3 = Color3.new(1, 1, 0)
  56. TextLabel_2.TextSize = 22
  57.  
  58. TextButton.MouseButton1Down:connect(function()
  59. if ok then
  60. TextButton.Text = "FARM = OFF"
  61. TextButton.TextColor3 = Color3.new(0.541176, 0, 0)
  62. else
  63. TextButton.Text = "FARM = ON"
  64. TextButton.TextColor3 = Color3.fromRGB(0, 134, 0)
  65. end
  66. ok = not ok
  67. end)
  68.  
  69. mouse.KeyDown:connect(function(key)
  70. if key:byte() == 33 then
  71. Frame.Visible = not Frame.Visible
  72. end
  73. end)
  74.  
  75. while wait() do
  76. if ok then
  77. if player.Character:FindFirstChild("Position_Stand") == nil then
  78. player.Backpack.KeySetup.Aerosmith.Materialize.Stand:FireServer()
  79. elseif player.Character:FindFirstChild("Position_Stand") then
  80. for i,v in pairs(game.Players:GetPlayers()) do
  81. if v.Character and v.Character:FindFirstChild('Humanoid') then
  82. local char = v.Character
  83. if v ~= player and char:FindFirstChild("Max_Stamina") then
  84. if (player.Character.HumanoidRootPart.Position-char.HumanoidRootPart.Position).Magnitude > 250 then
  85. player.Backpack.KeySetup.Aerosmith.RapidFire.Fire:FireServer(1)
  86. elseif (player.Character.HumanoidRootPart.Position-char.HumanoidRootPart.Position).Magnitude < 250 then
  87. repeat wait()
  88. stopfire = true
  89. player.Backpack.KeySetup.Aerosmith.RapidFire.Fire:FireServer(2)
  90. keypress(0x73)
  91. wait(1)
  92. keyrelease(0x73)
  93. until (player.Character.HumanoidRootPart.Position-char.HumanoidRootPart.Position).Magnitude > 250
  94. if stopfire then
  95. break
  96. end
  97. if (player.Character.HumanoidRootPart.Position-char.HumanoidRootPart.Position).Magnitude > 250 then
  98. stopfire = false
  99. end
  100. if not stopfire then
  101. return
  102. end
  103. end
  104. end
  105. end
  106. end
  107. end
  108. end
  109. end
  110.  
  111.  
  112.  
  113. -- reav
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement