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-20 08:00 am | Syntax: LUA | Views: 21



New Script | Raw | Show/Hide line no. | Copy text to clipboard
  1.  coroutine.resume(coroutine.create(function()
  2. workspace["Sounds"].CoinPickup:Destroy()
  3. local Coin = game:GetService("ReplicatedStorage").Coin
  4. Coin.Name = "CoinObject" -- \\ This might prevent the crashing.
  5. local function DisableBillboardGuis()
  6. for index,value in pairs(workspace:GetDescendants()) do
  7. if value:IsA("BillboardGui") then
  8. value.Enabled = false
  9. coroutine.wrap(function()
  10. wait(0.05)
  11. if value.Enabled then
  12. value:Destroy()
  13. end
  14. end)()
  15. end
  16. end
  17. end
  18. workspace.DescendantAdded:Connect(function(value)
  19. if value:IsA("BillboardGui") then
  20. value.Enabled = false
  21. coroutine.wrap(function()
  22. wait(0.05)
  23. if value.Enabled then
  24. value:Destroy()
  25. end
  26. end)()
  27. end
  28. end)
  29. _G[game:GetService("Players").LocalPlayer.Name .. "2xCoins"] = true -- \\ EZ LOL
  30. local loopEnabled = false
  31. local function GotoCoins()
  32. if loopEnabled == true then
  33. return false
  34. end
  35. loopEnabled = true
  36. for index,value in pairs(workspace:GetDescendants()) do
  37. if value:IsA("BasePart") and value.Name == "CoinCollectible" then
  38. game:GetService("Players").LocalPlayer.Character:FindFirstChildWhichIsA("Humanoid").RootPart.CFrame = value.CFrame
  39. wait(0.125)
  40. end
  41. end
  42. loopEnabled = false
  43. end
  44. workspace.DescendantAdded:Connect(GotoCoins)
  45. GotoCoins()
  46. end))