View difference between Paste ID: B4Mj8tWq and 8BWLcWAL
SHOW: | | - or go back to the newest paste.
1
-- Objects
2
local x = 0
3
local MinersHavenGui = Instance.new("ScreenGui")
4
local Frame = Instance.new("Frame")
5
local background = Instance.new("ImageLabel")
6
local Exit = Instance.new("TextButton")
7
local AutoCrates = Instance.new("TextButton")
8
local TwitchPoints = Instance.new("TextButton")
9
local Clovers = Instance.new("TextButton")
10
local Speed = Instance.new("TextButton")
11
local Jump = Instance.new("TextButton")
12
local MaskedMan = Instance.new("TextButton")
13
local Credits = Instance.new("TextButton")
14
local CreditsGUI = Instance.new("ScreenGui")
15
local Frame2 = Instance.new("Frame")
16
local background2 = Instance.new("ImageLabel")
17
local Exit2 = Instance.new("TextButton")
18
local CreditsCharWar = Instance.new("TextButton")
19
local CreditsXtrodinary = Instance.new("TextButton")
20
local CreditsCharWar2 = Instance.new("TextButton")
21
local CreditsXtrodinary2 = Instance.new("TextButton")
22
local RemoteButtons = Instance.new("TextButton")
23
local RemoteOn = Instance.new("TextButton")
24
local RemoteOff = Instance.new("TextButton")
25
local CreditsBacktalkers = Instance.new("TextButton")
26
local CreditsBacktalkers2 = Instance.new("TextButton")
27
28
-- Properties
29
30
MinersHavenGui.Name = "MinersHavenGui"
31
MinersHavenGui.Parent = game.CoreGui
32
33
Frame.Parent = MinersHavenGui
34
Frame.Active = true
35
Frame.BackgroundColor3 = Color3.new(1, 1, 1)
36
Frame.Draggable = true
37
Frame.Position = UDim2.new(0, 400, 0, 60)
38
Frame.Size = UDim2.new(0, 360, 0, 270)
39
40
background.Name = "background"
41
background.Parent = Frame
42
background.BackgroundColor3 = Color3.new(1, 1, 1)
43
background.Size = UDim2.new(0, 360, 0, 270)
44
background.Image = "rbxassetid://441828537"
45
46
Exit.Name = "Exit"
47
Exit.Parent = Frame
48
Exit.Position = UDim2.new(0, 300, 0, 30)
49
Exit.Size = UDim2.new(0, 40, 0, 20)
50
Exit.Style = Enum.ButtonStyle.RobloxRoundButton
51
Exit.Font = Enum.Font.SciFi
52
Exit.FontSize = Enum.FontSize.Size14
53
Exit.Text = "Exit"
54
Exit.TextSize = 14
55
Exit.MouseButton1Click:connect(function()
56
       MinersHavenGui:Destroy()
57
end)
58
59
AutoCrates.Name = "AutoCrates"
60
AutoCrates.Parent = Frame
61
AutoCrates.Position = UDim2.new(0, 8, 0, 215)
62
AutoCrates.Size = UDim2.new(0, 100, 0, 50)
63
AutoCrates.Style = Enum.ButtonStyle.RobloxRoundButton
64
AutoCrates.Font = Enum.Font.SciFi
65
AutoCrates.FontSize = Enum.FontSize.Size14
66
AutoCrates.Text = "AutoCrates"
67
AutoCrates.TextSize = 20
68
AutoCrates.MouseButton1Click:connect(function()
69
while wait() do
70
while wait(2) do
71
for _,v in pairs(game.Workspace:GetChildren()) do
72
if string.match(v.Name, "DiamondCrate") or string.match(v.Name, "ResearchCrate") or string.match(v.Name, "GoldenCrate") or string.match(v.Name, "CrystalCrate") or string.match(v.Name, "Pumpkin") or string.match(v.Name, "MegaPumpkin") or string.match(v.Name, "Pumpkin") or string.match(v.Name, "LuckyCrate") or string.match(v.Name, "ExecutiveCrate") or string.match(v.Name, "GiftCrate") then
73
v.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(0,0,0)
74
v.CanCollide = false
75
v.Transparency = 1
76
for _,v in pairs(game.Workspace.Shadows:GetChildren()) do
77
if string.match(v.Name, "ShadowCrate") or string.match(v.Name, "MegaPumpkin") then
78
v.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(0,0,0)
79
v.CanCollide = false
80
v.Transparency = 1
81
end
82
end
83
end
84
end
85
end
86
end
87
end)
88
89
TwitchPoints.Name = "TwitchPoints"
90
TwitchPoints.Parent = Frame
91
TwitchPoints.Position = UDim2.new(0, 118, 0, 215)
92
TwitchPoints.Size = UDim2.new(0, 115, 0, 50)
93
TwitchPoints.Style = Enum.ButtonStyle.RobloxRoundButton
94
TwitchPoints.Font = Enum.Font.SciFi
95
TwitchPoints.FontSize = Enum.FontSize.Size14
96
TwitchPoints.Text = "TwitchPoints"
97
TwitchPoints.TextSize = 20
98
TwitchPoints.MouseButton1Click:connect(function()
99
while wait() do
100-
while wait(1) do
100+
while wait(60) do
101-
game.Players.LocalPlayer.TwitchPoints.Value = game.Players.LocalPlayer.TwitchPoints.Value +1000000
101+
game.Players.LocalPlayer.TwitchPoints.Value = game.Players.LocalPlayer.TwitchPoints.Value +1
102
end
103
end
104
end)
105
106
Clovers.Name = "Clovers"
107
Clovers.Parent = Frame
108
Clovers.Position = UDim2.new(0, 238, 0, 215)
109
Clovers.Size = UDim2.new(0, 105, 0, 50)
110
Clovers.Style = Enum.ButtonStyle.RobloxRoundButton
111
Clovers.Font = Enum.Font.SciFi
112
Clovers.FontSize = Enum.FontSize.Size14
113
Clovers.Text = "Clovers"
114
Clovers.TextSize = 20
115
Clovers.MouseButton1Click:connect(function()
116
while wait() do
117-
while wait(1) do
117+
while wait(60) do
118-
game.Players.LocalPlayer.Clovers.Value = game.Players.LocalPlayer.Clovers.Value +1000000
118+
game.Players.LocalPlayer.Clovers.Value = game.Players.LocalPlayer.Clovers.Value +1
119
end
120
end
121
end)
122
123
Speed.Name = "Speed"
124
Speed.Parent = Frame
125
Speed.Position = UDim2.new(0, 238, 0, 155)
126
Speed.Size = UDim2.new(0, 105, 0, 50)
127
Speed.Style = Enum.ButtonStyle.RobloxRoundButton
128
Speed.Font = Enum.Font.SciFi
129
Speed.FontSize = Enum.FontSize.Size14
130
Speed.Text = "Speed"
131
Speed.TextSize = 20
132
Speed.MouseButton1Click:connect(function()
133
game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 80
134
end)
135
136
Jump.Name = "Jump"
137
Jump.Parent = Frame
138
Jump.Position = UDim2.new(0, 8, 0, 155)
139
Jump.Size = UDim2.new(0, 100, 0, 50)
140
Jump.Style = Enum.ButtonStyle.RobloxRoundButton
141
Jump.Font = Enum.Font.SciFi
142
Jump.FontSize = Enum.FontSize.Size14
143
Jump.Text = "Jump"
144
Jump.TextSize = 20
145
Jump.MouseButton1Click:connect(function()
146
game.Players.LocalPlayer.Character.Humanoid.JumpPower = 180
147
end)
148
149
MaskedMan.Name = "MaskedMan"
150
MaskedMan.Parent = Frame
151
MaskedMan.Position = UDim2.new(0, 118, 0, 155)
152
MaskedMan.Size = UDim2.new(0, 115, 0, 50)
153
MaskedMan.Style = Enum.ButtonStyle.RobloxRoundButton
154
MaskedMan.Font = Enum.Font.SciFi
155
MaskedMan.FontSize = Enum.FontSize.Size14
156
MaskedMan.Text = "MaskedMan"
157
MaskedMan.TextSize = 20
158
MaskedMan.MouseButton1Click:connect(function()
159
thing = game.Workspace.Market.Hitfox
160
thing.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(math.random(0,0),0,math.random(0,0))
161
thing.Transparency = 0
162
thing.BrickColor = BrickColor.new(255,0,100)
163
tell = Instance.new("SurfaceGui",thing)
164
tell2 = Instance.new("TextLabel",tell)
165
tell2.Size = UDim2.new(0, 800, 0, 750)
166
tell2.TextWrapped= true
167
tell2.TextScaled = true
168
tell2.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
169
tell2.TextColor3 = Color3.fromRGB(255, 255, 255)
170
tell2.Text =  "Click Me!" 
171
end)
172
173
Credits.Name = "-=-?-=- Credits -=-?-=-"
174
Credits.Parent = Frame
175
Credits.Position = UDim2.new(0, 8, 0, 100)
176
Credits.Size = UDim2.new(0, 338, 0, 50)
177
Credits.Style = Enum.ButtonStyle.RobloxRoundButton
178
Credits.Font = Enum.Font.SciFi
179
Credits.FontSize = Enum.FontSize.Size14
180
Credits.Text = "-=-*-=- Credits -=-*-=-"
181
Credits.TextSize = 20
182
Credits.MouseButton1Click:connect(function()
183
CreditsGUI.Name = "CreditsGUI"
184
CreditsGUI.Parent = game.CoreGui
185
Frame2.Parent = CreditsGUI
186
Frame2.Active = true
187
Frame2.BackgroundColor3 = Color3.new(1, 1, 1)
188
Frame2.Draggable = true
189
Frame2.Position = UDim2.new(0, 400, 0, 60)
190
Frame2.Size = UDim2.new(0, 150, 0, 300)
191
background2.Name = "background2"
192
background2.Parent = Frame2
193
background2.BackgroundColor3 = Color3.new(1, 1, 1)
194
background2.Size = UDim2.new(0, 150, 0, 300)
195
background2.Image = "rbxassetid://584906519"
196
Exit2.Name = "Exit2"
197
Exit2.Parent = Frame2
198
Exit2.Position = UDim2.new(0, 50, 0, 10)
199
Exit2.Size = UDim2.new(0, 40, 0, 20)
200
Exit2.Style = Enum.ButtonStyle.RobloxRoundButton
201
Exit2.Font = Enum.Font.SciFi
202
Exit2.FontSize = Enum.FontSize.Size14
203
Exit2.Text = "Exit"
204
Exit2.TextSize = 14
205
Exit2.MouseButton1Click:connect(function()
206
       CreditsGUI:Destroy()
207
end)
208
CreditsCharWar.Name = "V3rm: CharWar"
209
CreditsCharWar.Parent = Frame2
210
CreditsCharWar.Position = UDim2.new(0, 5, 0, 40)
211
CreditsCharWar.Size = UDim2.new(0, 140, 0, 40)
212
CreditsCharWar.Style = Enum.ButtonStyle.RobloxRoundButton
213
CreditsCharWar.Font = Enum.Font.SciFi
214
CreditsCharWar.FontSize = Enum.FontSize.Size14
215
CreditsCharWar.Text = "V3rm: CharWar"
216
CreditsCharWar.TextSize = 20
217
CreditsCharWar2.Name = "Discord: Jethrootje#0289"
218
CreditsCharWar2.Parent = Frame2
219
CreditsCharWar2.Position = UDim2.new(0, 5, 0, 80)
220
CreditsCharWar2.Size = UDim2.new(0, 140, 0, 40)
221
CreditsCharWar2.Style = Enum.ButtonStyle.RobloxRoundButton
222
CreditsCharWar2.Font = Enum.Font.SciFi
223
CreditsCharWar2.FontSize = Enum.FontSize.Size14
224
CreditsCharWar2.Text = "Discord: Jethrootje#0289"
225
CreditsCharWar2.TextSize = 12
226
CreditsXtrodinary.Name = "V3rm: xtrodinary"
227
CreditsXtrodinary.Parent = Frame2
228
CreditsXtrodinary.Position = UDim2.new(0, 5, 0, 120)
229
CreditsXtrodinary.Size = UDim2.new(0, 140, 0, 40)
230
CreditsXtrodinary.Style = Enum.ButtonStyle.RobloxRoundButton
231
CreditsXtrodinary.Font = Enum.Font.SciFi
232
CreditsXtrodinary.FontSize = Enum.FontSize.Size14
233
CreditsXtrodinary.Text = "V3rm: xtrodinary"
234
CreditsXtrodinary.TextSize = 18
235
CreditsXtrodinary2.Name = "Discord: Sesh#8128"
236
CreditsXtrodinary2.Parent = Frame2
237
CreditsXtrodinary2.Position = UDim2.new(0, 5, 0, 160)
238
CreditsXtrodinary2.Size = UDim2.new(0, 140, 0, 40)
239
CreditsXtrodinary2.Style = Enum.ButtonStyle.RobloxRoundButton
240
CreditsXtrodinary2.Font = Enum.Font.SciFi
241
CreditsXtrodinary2.FontSize = Enum.FontSize.Size14
242
CreditsXtrodinary2.Text = "Discord: Sesh#8128"
243
CreditsXtrodinary2.TextSize = 14
244
CreditsBacktalkers.Name = "V3rm: Backtalkers"
245
CreditsBacktalkers.Parent = Frame2
246
CreditsBacktalkers.Position = UDim2.new(0, 5, 0, 200)
247
CreditsBacktalkers.Size = UDim2.new(0, 140, 0, 40)
248
CreditsBacktalkers.Style = Enum.ButtonStyle.RobloxRoundButton
249
CreditsBacktalkers.Font = Enum.Font.SciFi
250
CreditsBacktalkers.FontSize = Enum.FontSize.Size14
251
CreditsBacktalkers.Text = "V3rm: Backtalkers"
252
CreditsBacktalkers.TextSize = 18
253
CreditsBacktalkers2.Name = "Discord: Bipper#3543"
254
CreditsBacktalkers2.Parent = Frame2
255
CreditsBacktalkers2.Position = UDim2.new(0, 5, 0, 240)
256
CreditsBacktalkers2.Size = UDim2.new(0, 140, 0, 40)
257
CreditsBacktalkers2.Style = Enum.ButtonStyle.RobloxRoundButton
258
CreditsBacktalkers2.Font = Enum.Font.SciFi
259
CreditsBacktalkers2.FontSize = Enum.FontSize.Size14
260
CreditsBacktalkers2.Text = "Discord: Bipper#3543"
261
CreditsBacktalkers2.TextSize = 14
262
end)
263
264
RemoteButtons.Name = "RemoteButtons"
265
RemoteButtons.Parent = Frame
266
RemoteButtons.Position = UDim2.new(0, 238, 0, 50)
267
RemoteButtons.Size = UDim2.new(0, 105, 0, 50)
268
RemoteButtons.Style = Enum.ButtonStyle.RobloxRoundButton
269
RemoteButtons.Font = Enum.Font.SciFi
270
RemoteButtons.FontSize = Enum.FontSize.Size14
271
RemoteButtons.Text = "RemoteButtons"
272
RemoteButtons.TextSize = 14
273
RemoteButtons.MouseButton1Click:connect(function()
274
RemoteOn.Name = "Remote On"
275
RemoteOn.Parent = Frame
276
RemoteOn.Position = UDim2.new(0, 118, 0, 50)
277
RemoteOn.Size = UDim2.new(0, 115, 0, 50)
278
RemoteOn.Style = Enum.ButtonStyle.RobloxRoundButton
279
RemoteOn.Font = Enum.Font.SciFi
280
RemoteOn.FontSize = Enum.FontSize.Size14
281
RemoteOn.Text = "Remote On"
282
RemoteOn.TextSize = 20
283
RemoteOn.MouseButton1Click:connect(function()
284
x = 1;
285
while(x>0) do
286
wait (0.3)
287
game.ReplicatedStorage.RemoteDrop:FireServer()
288
end
289
end)
290
RemoteOff.Name = "Remote Off"
291
RemoteOff.Parent = Frame
292
RemoteOff.Position = UDim2.new(0, 233, 0, 50)
293
RemoteOff.Size = UDim2.new(0, 115, 0, 50)
294
RemoteOff.Style = Enum.ButtonStyle.RobloxRoundButton
295
RemoteOff.Font = Enum.Font.SciFi
296
RemoteOff.FontSize = Enum.FontSize.Size14
297
RemoteOff.Text = "Remote Off"
298
RemoteOff.TextSize = 20
299
RemoteOff.MouseButton1Click:connect(function()
300
x = 0;
301
end)
302
end)