Advertisement
SalatBlitz123

Magnet Sim script OP

Mar 11th, 2020
6,354
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.20 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3.2
  3.  
  4. -- Instances:
  5.  
  6. local ScreenGui = Instance.new("ScreenGui")
  7. local Open = Instance.new("TextButton")
  8. local Main = Instance.new("Frame")
  9. local AutoSell = Instance.new("TextButton")
  10. local farm = Instance.new("TextButton")
  11. local AutoRebirth = Instance.new("TextButton")
  12. local Eggs = Instance.new("TextButton")
  13. local Shiny = Instance.new("TextButton")
  14. local By = Instance.new("TextLabel")
  15. local Close = Instance.new("TextButton")
  16.  
  17. --Properties:
  18.  
  19. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  20. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  21.  
  22. Open.Name = "Open"
  23. Open.Parent = ScreenGui
  24. Open.BackgroundColor3 = Color3.fromRGB(116, 255, 239)
  25. Open.Position = UDim2.new(0.938827515, 0, 0.528967261, 0)
  26. Open.Size = UDim2.new(0, 72, 0, 38)
  27. Open.Font = Enum.Font.GothamBlack
  28. Open.Text = "Open"
  29. Open.TextColor3 = Color3.fromRGB(0, 0, 0)
  30. Open.TextSize = 14.000
  31. Open.MouseButton1Down:connect(function()
  32. Open.Visible = false
  33. Main.Visible = true
  34. end)
  35.  
  36. Main.Name = "Main"
  37. Main.Parent = ScreenGui
  38. Main.BackgroundColor3 = Color3.fromRGB(36, 162, 72)
  39. Main.BorderColor3 = Color3.fromRGB(66, 134, 223)
  40. Main.Position = UDim2.new(0.463041633, 0, 0.216624692, 0)
  41. Main.Size = UDim2.new(0, 264, 0, 244)
  42. Main.Visible = false
  43. Main.Draggable = true
  44. Main.Active = true
  45.  
  46. AutoSell.Name = "AutoSell"
  47. AutoSell.Parent = Main
  48. AutoSell.BackgroundColor3 = Color3.fromRGB(55, 255, 52)
  49. AutoSell.Position = UDim2.new(0, 0, 0.192622945, 0)
  50. AutoSell.Size = UDim2.new(0, 84, 0, 50)
  51. AutoSell.Font = Enum.Font.GothamBold
  52. AutoSell.Text = "AutoSell"
  53. AutoSell.TextColor3 = Color3.fromRGB(0, 0, 0)
  54. AutoSell.TextSize = 14.000
  55. AutoSell.MouseButton1Down:connect(function()
  56. _G.on = true
  57. local plr = game.Players.LocalPlayer
  58. local char = plr.Character.HumanoidRootPart
  59.  
  60. while _G.on do
  61. game.Workspace.Rings.Sellx2.CanCollide = false
  62. game.Workspace.Rings.Sellx2.Transparency = 1
  63. game.Workspace.Rings.Sellx2.CFrame = char.CFrame + Vector3.new(0,math.random(-1,1),0)
  64. wait(0.1)
  65. end
  66. end)
  67.  
  68. farm.Name = "farm"
  69. farm.Parent = Main
  70. farm.BackgroundColor3 = Color3.fromRGB(55, 255, 52)
  71. farm.Position = UDim2.new(0.416666657, 0, 0.192622945, 0)
  72. farm.Size = UDim2.new(0, 84, 0, 50)
  73. farm.Font = Enum.Font.GothamBold
  74. farm.Text = "AutoFarm"
  75. farm.TextColor3 = Color3.fromRGB(0, 0, 0)
  76. farm.TextSize = 14.000
  77. farm.MouseButton1Down:connect(function()
  78. local r = game:GetService("ReplicatedStorage").Events.MagnetEvents.requestGrab
  79. local rs = game:GetService('RunService').RenderStepped
  80. while rs:wait() do
  81. tool = "Acid Pulse Dual Long Power Magnets"
  82. for i = 1,5 do
  83. r:FireServer("1040000000", game.ReplicatedStorage.Tools[tool])
  84. end
  85. end
  86. end)
  87.  
  88. AutoRebirth.Name = "AutoRebirth"
  89. AutoRebirth.Parent = Main
  90. AutoRebirth.BackgroundColor3 = Color3.fromRGB(55, 255, 52)
  91. AutoRebirth.Position = UDim2.new(0, 0, 0.483606547, 0)
  92. AutoRebirth.Size = UDim2.new(0, 84, 0, 50)
  93. AutoRebirth.Font = Enum.Font.GothamBold
  94. AutoRebirth.Text = "AutoRebirth"
  95. AutoRebirth.TextColor3 = Color3.fromRGB(0, 0, 0)
  96. AutoRebirth.TextSize = 14.000
  97. AutoRebirth.MouseButton1Down:connect(function()
  98. _G.rebirth = true
  99. local rebirths = 125000--125000,100000,75000,50000,25000,10000,5000,2500,1000,500,250,100,50,25,5,1
  100. while _G.rebirth do
  101. game:GetService("ReplicatedStorage").RebirthEvents.requestRebirth:InvokeServer(rebirths)
  102. wait(10)
  103. end
  104. end)
  105.  
  106. Eggs.Name = "Eggs"
  107. Eggs.Parent = Main
  108. Eggs.BackgroundColor3 = Color3.fromRGB(55, 255, 52)
  109. Eggs.Position = UDim2.new(0.416666657, 0, 0.483606547, 0)
  110. Eggs.Size = UDim2.new(0, 84, 0, 50)
  111. Eggs.Font = Enum.Font.GothamBold
  112. Eggs.Text = "Open Eggs"
  113. Eggs.TextColor3 = Color3.fromRGB(0, 0, 0)
  114. Eggs.TextSize = 14.000
  115. Eggs.MouseButton1Down:connect(function()
  116. _G.egg = true
  117. local r = game:GetService("ReplicatedStorage").PetEvents.requesthatch
  118. local rs = game:GetService('RunService').RenderStepped
  119. while rs:wait() and _G.egg do
  120. r:FireServer("Infernal Egg") --110SX
  121. end
  122. end)
  123.  
  124. Shiny.Name = "Shiny"
  125. Shiny.Parent = Main
  126. Shiny.BackgroundColor3 = Color3.fromRGB(55, 255, 52)
  127. Shiny.Position = UDim2.new(0, 0, 0.795081973, 0)
  128. Shiny.Size = UDim2.new(0, 200, 0, 50)
  129. Shiny.Font = Enum.Font.GothamBold
  130. Shiny.Text = "AutoMake Shiny (not fasted)"
  131. Shiny.TextColor3 = Color3.fromRGB(0, 0, 0)
  132. Shiny.TextSize = 14.000
  133. Shiny.MouseButton1Down:connect(function()
  134. _G.shiny = true
  135. local Shinys = game.ReplicatedStorage.Pets:GetChildren()
  136. while _G.shiny do
  137. wait(0.1)
  138. for i = 1,#Shinys do
  139. wait()
  140. game.ReplicatedStorage.ShinyEvents.requestMakeShiny:FireServer(Shinys[i].Name)
  141. end
  142. end
  143. end)
  144.  
  145. By.Name = "By"
  146. By.Parent = Main
  147. By.BackgroundColor3 = Color3.fromRGB(55, 255, 52)
  148. By.Size = UDim2.new(0, 264, 0, 34)
  149. By.Font = Enum.Font.GothamSemibold
  150. By.Text = "Magnet Simulator GUI by SalatBlitz"
  151. By.TextColor3 = Color3.fromRGB(0, 0, 0)
  152. By.TextSize = 14.000
  153.  
  154. Close.Name = "Close"
  155. Close.Parent = Main
  156. Close.BackgroundColor3 = Color3.fromRGB(55, 255, 52)
  157. Close.Position = UDim2.new(0.784090936, 0, 0.192622945, 0)
  158. Close.Size = UDim2.new(0, 57, 0, 197)
  159. Close.Font = Enum.Font.GothamSemibold
  160. Close.Text = "Close"
  161. Close.TextColor3 = Color3.fromRGB(0, 0, 0)
  162. Close.TextSize = 14.000
  163. Close.MouseButton1Down:connect(function()
  164. Main.Visible = false
  165. Open.Visible = true
  166. end)
  167.  
  168. --! รคlคt#0437
  169. --scripts in vermillion
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement