SK1R4_script

Tsunami Game Coin Auto Farm

Jan 29th, 2025
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.52 KB | Gaming | 0 0
  1. -- Script Made by Skira (skira.exe on discord)
  2. -- This Script can be used in Tsunami Game only. If you get any error please report them to me.
  3. -- This Script will teleport you to each coin and check for new ones every second, fully auto you only have to execute it once.
  4.  
  5. local player = game.Players.LocalPlayer
  6. local tweenService = game:GetService("TweenService")
  7. local coinFolder = workspace:WaitForChild("CurrentPointCoins")
  8. local stopAll = false
  9.  
  10. game:GetService("StarterGui"):SetCore("SendNotification", {
  11. Title = "Auto Coin Farm",
  12. Text = "Script made by Skira, Enjoy !.",
  13. Duration = 10
  14. })
  15.  
  16. local function startCoinFarm()
  17. local coinCollisions = {}
  18. local lastKnownCoins = {}
  19.  
  20. local function updateCoinList()
  21. coinCollisions = {}
  22. for _, folder in pairs(coinFolder:GetChildren()) do
  23. if folder:IsA("Folder") then
  24. local coinCollision = folder:FindFirstChild("CoinCollision")
  25. if coinCollision and not lastKnownCoins[coinCollision] then
  26. table.insert(coinCollisions, coinCollision)
  27. lastKnownCoins[coinCollision] = true
  28. end
  29. end
  30. end
  31. end
  32.  
  33. while not stopAll do
  34. updateCoinList()
  35. for _, coin in ipairs(coinCollisions) do
  36. local character = player.Character or player.CharacterAdded:Wait()
  37. character.HumanoidRootPart.CFrame = coin.CFrame
  38. wait(0.1)
  39. end
  40. wait(1)
  41. end
  42. end
  43.  
  44. startCoinFarm()
Advertisement
Add Comment
Please, Sign In to add comment