Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Farewell Infortality.
- -- Version: 2.82
- -- Instances:
- local MainGUI = Instance.new("ScreenGui")
- local Board = Instance.new("Frame")
- local MainFrame = Instance.new("Frame")
- local Exit = Instance.new("TextButton")
- local StAFB = Instance.new("TextButton")
- local Cre = Instance.new("TextLabel")
- local Status = Instance.new("TextLabel")
- local SAFB = Instance.new("TextButton")
- --Properties:
- MainGUI.Name = "MainGUI"
- MainGUI.Parent = game.CoreGui
- MainGUI.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
- Board.Name = "Board"
- Board.Parent = MainGUI
- Board.BackgroundColor3 = Color3.new(0.113725, 0.113725, 0.113725)
- Board.BorderColor3 = Color3.new(0, 0, 0)
- Board.Position = UDim2.new(0.118433617, 0, 0.152996838, 0)
- Board.Size = UDim2.new(0, 289, 0, 23)
- Board.Active = true
- Board.Draggable = true
- MainFrame.Name = "MainFrame"
- MainFrame.Parent = Board
- MainFrame.BackgroundColor3 = Color3.new(0.0313726, 0.0313726, 0.0313726)
- MainFrame.BorderSizePixel = 0
- MainFrame.Position = UDim2.new(-0.00228037522, 0, 0.982237935, 0)
- MainFrame.Size = UDim2.new(0, 290, 0, 144)
- MainFrame.Active = true
- Exit.Name = "Exit"
- Exit.Parent = MainFrame
- Exit.BackgroundColor3 = Color3.new(1, 0, 0)
- Exit.BorderSizePixel = 0
- Exit.Position = UDim2.new(0.920689642, 0, -0.159722224, 0)
- Exit.Size = UDim2.new(0, 23, 0, 23)
- Exit.Font = Enum.Font.Code
- Exit.Text = "X"
- Exit.TextColor3 = Color3.new(0, 0, 0)
- Exit.TextScaled = true
- Exit.TextSize = 14
- Exit.TextWrapped = true
- StAFB.Name = "StAFB"
- StAFB.Parent = Board
- StAFB.BackgroundColor3 = Color3.new(0, 0, 0)
- StAFB.BorderColor3 = Color3.new(1, 1, 1)
- StAFB.BorderSizePixel = 4
- StAFB.Position = UDim2.new(0.107266434, 0, 2.60869598, 0)
- StAFB.Size = UDim2.new(0, 107, 0, 50)
- StAFB.Font = Enum.Font.Cartoon
- StAFB.Text = "Start AutoFarm"
- StAFB.TextColor3 = Color3.new(1, 1, 1)
- StAFB.TextScaled = true
- StAFB.TextSize = 14
- StAFB.TextWrapped = true
- Cre.Name = "Cre"
- Cre.Parent = Board
- Cre.BackgroundColor3 = Color3.new(1, 1, 1)
- Cre.BackgroundTransparency = 1
- Cre.Position = UDim2.new(0.0346020758, 0, 0, 0)
- Cre.Size = UDim2.new(0, 151, 0, 23)
- Cre.Font = Enum.Font.Cartoon
- Cre.Text = "AutoFarm By Me"
- Cre.TextColor3 = Color3.new(1, 1, 1)
- Cre.TextScaled = true
- Cre.TextSize = 14
- Cre.TextWrapped = true
- Cre.TextXAlignment = Enum.TextXAlignment.Left
- Status.Name = "Status"
- Status.Parent = Board
- Status.BackgroundColor3 = Color3.new(1, 1, 1)
- Status.BackgroundTransparency = 1
- Status.Position = UDim2.new(0.107266434, 0, 5.56521749, 0)
- Status.Size = UDim2.new(0, 235, 0, 22)
- Status.Font = Enum.Font.Cartoon
- Status.Text = "Status : OFF"
- Status.TextColor3 = Color3.new(1, 1, 1)
- Status.TextScaled = true
- Status.TextSize = 14
- Status.TextWrapped = true
- SAFB.Name = "SAFB"
- SAFB.Parent = Board
- SAFB.BackgroundColor3 = Color3.new(0, 0, 0)
- SAFB.BorderColor3 = Color3.new(1, 1, 1)
- SAFB.BorderSizePixel = 4
- SAFB.Position = UDim2.new(0.557093441, 0, 2.60869598, 0)
- SAFB.Size = UDim2.new(0, 105, 0, 50)
- SAFB.Font = Enum.Font.Cartoon
- SAFB.Text = "Stop AutoFarm"
- SAFB.TextColor3 = Color3.new(1, 1, 1)
- SAFB.TextScaled = true
- SAFB.TextSize = 14
- SAFB.TextWrapped = true
- -- Scripts:
- workspace.Trees.treenew.NailGiver.CanCollide = false
- workspace.Trees.treenew.NailGiver.Transparency = 0.8
- local start = false
- StAFB.MouseButton1Down:connect(function()
- start = true
- if start == true then
- Status.Text = "Status : ON"
- repeat
- workspace.Trees.treenew.NailGiver.CFrame = (game.Players.LocalPlayer.Character.Torso.CFrame)
- wait()
- until start == false
- end
- end)
- SAFB.MouseButton1Down:connect(function()
- Status.Text = "Status : OFF"
- start = false
- end)
- Exit.MouseButton1Down:connect(function()
- MainGUI:Destroy()
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement