View difference between Paste ID: 18Ne15N1 and g5Zfhv8a
SHOW: | | - or go back to the newest paste.
1-
gui = Instance.new("ScreenGui",game.Players.landed2002.PlayerGui)
1+
gui = Instance.new("ScreenGui",game.Players.CreeperBr1ne
2
.PlayerGui)
3
gui.ResetOnSpawn = false
4
gui.Name = "RaindropHub"
5
6
top = Instance.new("Frame",gui)
7
top.Name = "Top"
8
top.Position = UDim2.new(0.5,-166,0.065,0)
9
top.Size = UDim2.new(0,333,0.07,0)
10
top.Style = "DropShadow"
11
toptext = Instance.new("TextLabel",top)
12
toptext.Name = "Text"
13
toptext.BackgroundTransparency = 1
14
toptext.Size = UDim2.new(1,0,1,0)
15
toptext.Font = "SciFi"
16
toptext.Text = "Hacking101's Script Hub"
17
toptext.TextColor3 = Color3.new(255,255,255)
18
toptext.TextStrokeTransparency = 0
19
toptext.TextScaled = true
20
toptext.TextWrapped = true
21
inn = Instance.new("TextButton",top)
22
inn.Visible = false
23
inn.BackgroundTransparency = 1
24
inn.Size = UDim2.new(1,0,1,0)
25
inn.Text = ""
26
inn.Name = "innn"
27
outt = Instance.new("TextButton",top)
28
outt.Name = "outtt"
29
outt.Visible = true
30
outt.BackgroundTransparency = 1
31
outt.Size = UDim2.new(1,0,1,0)
32
outt.Text = ""
33
34
main = Instance.new("Frame", gui)
35
main.Name = "Main"
36
main.Position = UDim2.new(0.5,-250,0.13,0)
37
main.Size = UDim2.new(0,500,0.8,0)
38
main.Style = "DropShadow"
39
40
list = Instance.new("ScrollingFrame", main)
41
list.Name = "List"
42
list.BackgroundTransparency = 1
43
list.Size = UDim2.new(0,250,1,0)
44
list.ScrollBarThickness = 0
45
list.CanvasSize = UDim2.new(0,0,6.1,0)
46
47
desc = Instance.new("Frame",main)
48
desc.Name = "Desc"
49
desc.Position = UDim2.new(1,-225,0.5,0)
50
desc.Size = UDim2.new(0,225,0.5,0)
51
desc.Style = "DropShadow"
52
dtext = Instance.new("TextLabel",desc)
53
dtext.BackgroundTransparency = 1
54
dtext.Size = UDim2.new(1,0,0.75,0)
55
dtext.Font = "SciFi"
56
dtext.TextSize = 24
57
dtext.Text = "Script description."
58
dtext.TextWrapped = true
59
dtext.TextYAlignment = "Top"
60
dtext.TextColor3 = Color3.new(255,255,255)
61
dtext.TextStrokeTransparency = 0
62
dbutton = Instance.new("TextButton",desc)
63
dbutton.Position = UDim2.new(0,0,0.75,0)
64
dbutton.Size = UDim2.new(1,0,0.25,0)
65
dbutton.Style = "RobloxRoundButton"
66
dbutton.Font = "SciFi"
67
dbutton.TextSize = 14
68
dbutton.TextColor3 = Color3.new(255,255,255)
69
dbutton.Text = "Launch"
70
dbutton.TextStrokeTransparency = 0
71
dbutton.TextScaled = true
72
dbutton.TextWrapped = true
73
74
title = Instance.new("Frame",main)
75
title.Name = "Title"
76
title.Position = UDim2.new(1,-225,0,0)
77
title.Size = UDim2.new(0,225,0.5,0)
78
title.Style = "DropShadow"
79
scriptimage = Instance.new("ImageLabel",title)
80
scriptimage.Name = "Image"
81
scriptimage.Position = UDim2.new(0,0,0.1,0)
82
scriptimage.Size = UDim2.new(1,0,0.8,0)
83
scriptimage.Visible = false
84
scriptimage.BackgroundTransparency = 1
85
scripttext = Instance.new("TextLabel",title)
86
scripttext.Name = "Text"
87
scripttext.BackgroundTransparency = 1
88
scripttext.Size = UDim2.new(1,0,1,0)
89
scripttext.Font = "SciFi"
90
scripttext.Text = "Script Name"
91
scripttext.TextColor3 = Color3.new(255,255,255)
92
scripttext.TextScaled = true
93
scripttext.TextStrokeTransparency = 0
94
stringv = "print('No script loaded!')"
95
96
warning = Instance.new("TextLabel",desc)
97
warning.BackgroundTransparency = 1
98
warning.Position = UDim2.new(0,0,0.65,0)
99
warning.Size = UDim2.new(1,0,0.102,0)
100
warning.Font = "SciFi"
101
warning.TextColor3 = Color3.new(255,0,0)
102
warning.Text = "*This script will not work in this game*"
103
warning.TextStrokeTransparency = 0
104
warning.TextScaled = true
105
warning.TextWrapped = true
106
warning.Visible = false
107
108
dbutton.MouseButton1Down:connect(function()
109
	loadstring(stringv)()
110
end)
111
112
top.outtt.MouseButton1Down:connect(function()
113
	top.outtt.Visible = false
114
	main:TweenPosition(UDim2.new(0.5, -250, -1, 0), "Out", "Quad", 2)
115
	top:TweenPosition(UDim2.new(0.5, -166, 0, 0), "Out", "Quad", 2)
116
	top.innn.Visible = true
117
end)
118
top.innn.MouseButton1Down:connect(function()
119
	top.innn.Visible = false
120
	main:TweenPosition(UDim2.new(0.5, -250, 0.13, 0), "In", "Quad", 2)
121
	top:TweenPosition(UDim2.new(0.5, -166, 0.065, 0), "In", "Quad", 2)
122
	top.outtt.Visible = true
123
end)
124
125
pos = 0
126
Create = function(st,parent)
127
	local listbutton = Instance.new("TextButton",parent)
