Advertisement
FineScriptsRoblox

The Best SCRIPT for Magnet Simulator Update 21

Oct 10th, 2019
1,224
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.13 KB | None | 0 0
  1. Remove really annoying notifications (Coins, full backpack and stuff):
  2. Code:
  3. --true = off
  4. --false = on
  5. local plr = game:GetService("Players").LocalPlayer
  6. local screengui = plr.PlayerGui.GameHUDNew
  7. screengui.EggHandler.Disabled = true --Egg hatch
  8. screengui.Notifications.Handler.Disabled = true --Notifications for collecting coins
  9. screengui.FullBackpack.Handler.Disabled = true --No full backpack GUI every second
  10.  
  11. Auto Sells coins:
  12. Code:
  13. _G.on = true
  14. local plr = game.Players.LocalPlayer
  15. local char = plr.Character.HumanoidRootPart
  16.  
  17. while _G.on do
  18. game.Workspace.Rings.Sellx2.CanCollide = false
  19. game.Workspace.Rings.Sellx2.Transparency = 1
  20. game.Workspace.Rings.Sellx2.CFrame = char.CFrame + Vector3.new(0,math.random(-1,1),0)
  21. wait(0.1)
  22. end
  23.  
  24.  
  25. Auto farm coins:
  26. Code:
  27. local r = game:GetService("ReplicatedStorage").Events.MagnetEvents.requestGrab
  28. local rs = game:GetService('RunService').RenderStepped
  29. while rs:wait() do
  30. tool = "Holographic Dual Power Magnets"
  31. for i = 1,5 do
  32. r:FireServer("190000000", game.ReplicatedStorage.Tools[tool])
  33. end
  34. end
  35.  
  36.  
  37. They also added 50k Rebirth:
  38. Code:
  39. _G.rebirth = true
  40. local rebirths = 50000 --50000,25000,10000,5000,2500,1000,500,250,100,50,25,5,1
  41. while _G.rebirth do
  42. wait(10)
  43. game.ReplicatedStorage.RebirthEvents.requestRebirth:FireServer(rebirths)
  44. end
  45.  
  46. For those who craft Shiny or Omega manually and dont want to see those annoying notifications:
  47. Code:
  48. local Holder = game.Players.LocalPlayer.PlayerGui.GameHUDNew.ConnectedBackgrounds.Shiny.Holder
  49.  
  50. Holder.ChildAdded:Connect(function(Child)
  51. if Child.Name == "Active" then
  52. Child.Visible = false
  53. end
  54. end)
  55.  
  56.  
  57. Open eggs:
  58. Code:
  59. _G.egg = true
  60. local r = game:GetService("ReplicatedStorage").PetEvents.requesthatch
  61. local rs = game:GetService('RunService').RenderStepped
  62. while rs:wait() and _G.egg do
  63. r:FireServer("Skeleton Egg") --600Qn
  64. end
  65.  
  66. Make all your pets into shiny [Auto updating] (Not the fastest):
  67. Code:
  68. _G.shiny = true
  69. local Shinys = game.ReplicatedStorage.Pets:GetChildren()
  70. while _G.shiny do
  71. wait(0.1)
  72. for i = 1,#Shinys do
  73. wait()
  74. game.ReplicatedStorage.ShinyEvents.requestMakeShiny:FireServer(Shinys[i].Name)
  75. end
  76. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement