Advertisement
Guest User

Farm Factory Tycoon Script

a guest
Sep 10th, 2022
2,884
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.86 KB | None | 0 0
  1. INFINITY MONEY SCRIPT:
  2. loadstring(game:HttpGet('https://raw.githubusercontent.com/CreatorProfessional/fft/main/generateinfinitemoney'))()
  3.  
  4. AUTO UPGRADE SCRIPT:
  5. getgenv().yourTycoon = nil
  6. local descendants = game.Workspace.Tycoon:GetDescendants()
  7.  
  8. for index, descendant in pairs(descendants) do
  9. if descendant.Name == "Onwer" then
  10. if descendant.Value == game.Players.LocalPlayer then
  11. getgenv().yourTycoon = descendant.Parent
  12. end
  13. end
  14. end
  15.  
  16. task.spawn(function()
  17. while task.wait() do
  18. if getgenv().yourTycoon ~= nil then
  19. local buttons = getgenv().yourTycoon.Buttons
  20.  
  21. for index, descendant in pairs(buttons:GetDescendants()) do
  22. if descendant:IsA("BasePart") then
  23. descendant.CanCollide = false
  24. descendant.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  25. end
  26. end
  27. end
  28. end
  29. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement