Advertisement
cortesjoren

hehe XD magnet sim

Jan 18th, 2019
556
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.23 KB | None | 0 0
  1. So all this script does is removes the open egg animation, Removes the "###+Coins" all over your screen and removes the "Full Backpack" GUI from showing. Its pretty op if you use it with some other scripts. (Mine)
  2. I don't actually know how this wasn't made before as its so simple but so OP as you don't lag like crazy when you open eggs or farm coins.
  3.  
  4. Code:
  5. local plr = game:GetService("Players").LocalPlayer
  6. local screengui = plr.PlayerGui.GameHUD
  7. screengui.EggHandler.Disabled = true
  8. screengui.Notifications.Handler.Disabled = true
  9. screengui.FullBackpack.Handler.Disabled = true
  10. screengui.HatHandler.Disabled = true
  11.  
  12.  
  13. Next, You probably would want to use a farm script so here is the best one i currently have found is this. I'm unsure who the original owner is though as i was sent this by someone on discord.
  14. You should Spam execute and have 5 Shiny Bat Bear's equipped for this to work the best.
  15. IF I am correct the owner is: https://v3rmillion.net/showthread.php?tid=750623
  16.  
  17. Code:
  18. local Remote = game.ReplicatedStorage.Events.MagnetEvents['requestGrab']
  19. local Arguments = {
  20. [1] = "72000",
  21. [2] = game.ReplicatedStorage.Tools["Galaxy Rebirth Magnet"]
  22. }
  23. while wait() do
  24. Remote:FireServer(unpack(Arguments))
  25. end
  26.  
  27.  
  28. Now you're farming like crazy, You want to sell the coins so the best one i have found to work is probably this one:
  29. Credits to: ZFrogger
  30.  
  31. Code:
  32. while true do
  33. game:GetService('RunService').Stepped:wait()
  34. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(136.73712158203, 13.362461090088, -52.908908843994)
  35. wait()
  36. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(136.83712158203, 13.362461090088, -52.908908843994)
  37. wait()
  38. end
  39.  
  40. Or you can use this sell script that brings the sell part to you so you can still move around while selling:
  41. Code:
  42. _G.on = true
  43. local plr = game.Players.LocalPlayer
  44. local char = plr.Character.HumanoidRootPart
  45.  
  46. while _G.on do
  47. game.Workspace.Rings.Sell.CanCollide = false
  48. game.Workspace.Rings.Sell.CFrame = char.CFrame + Vector3.new(0,math.random(-1,1),0)
  49. wait(0.1)
  50. end
  51.  
  52. Now, You would want some rebirths from this. Rebirth script is super easy to get the remote for even i was able to do this:
  53. !!! 1 Rebirths at a time !!!
  54.  
  55. Code:
  56. while true do
  57. wait() --Change to nothing for FAST rebirths, 5 - 10 for lots of rebirth tokens and like 20 MAX for HIGH rebirth tokens but DO NOT Let your money pass around 7.5E Money. It will go to negatives.
  58. game:GetService("ReplicatedStorage").RebirthEvents.requestRebirth:FireServer()
  59. end
  60.  
  61. !!! 100 Rebirths at a time !!!
  62.  
  63. Code:
  64. while true do
  65. wait() --Change to nothing for FAST rebirths, 5 - 10 for lots of rebirth tokens and like 20 MAX for HIGH rebirth tokens but DO NOT Let your money pass around 7.5E Money. It will go to negatives.
  66. game:GetService("ReplicatedStorage").RebirthEvents.requestRebirthBoard:FireServer("5_100Rebirths")
  67. end
  68.  
  69. To stop all these just go and rejoin the game.
  70.  
  71.  
  72. --To open shops--
  73.  
  74. Chest Shop:
  75. Code:
  76. game.Players.LocalPlayer.PlayerGui.ChestShop.All.Visible = true
  77.  
  78. Rebirth Shop:
  79.  
  80. Code:
  81. game.Players.LocalPlayer.PlayerGui.RebirthShop.Open.Value = true
  82.  
  83. Backpack Shop:
  84.  
  85. Code:
  86. game.Players.LocalPlayer.PlayerGui.BackpackShop.Open.Value = true
  87.  
  88. Magnet Shop:
  89.  
  90. Code:
  91. game.Players.LocalPlayer.PlayerGui.Shop.Open.Value = true
  92.  
  93. Open shops and remove animations with a GUI ANYWHERE You can use this that i made Tongue
  94.  
  95. Code:
  96. loadstring(game:HttpGet("https://pastebin.com/raw/FdrWXcf7", true))()
  97.  
  98. Now you have a lot of rebirths you can just enjoy being able to flex on your ROBLOX nerd mates that you have so many more rebirths than they will ever have.
  99.  
  100. Alternatively you might want to get some pets with your Billions / Trillions of rebirth tokens so you can use either one of these:
  101. I made a GUI that has opening eggs and more!, You can Make it GREEN For it to be ON and RED for it to be OFF. The first button set it to GREEN if you WANT animations, RED if you DON'T want animations.
  102. Code:
  103. loadstring(game:HttpGet("https://pastebin.com/raw/FdrWXcf7", true))()
  104.  
  105. You can also SPAM execute the remote for it:
  106.  
  107. Code:
  108. while true do
  109. wait()
  110. game:GetService("ReplicatedStorage").PetEvents.requesthatch:FireServer("Super Egg") --Change "Super Egg" To whatever egg you want, "Meme Egg", "Common Egg", "Mythical Egg" etc...
  111. end
  112.  
  113.  
  114. Spam open hat crate (There's a fucking coldown................................):
  115.  
  116. Code:
  117. while wait() do
  118. game:GetService("ReplicatedStorage").HatEvents.purchaseCrate:FireServer("Dominus") --Change " "Dominus" " to whatever you want.
  119. end
  120.  
  121. Open all the eggs (You can also just take out each one and use that):
  122. Code:
  123. while wait() do
  124. game:GetService("ReplicatedStorage").HatEvents.purchaseCrate:FireServer("Dominus")
  125. game:GetService("ReplicatedStorage").HatEvents.purchaseCrate:FireServer("Super Rich")
  126. game:GetService("ReplicatedStorage").HatEvents.purchaseCrate:FireServer("Sparkly")
  127. game:GetService("ReplicatedStorage").HatEvents.purchaseCrate:FireServer("Rich")
  128. game:GetService("ReplicatedStorage").HatEvents.purchaseCrate:FireServer("Legendary")
  129. game:GetService("ReplicatedStorage").HatEvents.purchaseCrate:FireServer("Sparkly")
  130. game:GetService("ReplicatedStorage").HatEvents.purchaseCrate:FireServer("Rare")
  131. game:GetService("ReplicatedStorage").HatEvents.purchaseCrate:FireServer("Common")
  132. game:GetService("ReplicatedStorage").HatEvents.purchaseCrate:FireServer("UnCommon")
  133. end
  134.  
  135. You have alot of pets now aye? You will want them to be Shiny as so just use this:
  136. Change ("PET NON SHINY NAME") To what ever pet you want to make shiny (YOU MUST OWN 10+ OF THE PET FOR IT TO BE SHINY)
  137.  
  138. Code:
  139. for i = 1,100 do
  140. game:GetService("ReplicatedStorage").ShinyEvents.requestMakeShiny:FireServer("Super Bear")
  141. game:GetService("ReplicatedStorage").ShinyEvents.requestMakeShiny:FireServer("Bat Bear")
  142. game:GetService("ReplicatedStorage").ShinyEvents.requestMakeShiny:FireServer("Flashy Bear")
  143. game:GetService("ReplicatedStorage").ShinyEvents.requestMakeShiny:FireServer("Storm Bear")
  144. game:GetService("ReplicatedStorage").ShinyEvents.requestMakeShiny:FireServer("Captain Bear")
  145. game:GetService("ReplicatedStorage").ShinyEvents.requestMakeShiny:FireServer("Angel Wolf")
  146. game:GetService("ReplicatedStorage").ShinyEvents.requestMakeShiny:FireServer("Sanic")
  147. game:GetService("ReplicatedStorage").ShinyEvents.requestMakeShiny:FireServer("Cursed Wolf")
  148. game:GetService("ReplicatedStorage").ShinyEvents.requestMakeShiny:FireServer("Rich Bear")
  149. end
  150.  
  151.  
  152. Now. You might of opened some shit eggs like common or uncommon while testing these scripts, Or just have pets you won't want so you can use this to delete them(Ones i think personally are shit):
  153.  
  154. Code:
  155. _G.delete = true
  156. loadstring(game:HttpGet("https://pastebin.com/raw/gGZGeVr8", true))()
  157.  
  158. Pretty Useless script but still. I know its been released before but i just made this anyway. It just unlocks all the paid areas.
  159.  
  160. Code:
  161. game:GetService("ReplicatedStorage").Events.ShopEvents.buyDoor:FireServer(5000)
  162. game:GetService("ReplicatedStorage").Events.ShopEvents.buyDoor:FireServer(50000)
  163. game:GetService("ReplicatedStorage").Events.ShopEvents.buyDoor:FireServer(500000)
  164. game:GetService("ReplicatedStorage").Events.ShopEvents.buyDoor:FireServer(1500000)
  165. game:GetService("ReplicatedStorage").Events.ShopEvents.buyDoor:FireServer(40000000)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement