Advertisement
oliverj343

magnet simulator script

Oct 10th, 2019
244
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.34 KB | None | 0 0
  1. Remove really annoying notifications (Coins, full backpack and stuff):
  2. Code:
  3. local plr = game:GetService("Players").LocalPlayer
  4. local screengui = plr.PlayerGui.GameHUD
  5. screengui.EggHandler.Disabled = true
  6. screengui.Notifications.Handler.Disabled = true
  7. screengui.FullBackpack.Handler.Disabled = true
  8.  
  9. Auto Sells coins:
  10. Code:
  11. _G.on = true
  12. local plr = game.Players.LocalPlayer
  13. local char = plr.Character.HumanoidRootPart
  14.  
  15. while _G.on do
  16. game.Workspace.Rings.Sellx2.CanCollide = false
  17. game.Workspace.Rings.Sellx2.Transparency = 1
  18. game.Workspace.Rings.Sellx2.CFrame = char.CFrame + Vector3.new(0,math.random(-1,1),0)
  19. wait(0.1)
  20. end
  21.  
  22. A less obvious Auto Sell coins script (Make it so your money doesn't go up and down as fast, less obvious you're hacking sorta thing) :
  23. Code:
  24. _G.sell = true
  25. local plr = game.Players.LocalPlayer
  26. local char = plr.Character.HumanoidRootPart
  27. local ring = game.Workspace.Rings.Sellx2
  28. ring.CanCollide = false
  29. ring.Transparency = 1
  30.  
  31. while _G.sell do
  32. wait(0.1)
  33. if plr.PlayerGui.GameHUD.Stats.Amount.TextLabel.Text == "9.5T/9.5T" then -- CHANGE THE "9.5T/9.5T" TO YOUR MAXIMUM BACKPACK
  34. ring.CFrame = char.CFrame + Vector3.new(0,math.random(-1,1),0)
  35. end
  36. end
  37.  
  38. Coin Farm:
  39. Code:
  40. local r = game:GetService('ReplicatedStorage').Events.MagnetEvents['requestGrab']
  41. local rs = game:GetService('RunService').RenderStepped
  42.  
  43. tool = "Bat Dual Long Power Magnets"
  44. while rs:wait() do
  45. for i = 1,10 do
  46. r:FireServer("1100000", game.ReplicatedStorage.Tools[tool])
  47. end
  48. end
  49.  
  50.  
  51. Auto Rebirth (Wouldn't abuse this as you have a high chance to get a ban):
  52. Code:
  53. _G.rebirth = true
  54. while _G.rebirth do
  55. wait(10) --You can change the delay but be careful of getting yourself a ban!!
  56. local rebirths = 5000 --5000,2500,1000,500,250,100,50,25,5,1
  57. game.ReplicatedStorage.RebirthEvents.requestRebirth:FireServer(rebirths)
  58. end
  59.  
  60. Open eggs:
  61. Code:
  62. _G.egg = true
  63. local r = game:GetService("ReplicatedStorage").PetEvents.requesthatch
  64. local rs = game:GetService('RunService').RenderStepped
  65. while rs:wait() and _G.egg do
  66. r:FireServer("Dragon Egg") --1Qd
  67. end
  68.  
  69. Make all your pets into shiny (Not the fastest):
  70. Code:
  71. _G.shiny = true
  72. local Shinys = {"Three-Headed Demon", "Mad Demon", "Fallen Bird", "Demonic Bird", "Cat Demon", "Golden Dominus", "Space Dominus", "Flame Dominus", "Frost Dominus", "Spirit Dominus", "Super Bear", "Bat Bear", "Flashy Bear", "Storm Bear", "Captain Bear", "Cursed Wolf", "Angel Wolf", "Sanic", "Ogre", "Nyan Cat", "Doge", "MLG Bear", "Rich Bear", "Noob", "Fancy Bear", "Ice Wolf", "Ghost Wolf", "Galaxy Wolf", "Galaxy Bear", "Spirit Bear", "Moon Bear", "Crystal Fox", "Magnetite Wolf", "Winged Overseer", "Overseer Wolf", "Wizard Overseer", "Three-Headed Overseer", "Overseer Overlord", "Praefectus Overseer", "Lava Wolf", "Magma Gentleman", "Three-Headed Magma Wolf", "Hooded Fire Lord", "Lord of the Magma", "Gold Tycoonist", "Sir Rich McMeowington", "Bling", "Sir Rich McMoneyston", "Rich Blower","Goofbot", "Toastbot", "Coolbot", "Bucketoid", "Beatbox Robot", "Spring, the Earth Dragon", "Fafnir, the Fire Dragon", "Gandalf, the Wise Dragon", "Emeraldwrath Dragon", "Rubywrath Dragon", "Aer Draco", "Runic Dragon"}
  73. while _G.shiny do
  74. wait(0.1)
  75. for i = 1,#Shinys do
  76. wait()
  77. game.ReplicatedStorage.ShinyEvents.requestMakeShiny:FireServer(Shinys[i])
  78. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement