The text below is selected, press Ctrl+C to copy to your clipboard. (⌘+C on Mac) No line numbers will be copied.
Guest
Script – (Auto Collect Coin) script pastebin roblox
By Script – (Auto Collect Coin) on 2024-09-22 08:00 am | Syntax: LUA | Views: 11



New Script | Raw | Show/Hide line no. | Copy text to clipboard
  1. getgenv().enabled = true
  2.  
  3.  
  4.  
  5. game:GetService("RunService").RenderStepped:Connect(function()
  6.  
  7.    if getgenv().enabled == true then
  8.  
  9.        for _, v in pairs(game.Workspace:WaitForChild("Coins"):GetChildren()) do
  10.  
  11.            local hrp = game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart")
  12.  
  13.            local hum = hrp.Parent:WaitForChild("Humanoid")
  14.  
  15.            if hum.Health > 0 then
  16.  
  17.                hrp.CFrame = v.Coin.CFrame
  18.  
  19.                hum.Jump = true
  20.  
  21.                repeat
  22.  
  23.                hrp.CFrame = v.Coin.CFrame
  24.  
  25.                hum.Jump = true
  26.  
  27.                wait(0.01)
  28.  
  29.                until v == nil or v.Parent == nil
  30.  
  31.            end
  32.  
  33.        end
  34.  
  35.    end
  36.  
  37. end)



  • Recent Roblox Scripts