Advertisement
Guest User

Untitled

a guest
Sep 20th, 2019
183
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.42 KB | None | 0 0
  1. local MainGui = Instance.new("ScreenGui")
  2. local DragFrame = Instance.new("Frame")
  3. local Frame = Instance.new("Frame")
  4. local TextLabel = Instance.new("TextLabel")
  5. local Coin = Instance.new("TextButton")
  6. local Sell = Instance.new("TextButton")
  7. local Rebirth = Instance.new("TextButton")
  8. local Shiny = Instance.new("TextButton")
  9. local Notif = Instance.new("TextButton")
  10. local Exit = Instance.new("TextButton")
  11. local Mini = Instance.new("TextButton")
  12. local TextLabel_2 = Instance.new("TextLabel")
  13. --Properties:
  14. MainGui.Name = "MainGui"
  15. MainGui.Parent = game.CoreGui
  16. MainGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  17.  
  18. DragFrame.Name = "DragFrame"
  19. DragFrame.Parent = MainGui
  20. DragFrame.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  21. DragFrame.BorderColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
  22. DragFrame.BorderSizePixel = 0
  23. DragFrame.Position = UDim2.new(0.214494869, 0, 0.424817532, 0)
  24. DragFrame.Size = UDim2.new(0, 370, 0, 170)
  25. DragFrame.Active = true
  26. DragFrame.Draggable = true
  27.  
  28. Frame.Parent = DragFrame
  29. Frame.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  30. Frame.BorderColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  31. Frame.BorderSizePixel = 3
  32. Frame.Position = UDim2.new(0.0188679472, 0, 0.268341243, 0)
  33. Frame.Size = UDim2.new(0, 356, 0, 93)
  34.  
  35. TextLabel.Parent = DragFrame
  36. TextLabel.BackgroundColor3 = Color3.new(0.176471, 0.176471, 0.176471)
  37. TextLabel.BorderColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
  38. TextLabel.BorderSizePixel = 0
  39. TextLabel.Size = UDim2.new(0, 370, 0, 38)
  40. TextLabel.Font = Enum.Font.SourceSansBold
  41. TextLabel.Text = " Magnet Simulator Gui"
  42. TextLabel.TextColor3 = Color3.new(1, 1, 1)
  43. TextLabel.TextSize = 27
  44. TextLabel.TextWrapped = true
  45. TextLabel.TextXAlignment = Enum.TextXAlignment.Left
  46.  
  47. Coin.Name = "Coin"
  48. Coin.Parent = DragFrame
  49. Coin.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  50. Coin.BorderColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  51. Coin.BorderSizePixel = 3
  52. Coin.Position = UDim2.new(0.0404312685, 0, 0.327679932, 0)
  53. Coin.Size = UDim2.new(0, 106, 0, 32)
  54. Coin.Font = Enum.Font.SourceSansBold
  55. Coin.Text = "Coin Farm"
  56. Coin.TextColor3 = Color3.new(1, 1, 1)
  57. Coin.TextSize = 20
  58. Coin.MouseButton1Down:connect(function()
  59. local r = game:GetService('ReplicatedStorage').Events.MagnetEvents['requestGrab']
  60. local rs = game:GetService('RunService').RenderStepped
  61.  
  62. tool = "Black Lightning Dual Magnet"
  63. while rs:wait() do
  64. for i = 1,10 do
  65. r:FireServer("7", game.ReplicatedStorage.Tools[tool])
  66. end
  67. end
  68. end)
  69.  
  70. Sell.Name = "Sell"
  71. Sell.Parent = DragFrame
  72. Sell.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  73. Sell.BorderColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  74. Sell.BorderSizePixel = 3
  75. Sell.Position = UDim2.new(0.355936974, 0, 0.327679902, 0)
  76. Sell.Size = UDim2.new(0, 106, 0, 32)
  77. Sell.Font = Enum.Font.SourceSansBold
  78. Sell.Text = "Auto Sell"
  79. Sell.TextColor3 = Color3.new(1, 1, 1)
  80. Sell.TextSize = 20
  81. Sell.MouseButton1Down:connect(function()
  82. _G.on = true
  83. local plr = game.Players.LocalPlayer
  84. local char = plr.Character.HumanoidRootPart
  85.  
  86. while _G.on do
  87. game.Workspace.Rings.Sellx2.CanCollide = false
  88. game.Workspace.Rings.Sellx2.Transparency = 1
  89. game.Workspace.Rings.Sellx2.CFrame = char.CFrame + Vector3.new(0,math.random(-1,1),0)
  90. wait(0.1)
  91. end
  92. end)
  93.  
  94.  
  95. Rebirth.Name = "Rebirth"
  96. Rebirth.Parent = DragFrame
  97. Rebirth.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  98. Rebirth.BorderColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  99. Rebirth.BorderSizePixel = 3
  100. Rebirth.Position = UDim2.new(0.673712611, 0, 0.327679932, 0)
  101. Rebirth.Size = UDim2.new(0, 105, 0, 32)
  102. Rebirth.Font = Enum.Font.SourceSansBold
  103. Rebirth.Text = "Auto Rebirth"
  104. Rebirth.TextColor3 = Color3.new(1, 1, 1)
  105. Rebirth.TextSize = 20
  106. Rebirth.MouseButton1Down:connect(function()
  107. _G.rebirth = true
  108. while _G.rebirth do
  109. wait(0.1)
  110. local rebirths = 1000 --1000,500,250,100,50,25,5,1
  111. game.ReplicatedStorage.RebirthEvents.requestRebirth:FireServer(rebirths)
  112. end
  113. end)
  114.  
  115. Shiny.Name = "Shiny"
  116. Shiny.Parent = DragFrame
  117. Shiny.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  118. Shiny.BorderColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  119. Shiny.BorderSizePixel = 3
  120. Shiny.Position = UDim2.new(0.526895404, 0, 0.583372355, 0)
  121. Shiny.Size = UDim2.new(0, 159, 0, 32)
  122. Shiny.Font = Enum.Font.SourceSansBold
  123. Shiny.Text = "Make All Pets Shiny"
  124. Shiny.TextColor3 = Color3.new(1, 1, 1)
  125. Shiny.TextSize = 20
  126. Shiny.MouseButton1Down:connect(function()
  127. _G.shiny = true
  128. 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"}
  129. while _G.shiny do
  130. wait(0.1)
  131. for i = 1,#Shinys do
  132. wait()
  133. game.ReplicatedStorage.ShinyEvents.requestMakeShiny:FireServer(Shinys[i])
  134. end
  135. end
  136. end)
  137.  
  138. Notif.Name = "Notif"
  139. Notif.Parent = DragFrame
  140. Notif.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  141. Notif.BorderColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  142. Notif.BorderSizePixel = 3
  143. Notif.Position = UDim2.new(0.0404312536, 0, 0.583372355, 0)
  144. Notif.Size = UDim2.new(0, 169, 0, 32)
  145. Notif.Font = Enum.Font.SourceSansBold
  146. Notif.Text = "Remove Notifications"
  147. Notif.TextColor3 = Color3.new(1, 1, 1)
  148. Notif.TextSize = 20
  149. Notif.MouseButton1Down:connect(function()
  150. local plr = game:GetService("Players").LocalPlayer
  151. local screengui = plr.PlayerGui.GameHUD
  152. screengui.EggHandler.Disabled = true
  153. screengui.Notifications.Handler.Disabled = true
  154. screengui.FullBackpack.Handler.Disabled = true
  155. end)
  156.  
  157. Exit.Name = "Exit"
  158. Exit.Parent = DragFrame
  159. Exit.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  160. Exit.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  161. Exit.BorderSizePixel = 4
  162. Exit.Position = UDim2.new(0.914441407, 0, 0.0455300733, 0)
  163. Exit.Size = UDim2.new(0, 24, 0, 23)
  164. Exit.Font = Enum.Font.SourceSansBold
  165. Exit.Text = "X"
  166. Exit.TextColor3 = Color3.new(1, 1, 1)
  167. Exit.TextSize = 22
  168. Exit.TextWrapped = true
  169. Exit.MouseButton1Click:connect(function()
  170. MainGui.Enabled = false
  171. end)
  172.  
  173. Mini.Name = "Mini"
  174. Mini.Parent = DragFrame
  175. Mini.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  176. Mini.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  177. Mini.BorderSizePixel = 4
  178. Mini.Position = UDim2.new(0.815999925, 0, 0.0458817407, 0)
  179. Mini.Size = UDim2.new(0, 24, 0, 23)
  180. Mini.Font = Enum.Font.SourceSansBold
  181. Mini.Text = "-"
  182. Mini.TextColor3 = Color3.new(1, 1, 1)
  183. Mini.TextSize = 35
  184. Mini.TextWrapped = true
  185. Mini.Visible = false
  186.  
  187. TextLabel_2.Parent = DragFrame
  188. TextLabel_2.BackgroundColor3 = Color3.new(1, 1, 1)
  189. TextLabel_2.BackgroundTransparency = 1
  190. TextLabel_2.BorderSizePixel = 0
  191. TextLabel_2.Position = UDim2.new(0.0188679472, 0, 0.870892704, 0)
  192. TextLabel_2.Size = UDim2.new(0, 278, 0, 15)
  193. TextLabel_2.Font = Enum.Font.SourceSansBold
  194. TextLabel_2.Text = "GUI by thejastt & Scripts by iTzSadButNotRad "
  195. TextLabel_2.TextColor3 = Color3.new(1, 1, 1)
  196. TextLabel_2.TextSize = 16
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement