Advertisement
Guest User

s

a guest
Feb 14th, 2020
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.33 KB | None | 0 0
  1.  
  2. -- Instances:
  3.  
  4. local ScreenGui = Instance.new("ScreenGui")
  5. local Frame = Instance.new("Frame")
  6. local AutoFarm = Instance.new("TextButton")
  7. local TextButton = Instance.new("TextButton")
  8. local TextButton_2 = Instance.new("TextButton")
  9.  
  10. --Properties:
  11.  
  12. ScreenGui.Parent = game.CoreGui
  13. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  14.  
  15. Frame.Parent = ScreenGui
  16. Frame.Active = true
  17. Frame.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  18. Frame.BackgroundTransparency = 0.600
  19. Frame.Position = UDim2.new(0.373725921, 0, 0.133228838, 0)
  20. Frame.Size = UDim2.new(0, 287, 0, 352)
  21. Frame.Draggable = true
  22.  
  23. AutoFarm.Name = "Auto Farm"
  24. AutoFarm.Parent = Frame
  25. AutoFarm.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  26. AutoFarm.Position = UDim2.new(0.0452961698, 0, 0.264204562, 0)
  27. AutoFarm.Size = UDim2.new(0, 101, 0, 41)
  28. AutoFarm.Text = "ออโต้ ฟาร์ม"
  29. AutoFarm.TextColor3 = Color3.fromRGB(0, 0, 0)
  30. AutoFarm.TextSize = 14.000
  31. AutoFarm.MouseButton1Down:Connect(function()
  32. _G.LULU = true--change to true or false
  33. while _G.LULU do
  34. wait()--change time if you want
  35. local A_1 = "Food"
  36. game:GetService("ReplicatedStorage").Remotes.UseTool:FireServer(A_1)
  37. local A_1 = "Punch"
  38. game:GetService("ReplicatedStorage").Remotes.UseTool:FireServer(A_1)
  39. end
  40. end)
  41.  
  42. TextButton.Name = "เก้บ เบอร์เกอร์"
  43. TextButton.Parent = Frame
  44. TextButton.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  45. TextButton.Position = UDim2.new(0.616724789, 0, 0.264204562, 0)
  46. TextButton.Size = UDim2.new(0, 101, 0, 41)
  47. TextButton.Text = "เก้บ เบอร์เกอร์"
  48. TextButton.TextColor3 = Color3.fromRGB(0, 0, 0)
  49. TextButton.TextSize = 14.000
  50. TextButton.MouseButton1Down:Connect(function()
  51. while wait(1) do
  52.  
  53. local a = game.Workspace:GetDescendants()
  54.  
  55. for i,v in pairs(a) do
  56. if v.Name == "Burger" then
  57. v.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  58. end
  59. end
  60. end
  61. end)
  62.  
  63. TextButton_2.Name = "ปิ"
  64. TextButton_2.Parent = Frame
  65. TextButton_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  66. TextButton_2.Position = UDim2.new(0.790940762, 0, 2.16744169e-08, 0)
  67. TextButton_2.Size = UDim2.new(0, 60, 0, 33)
  68. TextButton_2.Text = "ปิด"
  69. TextButton_2.TextColor3 = Color3.fromRGB(0, 0, 0)
  70. TextButton_2.TextSize = 14.000
  71. TextButton_2.MouseButton1Down:Connect(function()
  72. Frame.Visible = true
  73. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement