Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Subscribe to ZhenX on Youtube
- -- Credits to the Owner
- local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
- local Window = Library.CreateLib("Farm Factory Tycoon", "BloodTheme")
- local Tab = Window:NewTab("Main")
- local Section = Tab:NewSection("OP Script")
- Section:NewButton("Infiniyr Money", ".", function()
- loadstring(game:HttpGet('https://raw.githubusercontent.com/CreatorProfessional/fft/main/generateinfinitemoney'))()
- end)
- Section:NewButton("Auto Obby", ".", function()
- getgenv().autoObbying = true
- while getgenv().autoObbying do
- task.wait()
- local hrpCFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
- local end3 = game:GetService("Workspace").Obby.Obby3.End
- local end2 = game:GetService("Workspace").Obby.Obby2.End
- local end1 = game:GetService("Workspace").Obby.Obby1.End
- end3.Transparency = 1
- end2.Transparency = 1
- end1.Transparency = 1
- end3.CFrame = hrpCFrame
- end2.CFrame = hrpCFrame
- end1.CFrame = hrpCFrame
- end3.CanCollide = false
- end2.CanCollide = false
- end1.CanCollide = false
- end
- end)
- Section:NewButton("Auto Upgrade", ".", function()
- getgenv().yourTycoon = nil
- local descendants = game.Workspace.Tycoon:GetDescendants()
- for index, descendant in pairs(descendants) do
- if descendant.Name == "Onwer" then
- if descendant.Value == game.Players.LocalPlayer then
- getgenv().yourTycoon = descendant.Parent
- end
- end
- end
- task.spawn(function()
- while task.wait() do
- if getgenv().yourTycoon ~= nil then
- local buttons = getgenv().yourTycoon.Buttons
- for index, descendant in pairs(buttons:GetDescendants()) do
- if descendant:IsA("BasePart") then
- descendant.CanCollide = false
- descendant.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
- end
- end
- end
- end
- end)
- end)
Advertisement
Add Comment
Please, Sign In to add comment