Advertisement
Guest User

Untitled

a guest
Jun 22nd, 2018
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.69 KB | None | 0 0
  1. [quote='Iallwaysgetafk' pid='4077471' dateline='1529220185']
  2. Its been a while since i contributed so I decided to do it just right now.
  3. Its really getting annoying seeing all these "Free Skidded Exploits" and expose threads.
  4.  
  5. Ok I know you came for the script not for my toughts of v3rm so here you are:
  6.  
  7. ### Edit - Just made this into a GUI, This is my first GUI so don't blame me if its really bad.
  8. Tried my best.
  9.  
  10.  
  11. [code]-- Objects
  12.  
  13. local ScreenGui = Instance.new("ScreenGui")
  14. local Frame = Instance.new("Frame")
  15. local Frame_2 = Instance.new("Frame")
  16. local TextButton = Instance.new("TextButton")
  17. local TextButton_2 = Instance.new("TextButton")
  18. local TextButton_3 = Instance.new("TextLabel")
  19. local TextButton_4 = Instance.new("TextLabel")
  20. local backpack = Instance.new("TextBox")
  21. local toolname = Instance.new("TextBox")
  22.  
  23. -- Properties
  24.  
  25. ScreenGui.Parent = game.CoreGui
  26.  
  27. Frame.Parent = ScreenGui
  28. Frame.BackgroundColor3 = Color3.new(1, 1, 1)
  29. Frame.BorderSizePixel = 0
  30. Frame.Position = UDim2.new(0.32480818, 0, 0.365612656, 0)
  31. Frame.Size = UDim2.new(0, 356, 0, 274)
  32. Frame.Active = true
  33. Frame.Draggable = true
  34.  
  35. Frame_2.Parent = Frame
  36. Frame_2.BackgroundColor3 = Color3.new(0.184314, 0.470588, 1)
  37. Frame_2.BorderSizePixel = 0
  38. Frame_2.Size = UDim2.new(0, 356, 0, 12)
  39.  
  40. TextButton.Parent = Frame
  41. TextButton.BackgroundColor3 = Color3.new(0.184314, 0.470588, 1)
  42. TextButton.BorderSizePixel = 0
  43. TextButton.Position = UDim2.new(0.219101131, 0, 0.110486895, 0)
  44. TextButton.Size = UDim2.new(0, 200, 0, 42)
  45. TextButton.Font = Enum.Font.SourceSansLight
  46. TextButton.FontSize = Enum.FontSize.Size28
  47. TextButton.Text = "Enable auto farm"
  48. TextButton.TextColor3 = Color3.new(1, 1, 1)
  49. TextButton.TextSize = 30
  50.  
  51. TextButton_2.Parent = Frame
  52. TextButton_2.BackgroundColor3 = Color3.new(0.184314, 0.470588, 1)
  53. TextButton_2.BorderSizePixel = 0
  54. TextButton_2.Position = UDim2.new(0.219101131, 0, 0.332724392, 0)
  55. TextButton_2.Size = UDim2.new(0, 200, 0, 42)
  56. TextButton_2.Font = Enum.Font.SourceSansLight
  57. TextButton_2.FontSize = Enum.FontSize.Size28
  58. TextButton_2.Text = "Disable auto farm"
  59. TextButton_2.TextColor3 = Color3.new(1, 1, 1)
  60. TextButton_2.TextSize = 30
  61.  
  62. TextButton_3.Parent = Frame
  63. TextButton_3.BackgroundTransparency = 1
  64. TextButton_3.Position = UDim2.new(0.219101131, 0, 0.865231323, 0)
  65. TextButton_3.Size = UDim2.new(0, 200, 0, 42)
  66. TextButton_3.Font = Enum.Font.SourceSansLight
  67. TextButton_3.FontSize = Enum.FontSize.Size28
  68. TextButton_3.Text = "Made By Iallwaysgetafk"
  69. TextButton_3.TextColor3 = Color3.new(0, 0, 10)
  70. TextButton_3.TextSize = 25
  71.  
  72. backpack.Parent = Frame
  73. backpack.BackgroundColor3 = Color3.new(0.184314, 0.470588, 1)
  74. backpack.BorderSizePixel = 0
  75. backpack.Position = UDim2.new(0.219101131, 0, 0.532724392, 0)
  76. backpack.Size = UDim2.new(0, 200, 0, 42)
  77. backpack.Font = Enum.Font.SourceSansLight
  78. backpack.FontSize = Enum.FontSize.Size28
  79. backpack.Text = "Backpack size"
  80. backpack.TextColor3 = Color3.new(1, 1, 1)
  81. backpack.TextSize = 30
  82.  
  83. toolname.Parent = Frame
  84. toolname.BackgroundColor3 = Color3.new(0.184314, 0.470588, 1)
  85. toolname.BorderSizePixel = 0
  86. toolname.Position = UDim2.new(0.219101131, 0, 0.732724392, 0)
  87. toolname.Size = UDim2.new(0, 200, 0, 42)
  88. toolname.Font = Enum.Font.SourceSansLight
  89. toolname.FontSize = Enum.FontSize.Size28
  90. toolname.Text = "Tool name here"
  91. toolname.TextColor3 = Color3.new(1, 1, 1)
  92. toolname.TextSize = 30
  93.  
  94.  
  95. --~~Functions~~--
  96. local Event = game:GetService("ReplicatedStorage").Farm
  97. local Event = game:GetService("ReplicatedStorage").Farm
  98. local player = game.Players.LocalPlayer
  99. local sell = CFrame.new(Vector3.new(-65, 24, 118))
  100. local enabled = false
  101. TextButton.MouseButton1Down:connect(function()
  102. if enabled == false then
  103. enabled = true
  104. local Tool = tostring(toolname.Text)
  105. local backpacksize = tonumber(backpack.Text)
  106. if player.bagAmount.Value < backpacksize then
  107. for i, v in next, game:GetService("Workspace").Grass:GetChildren() do
  108. for i,y in pairs(v:GetChildren()) do
  109. if y.Name == "Grass" then
  110. if enabled == true then
  111. if player.bagAmount.Value >= backpacksize then
  112. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = sell
  113. wait(3)
  114. end
  115. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = y.CFrame
  116. wait()
  117. Event:FireServer(y, Tool)
  118. end
  119. end
  120. end
  121. end
  122. wait()
  123. end
  124. end
  125. end)
  126. TextButton_2.MouseButton1Down:connect(function()
  127. enabled = false
  128. print("Disabled")
  129. end)
  130. [/code]
  131.  
  132.  
  133. Instructions are simple edit the ENTER HERE things in the GUI.
  134. and don't execute while having a full backpack.
  135.  
  136. If you have any suggestions how this script could be improved, plese leave it in the comments, because I still want to learn from some of you, proffesionals.
  137.  
  138. Game Link : https://www.roblox.com/games/1356800077/CODE-Yard-Work-Simulator#!/about
  139. [/quote]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement