Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Script Made by Skira (skira.exe on discord)
- -- This Script can be used in Tsunami Game only. If you get any error please report them to me.
- -- This Script will teleport you to each coin and check for new ones every second, fully auto you only have to execute it once.
- local player = game.Players.LocalPlayer
- local tweenService = game:GetService("TweenService")
- local coinFolder = workspace:WaitForChild("CurrentPointCoins")
- local stopAll = false
- game:GetService("StarterGui"):SetCore("SendNotification", {
- Title = "Auto Coin Farm",
- Text = "Script made by Skira, Enjoy !.",
- Duration = 10
- })
- local function startCoinFarm()
- local coinCollisions = {}
- local lastKnownCoins = {}
- local function updateCoinList()
- coinCollisions = {}
- for _, folder in pairs(coinFolder:GetChildren()) do
- if folder:IsA("Folder") then
- local coinCollision = folder:FindFirstChild("CoinCollision")
- if coinCollision and not lastKnownCoins[coinCollision] then
- table.insert(coinCollisions, coinCollision)
- lastKnownCoins[coinCollision] = true
- end
- end
- end
- end
- while not stopAll do
- updateCoinList()
- for _, coin in ipairs(coinCollisions) do
- local character = player.Character or player.CharacterAdded:Wait()
- character.HumanoidRootPart.CFrame = coin.CFrame
- wait(0.1)
- end
- wait(1)
- end
- end
- startCoinFarm()
Advertisement
Add Comment
Please, Sign In to add comment