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



New Script | Raw | Show/Hide line no. | Copy text to clipboard
  1. coroutine.resume(coroutine.create(function() workspace["Sounds"].CoinPickup:Destroy() local Coin = game:GetService("ReplicatedStorage").Coin Coin.Name = "CoinObject" -- \\ This might prevent the crashing. local function DisableBillboardGuis() for index,value in pairs(workspace:GetDescendants()) do if value:IsA("BillboardGui") then value.Enabled = false coroutine.wrap(function() wait(0.05) if value.Enabled then value:Destroy() end end)() end end end workspace.DescendantAdded:Connect(function(value) if value:IsA("BillboardGui") then value.Enabled = false coroutine.wrap(function() wait(0.05) if value.Enabled then value:Destroy() end end)() end end) _G[game:GetService("Players").LocalPlayer.Name .. "2xCoins"] = true -- \\ EZ LOL local loopEnabled = false local function GotoCoins() if loopEnabled == true then return false end loopEnabled = true for index,value in pairs(workspace:GetDescendants()) do if value:IsA("BasePart") and value.Name == "CoinCollectible" then game:GetService("Players").LocalPlayer.Character:FindFirstChildWhichIsA("Humanoid").RootPart.CFrame = value.CFrame wait(0.125) end end loopEnabled = false end workspace.DescendantAdded:Connect(GotoCoins) GotoCoins() end))