Zhein29

Farm Factory Tycoon Script

Nov 24th, 2022
1,673
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.78 KB | None | 0 0
  1. -- Subscribe to ZhenX on Youtube
  2. -- Credits to the Owner
  3.  
  4. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
  5. local Window = Library.CreateLib("Farm Factory Tycoon", "BloodTheme")
  6. local Tab = Window:NewTab("Main")
  7. local Section = Tab:NewSection("OP Script")
  8. Section:NewButton("Infiniyr Money", ".", function()
  9. loadstring(game:HttpGet('https://raw.githubusercontent.com/CreatorProfessional/fft/main/generateinfinitemoney'))()
  10. end)
  11. Section:NewButton("Auto Obby", ".", function()
  12. getgenv().autoObbying = true
  13. while getgenv().autoObbying do
  14. task.wait()
  15. local hrpCFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  16. local end3 = game:GetService("Workspace").Obby.Obby3.End
  17. local end2 = game:GetService("Workspace").Obby.Obby2.End
  18. local end1 = game:GetService("Workspace").Obby.Obby1.End
  19. end3.Transparency = 1
  20. end2.Transparency = 1
  21. end1.Transparency = 1
  22. end3.CFrame = hrpCFrame
  23. end2.CFrame = hrpCFrame
  24. end1.CFrame = hrpCFrame
  25. end3.CanCollide = false
  26. end2.CanCollide = false
  27. end1.CanCollide = false
  28. end
  29. end)
  30. Section:NewButton("Auto Upgrade", ".", function()
  31. getgenv().yourTycoon = nil
  32. local descendants = game.Workspace.Tycoon:GetDescendants()
  33. for index, descendant in pairs(descendants) do
  34. if descendant.Name == "Onwer" then
  35. if descendant.Value == game.Players.LocalPlayer then
  36. getgenv().yourTycoon = descendant.Parent
  37. end
  38. end
  39. end
  40. task.spawn(function()
  41. while task.wait() do
  42. if getgenv().yourTycoon ~= nil then
  43. local buttons = getgenv().yourTycoon.Buttons
  44. for index, descendant in pairs(buttons:GetDescendants()) do
  45. if descendant:IsA("BasePart") then
  46. descendant.CanCollide = false
  47. descendant.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  48. end
  49. end
  50. end
  51. end
  52. end)
  53. end)
  54.  
Advertisement
Add Comment
Please, Sign In to add comment