128
	listbutton.Name = st
129
	listbutton.BackgroundColor3 = Color3.new(50/255,50/255,50/255)
130
	listbutton.BackgroundTransparency = 0.21
131
	listbutton.Position = UDim2.new(0,5,0,pos*45+5)
132
	listbutton.Size = UDim2.new(1,0,0,40)
133
	listbutton.Font = "SciFi"
134
	listbutton.TextSize = 28
135
	listbutton.Text = st
136
	listbutton.TextColor3 = Color3.new(255,255,255)
137
	listbutton.TextStrokeTransparency = 0
138
	listbutton.TextWrapped = true
139
	pos = pos+1
140
	return listbutton
141
end
142
143
place = game.PlaceId
144
145
Check = function(id)
146
		if place == id then
147
		warning.Visible = false
148
		dbutton.TextStrokeTransparency = 0
149
		dbutton.TextTransparency = 0
150
		else
151
		warning.Visible = true
152
		dbutton.TextStrokeTransparency = 0.5
153
		dbutton.TextTransparency = 0.5
154
		if id == 0 then
155
		warning.Visible = false
156
		dbutton.TextStrokeTransparency = 0
157
		dbutton.TextTransparency = 0
158
		end
159
	end
160
end
161
162
local ff = Create("WIP",list)
163
local musicgui = Create("Music Gui", list)
164
local apocesp = Create("Apoc ESP", list)
165
local redwoodguns = Create("Redwood Prison Wepons", list)
166
local prisonlifeshotgun = Create("Prison Life Wepons", list)
167
local lvgui = Create("Las Vegas GUI", list)
168
local loophealapoc = Create("Apoc Loopheal", list)
169
local bcdadmin = Create("BCDAdmin", list)
170
local apocgui = Create("Apoc Gui", list)
171
local killall = Create("Kill All", list)
172
local duck = Create("Duck", list)
173
local sunsetcity = Create("Sunset City Money",list)
174
local catsdogs = Create("Cats And Dogs",list)
175
ff.MouseButton1Down:connect(function()
176
	Check(0)
177
	scripttext.Visible = true
178
	scriptimage.Visible = false
179
	scripttext.Text = "N/A"
180
	scriptimage.Image = ""
181
	dtext.Text = "WIP"
182
	stringv = [[]]
183
end)
184
musicgui.MouseButton1Down:connect(function()
185
	Check(0)
186
	scripttext.Visible = true
187
	scriptimage.Visible = false
188
	scripttext.Text = "Music Gui"
189
	scriptimage.Image = ""
190
	dtext.Text = "Music GUI \n Includes: \n Pitch \n Volume \n Start/Stop \n Custom audio \n Made by DragonRamer"
191
	stringv = [[loadstring(Raindrop:DownloadString('http://pastebin.com/raw/606ktfaU'))()]]
192
end)
193
apocesp.MouseButton1Down:connect(function()
194
	Check(1600503)
195
	scripttext.Visible = false
196
	scriptimage.Visible = true
197
	scripttext.Text = ""
198
	scriptimage.Image = "rbxassetid://554496857"
199
	dtext.Text = "Apoc GUI \n Lets you see anyone else in-game \n Works other games \n Made by Brack4712"
200
	stringv = [[for i,v in pairs(game.Players:GetChildren()) do
201
    local handle = Instance.new("Handles",game.Players.LocalPlayer.PlayerGui)
202
    handle.Adornee = v.Character.Head
203
    handle.Color3 = Color3.new(0/255, 255/255, 0/255)
204
    handle.Transparency = 0
205
    handle.Style = "Resize"
206
	end]]
207
end)
208
redwoodguns.MouseButton1Down:connect(function()
209
	Check(402122991)
210
	scripttext.Visible = true
211
	scriptimage.Visible = false
212
	scripttext.Text = "Redwood Prison Wepons"
213
	scriptimage.Image = ""
214
	dtext.Text = "Gives you 3 tools: \n Taser \n Beretta M9 \n UMP-45 \n made by Bunnylord"
215
	stringv = [[game.Workspace.resources.RemoteFunction:InvokeServer("giveItem", "Taser")
216
wait(1)
217
game.Workspace.resources.RemoteFunction:InvokeServer("giveItem", "Beretta M9")
218
wait(1)
219
game.Workspace.resources.RemoteFunction:InvokeServer("giveItem", "UMP-45")]]
220
end)
221
prisonlifeshotgun.MouseButton1Down:connect(function()
222
	Check(155615604)
223
	scripttext.Visible = true
224
	scriptimage.Visible = false
225
	scripttext.Text = "Prison Life Wepons"
226
	scriptimage.Image = ""
227
	dtext.Text = "Gives you multiple wepons in Prison Life 2.0 \n made by AzulScript"
228
	stringv = [[for i,v in pairs(Workspace.Prison_ITEMS.giver:GetChildren()) do
229
lol = Workspace.Remote.ItemHandler:InvokeServer(v.ITEMPICKUP)
230
end]]
231
end)
232
lvgui.MouseButton1Down:connect(function()
233
	Check(163865146)
234
	scripttext.Visible = true
235
	scriptimage.Visible = false
236
	scripttext.Text = "Las Vegas GUI"
237
	scriptimage.Image = ""
238
	dtext.Text = "Lets you get cars,wepons and lets you teleport! \n made by DragonRamer"
239
	stringv = [[loadstring(Raindrop:DownloadString('http://pastebin.com/raw/iVJ1rSSA'))()]]
240
end)
241
loophealapoc.MouseButton1Down:connect(function()
242
	Check(1600503)
243
	scripttext.Visible = true
244
	scriptimage.Visible = false
245
	scripttext.Text = "Apoc Loopheal"
246
	scriptimage.Image = ""
247
	dtext.Text = "Loopheals you in apoc rising \n made by Unit-01"
248
	stringv = [[local Remote = game.Lighting.Remote.AddHealth
249
local Player = game.Workspace.UnjustifiedLimited.Humanoid
250
game:GetService("RunService").RenderStepped:connect(function() 
251
Remote:FireServer(Player, 5000000)
252
end)]]
253
end)
254
bcdadmin.MouseButton1Down:connect(function()
255
	Check(0)
256
	scripttext.Visible = true
257
	scriptimage.Visible = false
258
	scripttext.Text = "BCDAdmin"
259
	scriptimage.Image = ""
260
	dtext.Text = "Gives you admin \n made by GtaMasterYT"
261
	stringv = [[loadstring(Raindrop:DownloadString('http://hastebin.com/raw/kozebukeye'))()]]
262
end)
263
apocgui.MouseButton1Down:connect(function()
264
	Check(1600503)
265
	scripttext.Visible = true
266
	scriptimage.Visible = false
267
	scripttext.Text = "Apoc GUI"
268
	scriptimage.Image = ""
269
	dtext.Text = "Does... Something... \n made by JosephR"
270
	stringv = [[loadstring(Raindrop:DownloadString('http://pastebin.com/raw/tBhddmCX'))()]]
271
end)
272
killall.MouseButton1Down:connect(function()
273
	Check(0)
274
	scripttext.Visible = true
275
	scriptimage.Visible = false
276
	scripttext.Text = "Kill All"
277
	scriptimage.Image = ""
278
	dtext.Text = "Kills all players \n made by unverified"
279
	stringv = [[for i,v in pairs(game.Players:GetChildren()) do
280
if v.Character.Humanoid then
281
v.Character.Humanoid.Health = 0
282
end
283
end]]
284
end)
285
duck.MouseButton1Down:connect(function()
286
	Check(0)
287
	scripttext.Visible = true
288
	scriptimage.Visible = false
289
	scripttext.Text = "Duck"
290
	scriptimage.Image = ""
291
	dtext.Text = "Makes you a duck \n R6 AVATAR ONLY \n made by DragonRamer"
292
	stringv = [[local pchar = game.Players.LocalPlayer.Character                
293
local duck = Instance.new("SpecialMesh", pchar.Torso)
294
duck.MeshType = "FileMesh"
295
duck.MeshId = "http://www.roblox.com/asset/?id=9419831"
296
duck.TextureId = "http://www.roblox.com/asset/?id=9419827"
297
duck.Scale = Vector3.new(5, 5, 5)
298
pchar.Head.Transparency = 1
299
pchar["Left Arm"].Transparency = 1
300
pchar["Right Arm"].Transparency = 1
301
pchar["Left Leg"].Transparency = 1
302
pchar["Right Leg"].Transparency = 1]]
303
end)
304
sunsetcity.MouseButton1Down:connect(function()
305
	Check(28397429)
306
	scripttext.Visible = true
307
	scriptimage.Visible = false
308
	scripttext.Text = "Sunset City"
309
	scriptimage.Image = ""
310
	dtext.Text = "Completes a job 10 times \n Requirements: Be in a job \n Only works in Sunset City \n Made by OVOXO (laggy)"
311
	stringv = [[local i = 0
312
local b = 10
313
repeat
314
game.ReplicatedStorage.Remotes.Events.CompletedJob:FireServer()
315
wait(0.1)
316
i = i + 1
317
wait(0.1)
318
print(i)
319
until i == b]]
320
end)
321
catsdogs.MouseButton1Down:connect(function()
322
	Check(0)
323
	scripttext.Visible = true
324
	scriptimage.Visible = false
325
	scripttext.Text = "Cats and Dogs"
326
	scriptimage.Image = ""
327
	dtext.Text = "Rains cats and dogs! \n Made by lyroo"
328
	stringv = [[while true do
329
local a = Instance.new("Part", workspace)
330
local b = Instance.new("Part", workspace)
331
a.Position = Vector3.new(math.random(200), math.random(200), math.random(200))
332
b.Position = Vector3.new(math.random(200), math.random(200), math.random(200))
333
dog = Instance.new("SpecialMesh", b)
334
dog.MeshId = "http://www.roblox.com/asset/?id=68340830"
335
dog.TextureId = "http://www.roblox.com/asset/?id=68331520"
336
cat = Instance.new("SpecialMesh", a)
337
cat.MeshId = "http://www.roblox.com/asset/?id=180289755"
338
cat.TextureId = ""
339
wait(0.5)
340
d = Instance.new("Sound", a)
341
d.SoundId = "http://www.roblox.com/asset/?id=138078642"
342
d.Volume = 10
343
d.Looped = false
344
d:Play()
345
f = Instance.new("Sound", b)
346
f.SoundId = "http://www.roblox.com/asset/?id=132514715"
347
f.Volume = 10
348
f.Looped = false
349
f:Play()
350
end]]
351
end)