Thank you for using our website
Your script:
local function getTycoon()
local player = game.Players.LocalPlayer
for _, tycoon in next, workspace.Tycoons:GetChildren() do
if not tycoon.Name:match(player.Name) then continue end
return tycoon
end
return false
end
local tycoon = getTycoon()
if not tycoon then return end
while wait(1) do
local character = game.Players.LocalPlayer.Character
if not character then continue end
firetouchinterest(character.PrimaryPart, tycoon.MainItems.CashButton.ButtonPart, 1)
firetouchinterest(character.PrimaryPart, tycoon.MainItems.CashButton.ButtonPart, 0)
end