The text below is selected, press Ctrl+C to copy to your clipboard. (⌘+C on Mac) No line numbers will be copied.
Guest
Big Brain Simulator script pastebin roblox
By LINK GAME on 2024-09-18 08:00 am | Syntax: LUA | Views: 17



New Script | Raw | Show/Hide line no. | Copy text to clipboard
  1. local coin = game:GetService("Workspace").Coins:GetDescendants()
  2.  
  3. for i, C in pairs(coin) do
  4.     if C:IsA('Part') and C.Name == "Coin" then
  5.         C.Position = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame.Position
  6.     end
  7. end