Find any script for Roblox

Enter the name of the game or script.

untitled tag game script – (auto collect coin)

Functions: Auto collect coin


Installation guide:Copy the script from the button below.Run any Injector (We recommend KRNL Injector)Install it, insert the script and click executeEnjoy it)

Thank you for using our website
Your script:

				
					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)
				
			
Leave a Comment

Your email address will not be published. Required fields are marked *