Advertisement
Guest User

Untitled

a guest
Sep 22nd, 2019
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.15 KB | None | 0 0
  1. local MS = Instance.new("ScreenGui")
  2. local MainFrame = Instance.new("Frame")
  3. local Title = Instance.new("TextLabel")
  4. local Close = Instance.new("TextButton")
  5. local Frame = Instance.new("Frame")
  6. local Eggs = Instance.new("TextButton")
  7. local Farm = Instance.new("TextButton")
  8. local Space = Instance.new("TextButton")
  9. local Sell = Instance.new("TextButton")
  10. local Shiny = Instance.new("TextButton")
  11. local EggName = Instance.new("TextBox")
  12. local Rebirth = Instance.new("TextButton")
  13. local Mini = Instance.new("TextButton")
  14.  
  15. --Properties:
  16.  
  17. MS.Name = "MS"
  18. MS.Parent = game.CoreGui
  19.  
  20. MainFrame.Name = "MainFrame"
  21. MainFrame.Parent = MS
  22. MainFrame.Active = true
  23. MainFrame.BackgroundColor3 = Color3.new(0.22, 0.22, 0.22)
  24. MainFrame.BackgroundTransparency = 0
  25. MainFrame.BorderColor3 = Color3.new(1, 1, 1)
  26. MainFrame.Position = UDim2.new(0, 325, 0, 125)
  27. MainFrame.Selectable = true
  28. MainFrame.Draggable = true
  29. MainFrame.Size = UDim2.new(0, 175, 0, 25)
  30.  
  31. Title.Name = "Title"
  32. Title.Parent = MainFrame
  33. Title.BackgroundColor3 = Color3.new(1, 1, 1)
  34. Title.BackgroundTransparency = 1
  35. Title.Position = UDim2.new(0, 15, 0, 0)
  36. Title.Size = UDim2.new(0, 145, 0, 25)
  37. Title.Font = Enum.Font.GothamBold
  38. Title.Text = "Magnet Simulator"
  39. Title.TextColor3 = Color3.new(1, 1, 1)
  40. Title.TextSize = 14
  41. Title.TextScaled = true
  42.  
  43. Close.Name = "Close"
  44. Close.Parent = MainFrame
  45. Close.BackgroundColor3 = Color3.new(1, 1, 1)
  46. Close.BackgroundTransparency = 1
  47. Close.BorderSizePixel = 0
  48. Close.Position = UDim2.new(0, 155, 0, 0)
  49. Close.Size = UDim2.new(0, 20, 0, 20)
  50. Close.Font = Enum.Font.GothamBold
  51. Close.Text = "X"
  52. Close.TextColor3 = Color3.new(1, 0, 0)
  53. Close.TextSize = 14
  54.  
  55. Frame.Parent = MainFrame
  56. Frame.BackgroundColor3 = Color3.new(0, 0, 0)
  57. Frame.BackgroundTransparency = 0.5
  58. Frame.BorderColor3 = Color3.new(1, 1, 1)
  59. Frame.Position = UDim2.new(0, 0, 0, 25)
  60. Frame.Size = UDim2.new(0, 175, 0, 120)
  61.  
  62.  
  63.  
  64. Eggs.Name = "Eggs"
  65. Eggs.Parent = Frame
  66. Eggs.BackgroundColor3 = Color3.new(0, 0, 0)
  67. Eggs.BackgroundTransparency = 0.5
  68. Eggs.BorderColor3 = Color3.new(1, 1, 1)
  69. Eggs.Position = UDim2.new(0, 10, 0, 70)
  70. Eggs.Size = UDim2.new(0, 155, 0, 20)
  71. Eggs.Font = Enum.Font.GothamBold
  72. Eggs.Text = "Open Eggs: OFF"
  73. Eggs.TextColor3 = Color3.new(1, 0, 0)
  74. Eggs.TextSize = 14
  75. Eggs.TextScaled = true
  76.  
  77. Farm.Name = "Farm"
  78. Farm.Parent = Frame
  79. Farm.BackgroundColor3 = Color3.new(0, 0, 0)
  80. Farm.BackgroundTransparency = 0.5
  81. Farm.BorderColor3 = Color3.new(1, 1, 1)
  82. Farm.Position = UDim2.new(0, 10, 0, 10)
  83. Farm.Size = UDim2.new(0, 75, 0, 20)
  84. Farm.Font = Enum.Font.GothamBold
  85. Farm.Text = "Autofarm: OFF"
  86. Farm.TextColor3 = Color3.new(1, 0, 0)
  87. Farm.TextSize = 14
  88. Farm.TextScaled = true
  89.  
  90. Space.Name = "Space"
  91. Space.Parent = Frame
  92. Space.BackgroundColor3 = Color3.new(0, 0, 0)
  93. Space.BackgroundTransparency = 0.5
  94. Space.BorderColor3 = Color3.new(1, 1, 1)
  95. Space.Position = UDim2.new(0, 10, 0, 30)
  96. Space.Size = UDim2.new(0, 75, 0, 20)
  97. Space.Font = Enum.Font.GothamBold
  98. Space.Text = "Space: OFF"
  99. Space.TextColor3 = Color3.new(1, 0, 0)
  100. Space.TextSize = 14
  101. Space.TextScaled = true
  102.  
  103. Sell.Name = "Sell"
  104. Sell.Parent = Frame
  105. Sell.BackgroundColor3 = Color3.new(0, 0, 0)
  106. Sell.BackgroundTransparency = 0.5
  107. Sell.BorderColor3 = Color3.new(1, 1, 1)
  108. Sell.Position = UDim2.new(0, 90, 0, 10)
  109. Sell.Size = UDim2.new(0, 75, 0, 20)
  110. Sell.Font = Enum.Font.GothamBold
  111. Sell.Text = "Sell: OFF"
  112. Sell.TextColor3 = Color3.new(1, 0, 0)
  113. Sell.TextSize = 14
  114. Sell.TextScaled = true
  115.  
  116. Shiny.Name = "Shiny"
  117. Shiny.Parent = Frame
  118. Shiny.BackgroundColor3 = Color3.new(0, 0, 0)
  119. Shiny.BackgroundTransparency = 0.5
  120. Shiny.BorderColor3 = Color3.new(1, 1, 1)
  121. Shiny.Position = UDim2.new(0, 10, 0, 40)
  122. Shiny.Size = UDim2.new(0, 75, 0, 20)
  123. Shiny.Font = Enum.Font.GothamBold
  124. Shiny.Text = "Shiny Pet: OFF"
  125. Shiny.TextColor3 = Color3.new(1, 0, 0)
  126. Shiny.TextSize = 14
  127. Shiny.TextScaled = true
  128.  
  129. EggName.Name = "EggName"
  130. EggName.Parent = Frame
  131. EggName.BackgroundColor3 = Color3.new(0, 0, 0)
  132. EggName.BackgroundTransparency = 0.69999998807907
  133. EggName.BorderColor3 = Color3.new(1, 1, 1)
  134. EggName.Position = UDim2.new(0, 10, 0, 95)
  135. EggName.Size = UDim2.new(0, 155, 0, 20)
  136. EggName.Font = Enum.Font.GothamBold
  137. EggName.Text = "Magma Egg"
  138. EggName.TextColor3 = Color3.new(1, 1, 1)
  139. EggName.TextSize = 14
  140. EggName.TextScaled = true
  141.  
  142. Rebirth.Name = "Rebirth"
  143. Rebirth.Parent = Frame
  144. Rebirth.BackgroundColor3 = Color3.new(0, 0, 0)
  145. Rebirth.BackgroundTransparency = 0.5
  146. Rebirth.BorderColor3 = Color3.new(1, 1, 1)
  147. Rebirth.Position = UDim2.new(0, 90, 0, 40)
  148. Rebirth.Size = UDim2.new(0, 75, 0, 20)
  149. Rebirth.Font = Enum.Font.GothamBold
  150. Rebirth.Text = "Rebirth: OFF"
  151. Rebirth.TextColor3 = Color3.new(1, 0, 0)
  152. Rebirth.TextSize = 14
  153. Rebirth.TextScaled = true
  154.  
  155. Mini.Name = "Mini"
  156. Mini.Parent = MainFrame
  157. Mini.BackgroundColor3 = Color3.new(1, 1, 1)
  158. Mini.BackgroundTransparency = 1
  159. Mini.BorderSizePixel = 0
  160. Mini.Size = UDim2.new(0, 20, 0, 20)
  161. Mini.Font = Enum.Font.GothamBold
  162. Mini.Text = "_"
  163. Mini.TextColor3 = Color3.new(1, 0, 0)
  164. Mini.TextSize = 14
  165.  
  166. -- Scripts:
  167.  
  168. local r = game:GetService('ReplicatedStorage').Events.MagnetEvents['requestGrab']
  169. local rs = game:GetService('RunService').RenderStepped
  170. local tool = "Black Lightning Dual Magnet"
  171. 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"}
  172. local plr = game.Players.LocalPlayer
  173. local char = plr.Character.HumanoidRootPart
  174. local mini = true
  175.  
  176. _G.sell = false
  177. _G.egg = false
  178. _G.shiny = false
  179. _G.farm = false
  180. _G.rebirth = false
  181. _G.space = false
  182.  
  183. Close.MouseButton1Down:connect(function()
  184. MS:Destroy()
  185. end)
  186.  
  187. Mini.MouseButton1Down:connect(function()
  188. if mini == true then
  189. mini = false
  190. Frame.Visible = false
  191. Mini.TextColor3 = Color3.new(0, 0.666667, 0)
  192. else
  193. mini = true
  194. Frame.Visible = true
  195. Mini.TextColor3 = Color3.new(1, 0, 0)
  196. end
  197. end)
  198.  
  199.  
  200.  
  201. Shiny.MouseButton1Down:connect(function()
  202. if _G.shiny == true then
  203. _G.shiny = false
  204. Shiny.TextColor3 = Color3.new(1, 0, 0)
  205. Shiny.Text = "Shiny Pet: OFF"
  206. else
  207. _G.shiny = true
  208. Shiny.TextColor3 = Color3.new(0, 0.666667, 0)
  209. Shiny.Text = "Shiny Pet: ON"
  210. while _G.shiny == true do
  211. wait(0.1)
  212. for i = 1,#Shinys do
  213. wait()
  214. game.ReplicatedStorage.ShinyEvents.requestMakeShiny:FireServer(Shinys[i])
  215. end
  216. end
  217. end
  218. end)
  219.  
  220. Farm.MouseButton1Down:connect(function()
  221. if _G.farm == true then
  222. _G.farm = false
  223. Farm.TextColor3 = Color3.new(1, 0, 0)
  224. Farm.Text = "Autofarm: OFF"
  225. else
  226. _G.farm = true
  227. Farm.TextColor3 = Color3.new(0, 0.666667, 0)
  228. Farm.Text = "Autofarm: ON"
  229. tool = "Binary Long Power Magnet"
  230. while rs:wait() and _G.farm == true do
  231. for i = 1,10 do
  232. r:FireServer("1100000", game.ReplicatedStorage.Tools[tool])
  233. end
  234. end
  235. end
  236. end)
  237.  
  238. Space.MouseButton1Down:connect(function()
  239. if _G.space == true then
  240. _G.space = false
  241. Space.TextColor3 = Color3.new(1, 0, 0)
  242. Space.Text = "Space: OFF"
  243. else
  244. _G.space = true
  245. Space.TextColor3 = Color3.new(0, 0.666667, 0)
  246. Space.Text = "Space: ON"
  247. tool = "Binary Long Power Magnet"
  248. while rs:wait() and _G.space == true do
  249. for i = 1,10 do
  250. local tool = game.Players.LocalPlayer.Character:FindFirstChildWhichIsA("Tool")
  251. game.ReplicatedStorage.Events.MagnetEvents.requestGrab:FireServer("Space9", tool)
  252. end
  253. end
  254. end
  255. end)
  256.  
  257. Sell.MouseButton1Down:connect(function()
  258. if _G.sell == true then
  259. _G.sell = false
  260. Sell.TextColor3 = Color3.new(1, 0, 0)
  261. Sell.Text = "Sell: OFF"
  262. else
  263. _G.sell = true
  264. Sell.TextColor3 = Color3.new(0, 0.666667, 0)
  265. Sell.Text = "Sell: ON"
  266. while _G.sell == true do
  267. game.Workspace.Rings.Sellx2.CanCollide = false
  268. game.Workspace.Rings.Sellx2.Transparency = 1
  269. game.Workspace.Rings.Sellx2.CFrame = char.CFrame + Vector3.new(0,math.random(-1,1),0)
  270. wait(0.1)
  271. end
  272. end
  273. end)
  274.  
  275. Eggs.MouseButton1Down:connect(function()
  276. if _G.egg == true then
  277. _G.egg = false
  278. Eggs.TextColor3 = Color3.new(1, 0, 0)
  279. Eggs.Text = "Open Eggs: OFF"
  280. else
  281. _G.egg = true
  282. Eggs.TextColor3 = Color3.new(0, 0.666667, 0)
  283. Eggs.Text = "Open Eggs: ON"
  284. while _G.egg == true do
  285. wait()
  286. local egg = EggName.Text
  287. game:GetService("ReplicatedStorage").PetEvents.requesthatch:FireServer(egg)
  288. end
  289. end
  290. end)
  291.  
  292. Rebirth.MouseButton1Down:connect(function()
  293. if _G.rebirth == true then
  294. _G.rebirth = false
  295. Rebirth.TextColor3 = Color3.new(1, 0, 0)
  296. Rebirth.Text = "Rebirth: OFF"
  297. else
  298. _G.rebirth = true
  299. Rebirth.TextColor3 = Color3.new(0, 0.666667, 0)
  300. Rebirth.Text = "Rebirth: ON"
  301. while _G.rebirth == true do
  302. wait(35) -- Don't change unless u wanna get kicked lul
  303. local rebirths = 10000 --1000,500,250,100,50,25,5,1
  304. game.ReplicatedStorage.RebirthEvents.requestRebirth:FireServer(rebirths)
  305. end
  306. end
  307. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement