SHOW:
|
|
- or go back to the newest paste.
1 | --TITLE: Raindrop Script Hub | |
2 | gui = Instance.new("ScreenGui",game.CoreGui) | |
3 | gui.Name = "Script Hub" | |
4 | gui.ResetOnSpawn = false | |
5 | closed = false | |
6 | loading = true | |
7 | ||
8 | main = Instance.new("Frame",gui) | |
9 | main.Name = "Main" | |
10 | main.Size = UDim2.new(0,300,0,250) | |
11 | main.Position = UDim2.new(0,125,.5,-125) | |
12 | main.BackgroundColor3 = Color3.new(100/255,100/255,100/255) | |
13 | main.BorderColor3 = Color3.new(90/255,90/255,90/255) | |
14 | main.BorderSizePixel = 2 | |
15 | ||
16 | list = Instance.new("Frame",gui) | |
17 | list.Name = "List" | |
18 | list.Size = UDim2.new(0,100,0,250) | |
19 | list.Position = UDim2.new(0,10,.5,-125) | |
20 | list.BackgroundColor3 = Color3.new(255,255,255) | |
21 | list.BorderColor3 = Color3.new(90/255,90/255,90/255) | |
22 | list.BorderSizePixel = 2 | |
23 | ||
24 | changelist = Instance.new("TextButton",list) | |
25 | changelist.AutoButtonColor = false | |
26 | changelist.BackgroundColor3 = Color3.new(215/255,0/255,0/255) | |
27 | changelist.BorderColor3 = Color3.new(185/255,0/255,0/255) | |
28 | changelist.Name = "Change List" | |
29 | changelist.Size = UDim2.new(1,0,0.1,0) | |
30 | changelist.Font = "SciFi" | |
31 | changelist.Text = "Scripts" | |
32 | changelist.TextColor3 = Color3.new(255/255,255/255,255/255) | |
33 | changelist.TextScaled = true | |
34 | changelist.TextWrapped = true | |
35 | changelist.TextStrokeTransparency = 0 | |
36 | changelist.TextYAlignment = "Top" | |
37 | ||
38 | tit = Instance.new("TextLabel",main) | |
39 | tit.Name = "Title" | |
40 | tit.Size = UDim2.new(0.9,-2,.1,0) | |
41 | tit.BackgroundColor3 = Color3.new(215/255,0,0) | |
42 | tit.BorderColor3 = Color3.new(185/255,0,0) | |
43 | tit.Font = "SciFi" | |
44 | tit.FontSize = "Size24" | |
45 | tit.Text = "Hacking101's Script Hub" | |
46 | tit.TextColor3 = Color3.new(255,255,255) | |
47 | tit.TextStrokeTransparency = 0 | |
48 | ||
49 | exit = Instance.new("TextButton",main) | |
50 | exit.AutoButtonColor = false | |
51 | exit.BackgroundColor3 = Color3.new(215/255,0/255,0/255) | |
52 | exit.BorderColor3 = Color3.new(185/255,0/255,0/255) | |
53 | exit.Position = UDim2.new(0.9,0,0,0) | |
54 | exit.Size = UDim2.new(0.1,0,0.1,0) | |
55 | exit.Font = "SciFi" | |
56 | exit.TextSize = 24 | |
57 | exit.Text = "X" | |
58 | exit.TextColor3 = Color3.new(255/255,255/255,255/255) | |
59 | exit.TextStrokeTransparency = 0 | |
60 | ||
61 | stit = Instance.new("TextLabel",main) | |
62 | stit.Name = "ScriptTitle" | |
63 | stit.Size = UDim2.new(1,-10,.18,0) | |
64 | stit.Position = UDim2.new(0,5,.1,5) | |
65 | stit.BackgroundColor3 = Color3.new(70/255,70/255,70/255) | |
66 | stit.BackgroundTransparency = .7 | |
67 | stit.Font = "SciFi" | |
68 | stit.Text = "Some Script Name" | |
69 | stit.TextColor3 = Color3.new(255,255,255) | |
70 | stit.TextScaled = true | |
71 | stit.TextWrapped = true | |
72 | stit.TextStrokeTransparency = 0 | |
73 | ||
74 | desc = Instance.new("TextLabel",main) | |
75 | desc.Name = "ScriptDesc" | |
76 | desc.Size = UDim2.new(1,-10,.53,0) | |
77 | desc.Position = UDim2.new(0,5,.3,5) | |
78 | desc.BackgroundColor3 = Color3.new(70/255,70/255,70/255) | |
79 | desc.BackgroundTransparency = .7 | |
80 | desc.Font = "SciFi" | |
81 | desc.FontSize = "Size14" | |
82 | desc.Text = "Some Script Desc." | |
83 | desc.TextColor3 = Color3.new(255,255,255) | |
84 | desc.TextStrokeTransparency = 0 | |
85 | desc.TextYAlignment = "Top" | |
86 | desc.TextWrapped = true | |
87 | ||
88 | wrn = Instance.new("TextLabel",main) | |
89 | wrn.Name = "ScriptWarn" | |
90 | wrn.Size = UDim2.new(1,-10,.07,0) | |
91 | wrn.Position = UDim2.new(0,5,.78,0) | |
92 | wrn.BackgroundColor3 = Color3.new(70/255,70/255,70/255) | |
93 | wrn.BackgroundTransparency = 1 | |
94 | wrn.Font = "SciFi" | |
95 | wrn.FontSize = "Size14" | |
96 | wrn.Text = "*Notice* \n This script might not work on the game your in." | |
97 | wrn.TextColor3 = Color3.new(255,0,0) | |
98 | wrn.TextStrokeTransparency = 0 | |
99 | wrn.Visible = false | |
100 | ||
101 | exe = Instance.new("TextButton",main) | |
102 | exe.Name = "Execute" | |
103 | exe.Size = UDim2.new(.33,-5,.1,0) | |
104 | exe.Position = UDim2.new(.65,10,.88,0) | |
105 | exe.BackgroundColor3 = Color3.new(70/255,70/255,70/255) | |
106 | exe.BackgroundTransparency = .7 | |
107 | exe.Font = "SciFi" | |
108 | exe.FontSize = "Size24" | |
109 | exe.Text = "Execute" | |
110 | exe.TextColor3 = Color3.new(255,255,255) | |
111 | exe.TextStrokeTransparency = 0 | |
112 | ||
113 | box = Instance.new("TextBox",main) | |
114 | box.Name = "box" | |
115 | box.Size = UDim2.new(0.33,-5,0.1,0) | |
116 | box.Position = UDim2.new(0,0,0.88,0) | |
117 | box.BackgroundColor3 = Color3.new(70/255,70/255,70/255) | |
118 | box.BackgroundTransparency = 0.7 | |
119 | box.BorderColor3 = Color3.new(27/255,42/255,53/255) | |
120 | box.Font = "SciFi" | |
121 | box.Text = "Hacking101" | |
122 | box.TextScaled = true | |
123 | box.TextWrapped = true | |
124 | box.TextColor3 = Color3.new(255/255,255/255,255/255) | |
125 | box.TextStrokeTransparency = 0 | |
126 | ||
127 | box2 = Instance.new("TextBox",main) | |
128 | box2.Name = "box" | |
129 | box2.Size = UDim2.new(0.33,-5,0.1,0) | |
130 | box2.Position = UDim2.new(0.33,5,0.88,0) | |
131 | box2.BackgroundColor3 = Color3.new(70/255,70/255,70/255) | |
132 | box2.BackgroundTransparency = 0.7 | |
133 | box2.BorderColor3 = Color3.new(27/255,42/255,53/255) | |
134 | box2.Font = "SciFi" | |
135 | box2.Text = "Joseph2235" | |
136 | box2.TextScaled = true | |
137 | box2.TextWrapped = true | |
138 | box2.TextColor3 = Color3.new(255/255,255/255,255/255) | |
139 | box2.TextStrokeTransparency = 0 | |
140 | ||
141 | one = Instance.new("ScrollingFrame",list) | |
142 | one.Name = "one" | |
143 | one.Size = UDim2.new(1,0,.9,0) | |
144 | one.Position = UDim2.new(0,0,0.1,0) | |
145 | one.BackgroundColor3 = Color3.new(100/255,100/255,100/255) | |
146 | one.BorderSizePixel = 0 | |
147 | one.ScrollBarThickness = 0 | |
148 | ||
149 | two = Instance.new("ScrollingFrame",list) | |
150 | two.Name = "two" | |
151 | two.Visible = false | |
152 | two.Size = UDim2.new(1,0,.9,0) | |
153 | two.Position = UDim2.new(0,0,0.1,0) | |
154 | two.BackgroundColor3 = Color3.new(100/255,100/255,100/255) | |
155 | two.BorderSizePixel = 0 | |
156 | two.ScrollBarThickness = 0 | |
157 | ||
158 | three = Instance.new("ScrollingFrame",list) | |
159 | three.Name = "three" | |
160 | three.Visible = false | |
161 | three.Size = UDim2.new(1,0,.9,0) | |
162 | three.Position = UDim2.new(0,0,0.1,0) | |
163 | three.BackgroundColor3 = Color3.new(100/255,100/255,100/255) | |
164 | three.BorderSizePixel = 0 | |
165 | three.ScrollBarThickness = 0 | |
166 | ||
167 | four = Instance.new("ScrollingFrame",list) | |
168 | four.Name = "four" | |
169 | four.Visible = false | |
170 | four.Size = UDim2.new(1,0,.9,0) | |
171 | four.Position = UDim2.new(0,0,0.1,0) | |
172 | four.BackgroundColor3 = Color3.new(100/255,100/255,100/255) | |
173 | four.BorderSizePixel = 0 | |
174 | four.ScrollBarThickness = 0 | |
175 | ||
176 | exit.MouseButton1Down:connect(function() | |
177 | if closed == false then | |
178 | main:TweenPosition(UDim2.new(-1,125,0.5,-125),"Out","Quad",4,true) | |
179 | changelist.Text = "Open" | |
180 | closed = true | |
181 | end | |
182 | end) | |
183 | ||
184 | tab = 1 | |
185 | listtab = { | |
186 | "one", | |
187 | "two", | |
188 | "three", | |
189 | "four" | |
190 | } | |
191 | tabname = { | |
192 | "Scripts", | |
193 | "FE Scripts", | |
194 | "Players", | |
195 | "Server" | |
196 | } | |
197 | changelist.MouseButton1Down:connect(function() | |
198 | if closed == true then | |
199 | changelist.Text = tabname[tab] | |
200 | main:TweenPosition(UDim2.new(0,125,0.5,-125),"Out","Quad",2,true) | |
201 | closed = false | |
202 | elseif closed == false then | |
203 | list[listtab[tab]].Visible = false | |
204 | if tab == 4 then | |
205 | tab=1 | |
206 | changelist.Text = tabname[1] | |
207 | list[listtab[1]].Visible = true | |
208 | else list[listtab[tab+1]].Visible = true | |
209 | changelist.Text = tabname[tab+1] | |
210 | tab=tab+1 | |
211 | end | |
212 | end | |
213 | end) | |
214 | values = { | |
215 | 5, | |
216 | 5, | |
217 | 5, | |
218 | 5 | |
219 | } | |
220 | function button(name,ls,val) | |
221 | local b = Instance.new("TextButton",ls) | |
222 | b.Name = name | |
223 | b.BackgroundColor3 = Color3.new(180/255,0/255,0/255) | |
224 | b.BorderColor3 = Color3.new(160/255,0/255,0/255) | |
225 | b.Position = UDim2.new(0,0,0,values[val]) | |
226 | b.Size = UDim2.new(1,0,0,25) | |
227 | b.Font = "SciFi" | |
228 | b.Text = name | |
229 | b.TextScaled = true | |
230 | b.TextWrapped = true | |
231 | b.TextColor3 = Color3.new(255/255,255/255,255/255) | |
232 | b.TextStrokeColor3 = Color3.new(0/255,0/255,0/255) | |
233 | b.TextStrokeTransparency = 0 | |
234 | values[val] = values[val]+30 | |
235 | return b | |
236 | ||
237 | end | |
238 | local load = "" | |
239 | function setdesc(Title,Desc,PlaceID,boxes,box1,box2) | |
240 | stit.Text = Title | |
241 | desc.Text = Desc | |
242 | if PlaceID == 0 then | |
243 | wrn.Visible = false | |
244 | elseif PlaceID > 0 then | |
245 | if game.PlaceId ~= PlaceID then | |
246 | wrn.Visible = true else | |
247 | wrn.Visible = false | |
248 | end | |
249 | end | |
250 | if boxes == 0 then textbox0() elseif boxes == 1 then textbox1(box1) elseif boxes == 2 then textbox2(box1,box2) end | |
251 | end | |
252 | function textbox2(one,two) | |
253 | box.Visible = true | |
254 | box2.Visible = true | |
255 | exe.Visible = true | |
256 | box.Text = one | |
257 | box2.Text = two | |
258 | box:TweenSizeAndPosition(UDim2.new(0.33, -5,0.1, 0),UDim2.new(0,0,0.88,0),"Out","Quad",0.5,true) | |
259 | box2:TweenSizeAndPosition(UDim2.new(0.33,-5,0.1,0),UDim2.new(0.33,5,0.88,0),"Out","Quad",0.5,true) | |
260 | exe:TweenSizeAndPosition(UDim2.new(0.33, -5,0.1, 0),UDim2.new(0.65,10,0.88,0),"Out","Quad",0.5,true) | |
261 | end | |
262 | function textbox1(one) | |
263 | box.Visible = true | |
264 | box2.Visible = false | |
265 | exe.Visible = true | |
266 | box.Text = one | |
267 | box:TweenSizeAndPosition(UDim2.new(0.5, -5,0.1, 0),UDim2.new(0,0,0.88,0),"Out","Quad",0.5,true) | |
268 | exe:TweenSizeAndPosition(UDim2.new(0.5, -5,0.1, 0),UDim2.new(0.5,0,0.88,0),"Out","Quad",0.5,true) | |
269 | end | |
270 | function textbox0() | |
271 | box.Visible = false | |
272 | box2.Visible = false | |
273 | exe.Visible = true | |
274 | exe:TweenSizeAndPosition(UDim2.new(1, 0,0.1, 0),UDim2.new(0,0,0.88,0),"Out","Quad",0.5,true) | |
275 | end | |
276 | ||
277 | exe.MouseButton1Down:connect(function() | |
278 | loadstring(load)() | |
279 | end) | |
280 | ffplayer = button("Coming Soon!",three,3) | |
281 | musicgui = button("Music Gui",one,1) | |
282 | apocesp = button("Apoc ESP",one,1) | |
283 | redwoodguns = button("Redwood Guns",one,1) | |
284 | BSODScript = button("BSOD",one,1) | |
285 | HilaryScript = button("Hilary Meme",one,1) | |
286 | TrumpScript = button("Trump Meme",one,1) | |
287 | DuckScript = button("Duck",one,1) | |
288 | DatBoi = button("DatBoi",one,1) | |
289 | Treasure = button("Treasure Island",one,1) | |
290 | PLG = button("Prison Life Guns",one,1) | |
291 | Skybox = button("Skybox GUI",one,1) | |
292 | FEGod = button("FE God",two,2) | |
293 | Shutdown = button("Shutdown",four,4) | |
294 | AdminGui = button("Admin GUI",one,1) | |
295 | RF = button("Rainbow Fire",one,1) | |
296 | sunsetcity = button("Sunset City Money",one,1) | |
297 | ffplayer.MouseButton1Down:connect(function() | |
298 | setdesc("Coming Soon!","Raindrop has a problem with the script method. Please wait till the problem is resolved. Thanks!",0,1,"Type here") | |
299 | load = [[print("This will be fixed in Raindrop 2.0.0")]] | |
300 | end) | |
301 | musicgui.MouseButton1Down:connect(function() | |
302 | setdesc("Music Gui by DragonRamer","Music gui that lets you insert music with properties such as: Pitch, Volume etc.",0,0) | |
303 | load = [[loadstring(Raindrop:DownloadString('http://pastebin.com/raw/606ktfaU'))()]] | |
304 | end) | |
305 | apocesp.MouseButton1Down:connect(function() | |
306 | setdesc("Apoc ESP by Brack4712","Lets you see your enemies from far distances.",0,0) | |
307 | load = [[for i,v in pairs(game.Players:GetChildren()) do | |
308 | local handle = Instance.new("Handles",game.Players.LocalPlayer.PlayerGui) | |
309 | handle.Adornee = v.Character.Head | |
310 | handle.Color3 = Color3.new(0/255, 255/255, 0/255) | |
311 | handle.Transparency = 0 | |
312 | handle.Style = "Resize" | |
313 | end]] | |
314 | end) | |
315 | redwoodguns.MouseButton1Down:connect(function() | |
316 | setdesc("Redwood Gun Giver by Bunnylord","Gives you three items: \n Taser \n Beretta M9 \n UMP-45",402122991,0) | |
317 | load = [[game.Workspace.resources.RemoteFunction:InvokeServer("giveItem", "Taser") | |
318 | wait(1) | |
319 | game.Workspace.resources.RemoteFunction:InvokeServer("giveItem", "Beretta M9") | |
320 | wait(1) | |
321 | game.Workspace.resources.RemoteFunction:InvokeServer("giveItem", "UMP-45")]] | |
322 | end) | |
323 | BSODScript.MouseButton1Down:connect(function() | |
324 | setdesc("BSOD Script by joseph2235","Destroys the server with particles + music",0,0) | |
325 | load = [[local w = workspace:GetChildren() | |
326 | local a = Instance.new("Sky",game.Lighting) | |
327 | local b = {"Bk","Dn","Ft","Lf","Rt","Up"} | |
328 | for _,v in pairs(b) do | |
329 | a["Skybox"..v]="rbxassetid://111954944" | |
330 | end | |
331 | for q,p in pairs(game.Players:GetPlayers()) do | |
332 | local c = Instance.new("ParticleEmitter",p.Character.Torso) | |
333 | c.Texture = "rbxassetid://79187163" | |
334 | c.VelocitySpread = 50 end | |
335 | local d = Instance.new("Sound",workspace) | |
336 | d.SoundId = "rbxassetid://507839176" | |
337 | d.Looped = true | |
338 | d:Play() | |
339 | for i= 1,#w do | |
340 | if w[i]:isA("BasePart") then | |
341 | pe = Instance.new("ParticleEmitter", w[i]) | |
342 | pe.Texture = "rbxassetid://79187163" | |
343 | pe.VelocitySpread = 5 | |
344 | end end | |
345 | for n,m in pairs(game.Players:GetPlayers()) do | |
346 | local dd = Instance.new("ParticleEmitter",m.Character.Torso) | |
347 | dd.Texture = "rbxassetid://357822657" | |
348 | dd.VelocitySpread = 50 end]] | |
349 | end) | |
350 | HilaryScript.MouseButton1Down:connect(function() | |
351 | setdesc("Hilary Meme Script by joseph2235","Makes your head a Hilary image",0,0) | |
352 | load = [[gui1=Instance.new("BillboardGui") | |
353 | gui1.Parent = game.Players.LocalPlayer.Character.Head | |
354 | gui1.Adornee = game.Players.LocalPlayer.Character.Head | |
355 | gui1.Size=UDim2.new(2.5,0,2.5,0) | |
356 | gui1.StudsOffset=Vector3.new(0,0.2,0) | |
357 | gui1.AlwaysOnTop = true | |
358 | text1=Instance.new("ImageLabel") | |
359 | text1.Image = "rbxassetid://499105465" -- | |
360 | text1.Size=UDim2.new(1,0,1,0) | |
361 | text1.Position=UDim2.new(0,0,0,0) | |
362 | text1.BackgroundTransparency = 1 | |
363 | text1.Parent=gui1 | |
364 | game.Players.LocalPlayer.Character.Head.Transparency = 1]] | |
365 | end) | |
366 | TrumpScript.MouseButton1Down:connect(function() | |
367 | setdesc("Trump Meme Script by joseph2235","Makes your head a Trump image",0,0) | |
368 | load = [[gui1=Instance.new("BillboardGui") | |
369 | gui1.Parent = game.Players.LocalPlayer.Character.Head | |
370 | gui1.Adornee = game.Players.LocalPlayer.Character.Head | |
371 | gui1.Size=UDim2.new(2.5,0,2.5,0) | |
372 | gui1.StudsOffset=Vector3.new(0,0.2,0) | |
373 | gui1.AlwaysOnTop = true | |
374 | text1=Instance.new("ImageLabel") | |
375 | text1.Image = "rbxassetid://343377229" | |
376 | text1.Size=UDim2.new(1,0,1,0) | |
377 | text1.Position=UDim2.new(0,0,0,0) | |
378 | text1.BackgroundTransparency = 1 | |
379 | text1.Parent=gui1 | |
380 | game.Players.LocalPlayer.Character.Head.Transparency = 1 | |
381 | for i,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do if v.ClassName == 'Hat' then v:remove() end end]] | |
382 | end) | |
383 | DuckScript.MouseButton1Down:connect(function() | |
384 | setdesc("Duck Script by 3dsboy08","Makes your character a giant duck",0,0) | |
385 | load = [[local pchar = game.Players.LocalPlayer.Character | |
386 | local duck = Instance.new("SpecialMesh", pchar.Torso) | |
387 | duck.MeshType = "FileMesh" | |
388 | duck.MeshId = "rbxassetid://9419831" | |
389 | duck.TextureId = "rbxassetid://9419827" | |
390 | duck.Scale = Vector3.new(5,5,5) | |
391 | pchar.Head.Transparency = 1 | |
392 | pchar["Left Arm"].Transparency = 1 | |
393 | pchar["Right Arm"].Transparency = 1 | |
394 | pchar["Left Leg"].Transparency = 1 | |
395 | pchar["Right Leg"].Transparency = 1]] | |
396 | end) | |
397 | DatBoi.MouseButton1Down:connect(function() | |
398 | setdesc("DatBoi script by joseph2235","Makes you datboi",0,0) | |
399 | load = [[local char = game.Players.LocalPlayer.Character | |
400 | ||
401 | for i,v in pairs(char.Torso:GetChildren()) do | |
402 | if v.ClassName == 'Decal' then | |
403 | v:Destroy() | |
404 | end | |
405 | end | |
406 | for i,v in pairs(char:GetChildren()) do | |
407 | if v.ClassName == 'Hat' then | |
408 | v:Destroy() | |
409 | end | |
410 | end | |
411 | for i,v in pairs(char.Head:GetChildren()) do | |
412 | if v.ClassName == 'Decal' then | |
413 | v:Destroy() | |
414 | end | |
415 | end | |
416 | ||
417 | local datboi = Instance.new('SpecialMesh', char.Torso) | |
418 | datboi.MeshType = 'FileMesh' | |
419 | datboi.MeshId = 'http://www.roblox.com/asset/?id=430095888' | |
420 | datboi.TextureId = 'http://www.roblox.com/asset/?id=171886325' | |
421 | datboi.Scale = Vector3.new(0.01, 0.01, 0.01) | |
422 | char.Head.Transparency = 1 | |
423 | char['Left Arm'].Transparency = 1 | |
424 | char['Right Arm'].Transparency = 1 | |
425 | char['Left Leg'].Transparency = 1 | |
426 | char['Right Leg'].Transparency = 1]] | |
427 | end) | |
428 | Treasure.MouseButton1Down:connect(function() | |
429 | setdesc("Treasure Island Money Script by Unit-01","Teleports all metals to you",506399422,0) | |
430 | load = [[for i,v in pairs(workspace.Metals:GetChildren()) do | |
431 | v.Position = game.Players.LocalPlayer.Character.Head.Position | |
432 | end]] | |
433 | end) | |
434 | PLG.MouseButton1Down:connect(function() | |
435 | setdesc("Prison Life Script by haxxor222","Spawns Remington 870, M9 and AK47 above your character",155615604,0) | |
436 | load = [[local weapons = {"Remington 870", "M9", "AK-47", "M4A1"} | |
437 | for i, v in pairs(game.Workspace["Prison_ITEMS"].giver:GetChildren()) do | |
438 | for j, k in pairs(weapons) do | |
439 | if v.Name == k then | |
440 | v:MoveTo(game.Players.LocalPlayer.Character.Torso.Position) | |
441 | end | |
442 | end | |
443 | end]] | |
444 | end) | |
445 | Skybox.MouseButton1Down:connect(function() | |
446 | setdesc("Skybox GUI Setter by joseph2235","Sets the skybox to whatever you put in the GUI",0,0) | |
447 | load = [[loadstring(Raindrop:DownloadString('http://pastebin.com/raw/HWJrtyX1'))()]] | |
448 | end) | |
449 | FEGod.MouseButton1Down:connect(function() | |
450 | setdesc("FE God Script by unverified","Uses a simple FE trick to give ou god \n (Removes humanoid and re-inserts it)",0,0) | |
451 | load = [[game.Players.LocalPlayer.Character.Humanoid:Destroy() | |
452 | Instance.new("Humanoid",game.Players.LocalPlayer.Character)]] | |
453 | end) | |
454 | Shutdown.MouseButton1Down:connect(function() | |
455 | setdesc("Shutdown Script by unverified","Shuts down the server",0,0) | |
456 | load = [[game.Workspace.Gravity = 0/0]] | |
457 | end) | |
458 | AdminGui.MouseButton1Down:connect(function() | |
459 | setdesc("Simple Admin GUI by joseph2235","GUI for inserting admin commands",0,0) | |
460 | load = [[loadstring(Raindrop:DownloadString('http://pastebin.com/raw/xTbeGwVK'))()]] | |
461 | end) | |
462 | RF.MouseButton1Down:connect(function() | |
463 | setdesc("Rainbow Fire by unverified","Gives rainbow fire to the localplayer's torso",0,0) | |
464 | load = [[fire = Instance.new("Fire", game.Players.LocalPlayer.Character.Torso) | |
465 | fire.Heat = 25 | |
466 | fire.Size = 30 | |
467 | while true do wait(1) | |
468 | fire.Color = Color3.new(math.random(),math.random(),math.random()) | |
469 | end]] | |
470 | end) | |
471 | sunsetcity.MouseButton1Down:connect(function() | |
472 | setdesc("Sunset City Money by OVOXO","Completes a sunset city job 10x (money maker)",28397429,0) | |
473 | load = [[local i = 0 | |
474 | local b = 10 | |
475 | repeat | |
476 | game.ReplicatedStorage.Remotes.Events.CompletedJob:FireServer() | |
477 | wait(0.1) | |
478 | i = i + 1 | |
479 | wait(0.1) | |
480 | print(i) | |
481 | until i == b]] | |
482 | end) | |
483 | sunsetcity.MouseButton1Down:connect(function() | |
484 | setdesc("Bucket Hub by [TreZ] Bucket","GUI hub with scripts",0,0) | |
485 | load = [[loadstring(Raindrop:DownloadString('http://pastebin.com/raw/zvY4gRJQ'))()]] | |
486 | end) |