Advertisement
AALTTz

weee

Apr 7th, 2023
19
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.14 KB | None | 0 0
  1. ScreenGui = Instance.new("ScreenGui")
  2. main = Instance.new("Frame")
  3. TextLabel = Instance.new("TextLabel")
  4. on = Instance.new("TextButton")
  5. off = Instance.new("TextButton")
  6.  
  7. ScreenGui.Parent = game.CoreGui
  8.  
  9. main.Name = "main"
  10. main.Parent = ScreenGui
  11. main.BackgroundColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  12. main.BorderColor3 = Color3.new(0.243137, 0.243137, 0.243137)
  13. main.Position = UDim2.new(0.779569924, 0, 0.705601931, 0)
  14. main.Size = UDim2.new(0, 219, 0, 163)
  15. main.Active = true
  16. main.Draggable = true
  17.  
  18. TextLabel.Parent = main
  19. TextLabel.BackgroundColor3 = Color3.new(0.239216, 0.239216, 0.239216)
  20. TextLabel.BorderColor3 = Color3.new(0.243137, 0.243137, 0.243137)
  21. TextLabel.Size = UDim2.new(0, 219, 0, 50)
  22. TextLabel.Font = Enum.Font.SourceSansBold
  23. TextLabel.FontSize = Enum.FontSize.Size24
  24. TextLabel.Text = "Auto Farm"
  25. TextLabel.TextColor3 = Color3.new(1, 1, 1)
  26. TextLabel.TextSize = 24
  27. TextLabel.TextWrapped = true
  28.  
  29. on.Name = "on"
  30. on.Parent = main
  31. on.BackgroundColor3 = Color3.new(0.239216, 0.239216, 0.239216)
  32. on.BorderColor3 = Color3.new(0.615686, 0.615686, 0.615686)
  33. on.Position = UDim2.new(0.219178081, 0, 0.361963183, 0)
  34. on.Size = UDim2.new(0, 122, 0, 44)
  35. on.Font = Enum.Font.SourceSansBold
  36. on.FontSize = Enum.FontSize.Size24
  37. on.Text = "On"
  38. on.TextColor3 = Color3.new(1, 1, 1)
  39. on.TextSize = 20
  40. on.TextStrokeTransparency = 0
  41. on.MouseButton1Down:connect(function()
  42. _G.toggled = true
  43. while _G.toggled == true do
  44. wait(0.25)
  45. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-42.1867104, 4, -10.0159426)
  46. wait(0.25)
  47. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(51.8459854, 4, -7.64399719)
  48. wait(0.25)
  49. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(49.0132484, 4, 12.9164495)
  50. wait(0.25)
  51. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-49.2372742, 10.0727692, 22.5755386)
  52. wait(0.25)
  53. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(22.6320515, 15.2083225, -22.8036976)
  54. wait(0.25)
  55. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(54.5018234, 4, 12.9243202)
  56. wait(0.25)
  57. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-50.9209137, 4, 23.7264462)
  58. wait(0.25)
  59. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-51.7601433, 9.02024555, 24.8675385)
  60. wait(0.25)
  61. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(54, 4, 3)
  62. wait(0.25)
  63. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-45.7298431, 4, 14.7902403)
  64. wait(0.25)
  65. end
  66. end)
  67.  
  68. off.Name = "off"
  69. off.Parent = main
  70. off.BackgroundColor3 = Color3.new(0.239216, 0.239216, 0.239216)
  71. off.BorderColor3 = Color3.new(0.615686, 0.615686, 0.615686)
  72. off.Position = UDim2.new(0.219178095, 0, 0.674846649, 0)
  73. off.Size = UDim2.new(0, 122, 0, 44)
  74. off.Font = Enum.Font.SourceSansBold
  75. off.FontSize = Enum.FontSize.Size24
  76. off.Text = "Off"
  77. off.TextColor3 = Color3.new(1, 1, 1)
  78. off.TextSize = 20
  79. off.TextStrokeTransparency = 0
  80. off.MouseButton1Down:connect(function()
  81. _G.toggled = false
  82. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement