Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- INFINITY MONEY SCRIPT:
- loadstring(game:HttpGet('https://raw.githubusercontent.com/CreatorProfessional/fft/main/generateinfinitemoney'))()
- AUTO UPGRADE SCRIPT:
- 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)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement