Advertisement
Guest User

Untitled

a guest
Mar 23rd, 2019
186
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.49 KB | None | 0 0
  1. -- Farewell Infortality.
  2. -- Version: 2.82
  3. -- Instances:
  4. local ScreenGui = Instance.new("ScreenGui")
  5. local Main = Instance.new("Frame")
  6. local TextLabel = Instance.new("TextLabel")
  7. local Frame = Instance.new("Frame")
  8. local autosell = Instance.new("TextButton")
  9. local autofarm = Instance.new("TextButton")
  10. --Properties:
  11. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  12. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  13.  
  14. Main.Name = "Main"
  15. Main.Parent = ScreenGui
  16. Main.BackgroundColor3 = Color3.new(0.309804, 0.309804, 0.309804)
  17. Main.BorderSizePixel = 0
  18. Main.Position = UDim2.new(0.601420701, 0, 0.466830462, 0)
  19. Main.Size = UDim2.new(0, 217, 0, 99)
  20.  
  21. TextLabel.Parent = Main
  22. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  23. TextLabel.BackgroundTransparency = 78
  24. TextLabel.Position = UDim2.new(0.248847902, 0, 0, 0)
  25. TextLabel.Size = UDim2.new(0, 124, 0, 21)
  26. TextLabel.Font = Enum.Font.SourceSansBold
  27. TextLabel.Text = "Gardening tycoon fucker"
  28. TextLabel.TextColor3 = Color3.new(1, 1, 1)
  29. TextLabel.TextSize = 15
  30.  
  31. Frame.Parent = Main
  32. Frame.BackgroundColor3 = Color3.new(1, 1, 1)
  33. Frame.BorderSizePixel = 0
  34. Frame.Position = UDim2.new(0.108622156, 0, 0.257636607, 0)
  35. Frame.Size = UDim2.new(0, 167, 0, 1)
  36. Main.Active = true
  37. Main.Draggable = true
  38.  
  39. autosell.Name = "autosell"
  40. autosell.Parent = Main
  41. autosell.BackgroundColor3 = Color3.new(0.533333, 0.533333, 0.533333)
  42. autosell.BorderSizePixel = 0
  43. autosell.Position = UDim2.new(0.585880637, 0, 0.359863639, 0)
  44. autosell.Size = UDim2.new(0, 63, 0, 27)
  45. autosell.Font = Enum.Font.SourceSansBold
  46. autosell.Text = "AutoSell"
  47. autosell.TextColor3 = Color3.new(1, 1, 1)
  48. autosell.TextSize = 14
  49.  
  50. autofarm.Name = "autofarm"
  51. autofarm.Parent = Main
  52. autofarm.BackgroundColor3 = Color3.new(0.533333, 0.533333, 0.533333)
  53. autofarm.BorderSizePixel = 0
  54. autofarm.Position = UDim2.new(0.107136048, 0, 0.359863639, 0)
  55. autofarm.Size = UDim2.new(0, 63, 0, 27)
  56. autofarm.Font = Enum.Font.SourceSansBold
  57. autofarm.Text = "AutoFarm"
  58. autofarm.TextColor3 = Color3.new(1, 1, 1)
  59. autofarm.TextSize = 14
  60. -- Scripts:
  61.  
  62. autosell.MouseButton1Click:Connect(function()
  63. while wait (0.5) do
  64. local Remote = game.ReplicatedStorage.Events.Trade['Sell']
  65.  
  66. local Arguments = {
  67. [1] = "l1"
  68. }
  69.  
  70. Remote:FireServer(unpack(Arguments))
  71. end
  72.  
  73. end)
  74.  
  75. autofarm.MouseButton1Click:Connect(function()
  76. while wait (0.5) do
  77. local Remote = game.ReplicatedStorage.Events.Tool['Activate']
  78.  
  79. local Arguments = {
  80.  
  81. }
  82.  
  83. Remote:FireServer(unpack(Arguments))
  84. end
  85. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement