rrixh

youtuber tykoon - auto kollekt

Jul 27th, 2023
15
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. local function getTycoon()
  2. local player = game.Players.LocalPlayer
  3. for _, tycoon in next, workspace.Tycoons:GetChildren() do
  4. if not tycoon.Name:match(player.Name) then continue end
  5. return tycoon
  6. end
  7.  
  8. return false
  9. end
  10. local tycoon = getTycoon()
  11. if not tycoon then return end
  12.  
  13. while wait(1) do
  14. local character = game.Players.LocalPlayer.Character
  15. if not character then continue end
  16. firetouchinterest(character.PrimaryPart, tycoon.MainItems.CashButton.ButtonPart, 1)
  17. firetouchinterest(character.PrimaryPart, tycoon.MainItems.CashButton.ButtonPart, 0)
  18. end
Add Comment
Please, Sign In to add comment