All content on our site is free and will always be free.

Please consider supporting us with disabling your AdBlock software and to gain access to thousands of free content!

Not sure how to disable AdBLock? Follow this tutorial: How to disable AdBlock

Get the Script – (Auto Collect Coin)

The Script – (Auto Collect Coin) code is below. Copy & inject it into the game. Enjoy!

untitled tag game [beta] - Auto Collects Coin
getgenv().enabled = true



game:GetService("RunService").RenderStepped:Connect(function()

   if getgenv().enabled == true then

       for _, v in pairs(game.Workspace:WaitForChild("Coins"):GetChildren()) do

           local hrp = game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart")

           local hum = hrp.Parent:WaitForChild("Humanoid")

           if hum.Health > 0 then

               hrp.CFrame = v.Coin.CFrame

               hum.Jump = true

               repeat

               hrp.CFrame = v.Coin.CFrame

               hum.Jump = true

               wait(0.01)

               until v == nil or v.Parent == nil

           end

       end

   end

end)