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