Advertisement
Guest User

Raindrop Gui

a guest
May 10th, 2017
12,233
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 52.82 KB | None | 0 0
  1. --TITLE: Raindrop Gui
  2. gui = Instance.new("ScreenGui",game.Players.LocalPlayer.PlayerGui)
  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 = [[local ScreenGui = Instance.new("ScreenGui", game.Players.LocalPlayer.PlayerGui)
  304. ScreenGui.Name = "MusicGui"
  305. ScreenGui.ResetOnSpawn = true
  306. local bamount = 0
  307.  
  308. Sound = Instance.new("Sound")
  309. Sound.Parent = workspace
  310. Sound.Name = "Baby"
  311. Sound.Looped = true
  312.  
  313. local Frame = Instance.new("Frame", ScreenGui)
  314. Frame.Active = true
  315. Frame.BackgroundColor3 = Color3.new(31/255, 31/255, 31/255)
  316. Frame.BackgroundTransparency = 0.5
  317. Frame.BorderSizePixel = 0
  318. Frame.Position = UDim2.new(0, 10, 0.5, -100)
  319. Frame.Size = UDim2.new(0, 300,0, 200)
  320. Frame.Draggable = true
  321.  
  322. local Title = Instance.new("TextLabel", Frame)
  323. Title.BackgroundColor3 = Color3.new(255/255, 255/255, 255/255)
  324. Title.BackgroundTransparency = 0.1
  325. Title.BorderSizePixel = 0
  326. Title.Name = "Title"
  327. Title.Size = UDim2.new(1, 0, 0, 20)
  328. Title.Text = "Music-GUI"
  329.  
  330. local SoundID = Instance.new("TextBox", Frame)
  331. SoundID.Name = 'SoundID'
  332. SoundID.BackgroundColor3 = Color3.new(31/255, 31/255, 31/255)
  333. SoundID.BackgroundTransparency = 0.5
  334. SoundID.BorderColor3 = Color3.new(31/255, 31/255, 31/255)
  335. SoundID.BorderSizePixel = 0
  336. SoundID.Position = UDim2.new(0, 0, 0, 50)
  337. SoundID.Size = UDim2.new(0, 300,0, 50)
  338. SoundID.Text = "Sound-ID"
  339. SoundID.TextSize = 14
  340. SoundID.TextColor = BrickColor.new(255/255, 255/255, 255/255)
  341. SoundID.TextWrapped = true
  342. SoundID.TextScaled = true
  343.  
  344. local StartSound = Instance.new("TextButton", Frame)
  345. StartSound.Name = 'Start'
  346. StartSound.BackgroundColor3 = Color3.new(0/255, 255/255, 0/255)
  347. StartSound.BackgroundTransparency = 0.5
  348. StartSound.BorderColor3 = Color3.new(255/255, 255/255, 255/255)
  349. StartSound.BorderSizePixel = 1
  350. StartSound.Position = UDim2.new(0, 0, 0, 150)
  351. StartSound.Size = UDim2.new(0, 150,0, 50)
  352. StartSound.TextSize = 24
  353. StartSound.TextColor = BrickColor.new(255/255, 255/255, 255/255)
  354. StartSound.Text = 'Start'
  355.  
  356. local StopSound = Instance.new("TextButton", Frame)
  357. StopSound.Name = 'Stop'
  358. StopSound.BackgroundColor3 = Color3.new(255/255, 0/255, 0/255)
  359. StopSound.BackgroundTransparency = 0.5
  360. StopSound.BorderColor3 = Color3.new(255/255, 255/255, 255/255)
  361. StopSound.BorderSizePixel = 1
  362. StopSound.Position = UDim2.new(0, 150, 0, 150)
  363. StopSound.Size = UDim2.new(0, 150,0, 50)
  364. StopSound.TextSize = 24
  365. StopSound.TextColor = BrickColor.new(255/255, 255/255, 255/255)
  366. StopSound.Text = 'Stop'
  367.  
  368. local Volume = Instance.new("TextBox", Frame)
  369. Volume.Name = 'Volume'
  370. Volume.BackgroundColor3 = Color3.new(0/255, 0/255, 0/255)
  371. Volume.BackgroundTransparency = 0.5
  372. Volume.BorderColor3 = Color3.new(255/255, 255/255, 255/255)
  373. Volume.BorderSizePixel = 1
  374. Volume.Position = UDim2.new(0, 150, 0, 125)
  375. Volume.Size = UDim2.new(0, 150,0, 25)
  376. Volume.Text = "Volume Amount"
  377. Volume.TextSize = 20
  378. Volume.TextColor = BrickColor.new(255/255, 255/255, 255/255)
  379. Volume.TextWrapped = true
  380. Volume.TextScaled = true
  381.  
  382. local Pitch = Instance.new("TextBox", Frame)
  383. Pitch.Name = 'Pitch'
  384. Pitch.BackgroundColor3 = Color3.new(0/255, 0/255, 0/255)
  385. Pitch.BackgroundTransparency = 0.5
  386. Pitch.BorderColor3 = Color3.new(255/255, 255/255, 255/255)
  387. Pitch.BorderSizePixel = 1
  388. Pitch.Position = UDim2.new(0, 0, 0, 125)
  389. Pitch.Size = UDim2.new(0, 150,0, 25)
  390. Pitch.Text = "Pitch Amount"
  391. Pitch.TextSize = 20
  392. Pitch.TextColor = BrickColor.new(255/255, 255/255, 255/255)
  393. Pitch.TextWrapped = true
  394. Pitch.TextScaled = true
  395.  
  396.  
  397. --Start Of Scripting & End Of Buttons
  398.  
  399. StartSound.MouseButton1Down:connect(function()
  400.     Sound.SoundId = 'rbxassetid://'..SoundID.Text
  401.     Sound:Play()
  402.     Sound.TimePosition = 0
  403. end)
  404.  
  405. StopSound.MouseButton1Down:connect(function()
  406.     Sound:Stop()
  407.     Sound.TimePosition = 0
  408. end)
  409.  
  410. Volume.InputEnded:connect(function()
  411.     Sound.Volume = Volume.Text
  412. end)
  413.  
  414. Pitch.InputEnded:connect(function()
  415.     Sound.Pitch = Pitch.Text
  416. end)
  417.  
  418. Sound.Volume = 1
  419. Sound.Pitch = 1
  420.  
  421. --End of Scripting & End of Script
  422. ]]
  423. end)
  424. apocesp.MouseButton1Down:connect(function()
  425.     setdesc("Apoc ESP by Brack4712","Lets you see your enemies from far distances.",0,0)
  426.     load = [[for i,v in pairs(game.Players:GetChildren()) do
  427.     local handle = Instance.new("Handles",game.Players.LocalPlayer.PlayerGui)
  428.     handle.Adornee = v.Character.Head
  429.     handle.Color3 = Color3.new(0/255, 255/255, 0/255)
  430.     handle.Transparency = 0
  431.     handle.Style = "Resize"
  432.     end]]
  433. end)
  434. redwoodguns.MouseButton1Down:connect(function()
  435.     setdesc("Redwood Gun Giver by Bunnylord","Gives you three items: \n Taser \n Beretta M9 \n UMP-45",402122991,0)
  436.     load = [[game.Workspace.resources.RemoteFunction:InvokeServer("giveItem", "Taser")
  437. wait(1)
  438. game.Workspace.resources.RemoteFunction:InvokeServer("giveItem", "Beretta M9")
  439. wait(1)
  440. game.Workspace.resources.RemoteFunction:InvokeServer("giveItem", "UMP-45")]]
  441. end)
  442. BSODScript.MouseButton1Down:connect(function()
  443.     setdesc("BSOD Script by joseph2235","Destroys the server with particles + music",0,0)
  444.     load = [[local w = workspace:GetChildren()
  445. local a = Instance.new("Sky",game.Lighting)
  446. local b = {"Bk","Dn","Ft","Lf","Rt","Up"}
  447. for _,v in pairs(b) do
  448. a["Skybox"..v]="rbxassetid://111954944"
  449. end
  450. for q,p in pairs(game.Players:GetPlayers()) do
  451. local c = Instance.new("ParticleEmitter",p.Character.Torso)
  452. c.Texture = "rbxassetid://79187163"
  453. c.VelocitySpread = 50 end
  454. local d = Instance.new("Sound",workspace)
  455. d.SoundId = "rbxassetid://507839176"
  456. d.Looped = true
  457. d:Play()
  458. for i= 1,#w do
  459. if w[i]:isA("BasePart") then
  460. pe = Instance.new("ParticleEmitter", w[i])
  461. pe.Texture = "rbxassetid://79187163"
  462. pe.VelocitySpread = 5
  463. end end
  464. for n,m in pairs(game.Players:GetPlayers()) do
  465. local dd = Instance.new("ParticleEmitter",m.Character.Torso)
  466. dd.Texture = "rbxassetid://357822657"
  467. dd.VelocitySpread = 50 end]]
  468. end)
  469. HilaryScript.MouseButton1Down:connect(function()
  470.     setdesc("Hilary Meme Script by joseph2235","Makes your head a Hilary image",0,0)
  471.     load = [[gui1=Instance.new("BillboardGui")
  472. gui1.Parent = game.Players.LocalPlayer.Character.Head
  473. gui1.Adornee = game.Players.LocalPlayer.Character.Head
  474. gui1.Size=UDim2.new(2.5,0,2.5,0)
  475. gui1.StudsOffset=Vector3.new(0,0.2,0)
  476. gui1.AlwaysOnTop = true
  477. text1=Instance.new("ImageLabel")
  478. text1.Image = "rbxassetid://499105465" --
  479. text1.Size=UDim2.new(1,0,1,0)
  480. text1.Position=UDim2.new(0,0,0,0)
  481. text1.BackgroundTransparency = 1
  482. text1.Parent=gui1
  483. game.Players.LocalPlayer.Character.Head.Transparency = 1]]
  484. end)
  485. TrumpScript.MouseButton1Down:connect(function()
  486.     setdesc("Trump Meme Script by joseph2235","Makes your head a Trump image",0,0)
  487.     load = [[gui1=Instance.new("BillboardGui")
  488. gui1.Parent = game.Players.LocalPlayer.Character.Head
  489. gui1.Adornee = game.Players.LocalPlayer.Character.Head
  490. gui1.Size=UDim2.new(2.5,0,2.5,0)
  491. gui1.StudsOffset=Vector3.new(0,0.2,0)
  492. gui1.AlwaysOnTop = true
  493. text1=Instance.new("ImageLabel")
  494. text1.Image = "rbxassetid://343377229"
  495. text1.Size=UDim2.new(1,0,1,0)
  496. text1.Position=UDim2.new(0,0,0,0)
  497. text1.BackgroundTransparency = 1
  498. text1.Parent=gui1
  499. game.Players.LocalPlayer.Character.Head.Transparency = 1
  500. for i,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do if v.ClassName == 'Hat' then v:remove() end end]]
  501. end)
  502. DuckScript.MouseButton1Down:connect(function()
  503.     setdesc("Duck Script by 3dsboy08","Makes your character a giant duck",0,0)
  504.     load = [[local pchar = game.Players.LocalPlayer.Character                
  505. local duck = Instance.new("SpecialMesh", pchar.Torso)
  506. duck.MeshType = "FileMesh"
  507. duck.MeshId = "rbxassetid://9419831"
  508. duck.TextureId = "rbxassetid://9419827"
  509. duck.Scale = Vector3.new(5,5,5)
  510. pchar.Head.Transparency = 1
  511. pchar["Left Arm"].Transparency = 1
  512. pchar["Right Arm"].Transparency = 1
  513. pchar["Left Leg"].Transparency = 1
  514. pchar["Right Leg"].Transparency = 1]]
  515. end)
  516. DatBoi.MouseButton1Down:connect(function()
  517.     setdesc("DatBoi script by joseph2235","Makes you datboi",0,0)
  518.     load = [[local char = game.Players.LocalPlayer.Character
  519.  
  520. for i,v in pairs(char.Torso:GetChildren()) do
  521.     if v.ClassName == 'Decal' then
  522.          v:Destroy()
  523.     end
  524. end
  525. for i,v in pairs(char:GetChildren()) do
  526.     if v.ClassName == 'Hat' then
  527.         v:Destroy()
  528.     end
  529. end
  530. for i,v in pairs(char.Head:GetChildren()) do
  531.     if v.ClassName == 'Decal' then
  532.         v:Destroy()
  533.     end
  534. end
  535.  
  536. local datboi = Instance.new('SpecialMesh', char.Torso)
  537. datboi.MeshType = 'FileMesh'
  538. datboi.MeshId = 'http://www.roblox.com/asset/?id=430095888'
  539. datboi.TextureId = 'http://www.roblox.com/asset/?id=171886325'
  540. datboi.Scale = Vector3.new(0.01, 0.01, 0.01)
  541. char.Head.Transparency = 1
  542. char['Left Arm'].Transparency = 1
  543. char['Right Arm'].Transparency = 1
  544. char['Left Leg'].Transparency = 1
  545. char['Right Leg'].Transparency = 1]]
  546. end)
  547. Treasure.MouseButton1Down:connect(function()
  548.     setdesc("Treasure Island Money Script by Unit-01","Teleports all metals to you",506399422,0)
  549.     load = [[for i,v in pairs(workspace.Metals:GetChildren()) do
  550. v.Position = game.Players.LocalPlayer.Character.Head.Position
  551. end]]
  552. end)
  553. PLG.MouseButton1Down:connect(function()
  554.     setdesc("Prison Life Script by haxxor222","Spawns Remington 870, M9 and AK47 above your character",155615604,0)
  555.     load = [[local weapons = {"Remington 870", "M9", "AK-47", "M4A1"}
  556. for i, v in pairs(game.Workspace["Prison_ITEMS"].giver:GetChildren()) do
  557. for j, k in pairs(weapons) do
  558. if v.Name == k then
  559. v:MoveTo(game.Players.LocalPlayer.Character.Torso.Position)
  560. end
  561. end
  562. end]]
  563. end)
  564. Skybox.MouseButton1Down:connect(function()
  565.     setdesc("Skybox GUI Setter by joseph2235","Sets the skybox to whatever you put in the GUI",0,0)
  566.     load = [[--joseph2235
  567. gui = Instance.new("ScreenGui",game.Players.LocalPlayer.PlayerGui)
  568. gui.Name = "SkyboxSetter"
  569. gui.ResetOnSpawn = false
  570.  
  571. box = Instance.new("Frame",gui)
  572. box.Name = "Box"
  573. box.Size = UDim2.new(0,300,0,200)
  574. box.Position = UDim2.new(0,650,0,300)
  575. box.BackgroundColor3 = Color3.new(255,255,255)
  576. box.BackgroundTransparency = .65
  577. box.BorderSizePixel = 0
  578. box.Active = true
  579. box.Draggable = true
  580.  
  581. clse = Instance.new("TextButton",box)
  582. clse.Name = "CloseButton"
  583. clse.Size = UDim2.new(0,25,0,25)
  584. clse.Position = UDim2.new(0,275,0,0)
  585. clse.BackgroundColor3 = Color3.new(255,0,0)
  586. clse.BackgroundTransparency = .7
  587. clse.BorderSizePixel = 0
  588. clse.Font = "SourceSansLight"
  589. clse.FontSize = "Size18"
  590. clse.Text = "X"
  591. clse.TextColor3 = Color3.new(0,0,0)
  592.  
  593. top = Instance.new("TextLabel",box)
  594. top.Name = "TopBar"
  595. top.Size = UDim2.new(0,275,0,25)
  596. top.BackgroundColor3 = Color3.new(255,255,255)
  597. top.BackgroundTransparency = .45
  598. top.BorderSizePixel = 0
  599. top.Font = "SourceSans"
  600. top.FontSize = "Size14"
  601. top.Text = "Skybox Setter"
  602. top.TextColor3 = Color3.new(0,0,0)
  603.  
  604. tbox = Instance.new("TextBox",box)
  605. tbox.Name = "IdBox"
  606. tbox.Size = UDim2.new(0,300,0,100)
  607. tbox.Position = UDim2.new(0,0,0,25)
  608. tbox.BackgroundColor3 = Color3.new(255,255,255)
  609. tbox.BackgroundTransparency = .65
  610. tbox.BorderSizePixel = 0
  611. tbox.ClearTextOnFocus = false
  612. tbox.Font = "SourceSansLight"
  613. tbox.FontSize = "Size42"
  614. tbox.Text = "Asset-Id"
  615. tbox.TextColor3 = Color3.new(0,0,0)
  616.  
  617. sbtn = Instance.new("TextButton",box)
  618. sbtn.Name = "SetButton"
  619. sbtn.Size = UDim2.new(0,300,0,75)
  620. sbtn.Position = UDim2.new(0,0,0,125)
  621. sbtn.BackgroundColor3 = Color3.new(255,255,255)
  622. sbtn.BackgroundTransparency = .65
  623. sbtn.BorderSizePixel = 0
  624. sbtn.Font = "SourceSansLight"
  625. sbtn.FontSize = "Size36"
  626. sbtn.Text = "Set"
  627. sbtn.TextColor3 = Color3.new(0,0,0)
  628.  
  629. clse.MouseButton1Down:connect(function()
  630. gui:Remove()
  631. end)
  632.  
  633. sbtn.MouseButton1Down:connect(function()
  634. for o,p in pairs(game.Lighting:GetChildren()) do
  635. if p.ClassName == "Sky" then
  636. p:Remove()
  637. end
  638. end
  639.  
  640. local a=Instance.new("Sky",game.Lighting)
  641.  local b={"Bk","Dn","Ft","Lf","Rt","Up"}
  642.  for i,v in pairs(b) do
  643.  a["Skybox"..v]="rbxassetid://"..tbox.Text
  644.  end
  645. end)
  646. wait(.1)
  647. msg = Instance.new("Message",workspace) msg.Text = "Loaded! Made by joseph2235" wait(2) msg:Remove()
  648. ]]
  649. end)
  650. FEGod.MouseButton1Down:connect(function()
  651.     setdesc("FE God Script by unverified","Uses a simple FE trick to give ou god \n (Removes humanoid and re-inserts it)",0,0)
  652.     load = [[game.Players.LocalPlayer.Character.Humanoid:Destroy()
  653.         Instance.new("Humanoid",game.Players.LocalPlayer.Character)]]
  654. end)
  655. Shutdown.MouseButton1Down:connect(function()
  656.     setdesc("Shutdown Script by unverified","Shuts down the server",0,0)
  657.     load = [[game.Workspace.Gravity = 0/0]]
  658. end)
  659. AdminGui.MouseButton1Down:connect(function()
  660.     setdesc("Simple Admin GUI by joseph2235","GUI for inserting admin commands",0,0)
  661.     load = [[wait(2)
  662. gui = Instance.new("ScreenGui",game.Players.LocalPlayer.PlayerGui)
  663. gui.Name = "SimpleAdminGui"
  664. gui.ResetOnSpawn = false
  665.  
  666. box = Instance.new("Frame",gui)
  667. box.Name = "Box"
  668. box.Size = UDim2.new(0,401,0,275)
  669. box.Position = UDim2.new(0,602,0,-350)
  670. box.BackgroundColor3 = Color3.new(26/255,164/255,255)
  671. box.BackgroundTransparency = .3
  672. box.BorderColor3 = Color3.new(48/255,113/255,255)
  673. box.BorderSizePixel = 2
  674. box.Active = true
  675. box.Draggable = true
  676.  
  677. obox = Instance.new("Frame",gui)
  678. obox.Name = "OpenFrame"
  679. obox.Size = UDim2.new(0,300,0,45)
  680. obox.Position = UDim2.new(0,650,0,0)
  681. obox.BackgroundTransparency = .999
  682.  
  683. opn = Instance.new("TextButton",obox)
  684. opn.Name = "OpenButton"
  685. opn.Size = UDim2.new(0,300,0,45)
  686. opn.BackgroundColor3 = Color3.new(26/255,164/255,255)
  687. opn.BackgroundTransparency = .3
  688. opn.BorderColor3 = Color3.new(48/255,113/255,255)
  689. opn.BorderSizePixel = 2
  690. opn.Font = "SourceSans"
  691. opn.FontSize = "Size24"
  692. opn.Text = "Open"
  693. opn.TextColor3 = Color3.new(255,255,255)
  694. opn.TextStrokeTransparency = 0
  695.  
  696. Open = true
  697. opn.MouseButton1Down:connect(function()
  698. if Open == false then
  699. box:TweenPosition(UDim2.new(0,602,0,-350),'In','Quad',1)
  700. opn.Text = "Open"
  701. Open = true
  702. elseif Open == true then
  703. box:TweenPosition(UDim2.new(0,602,0,230),'In','Quad',1)
  704. opn.Text = "Close"
  705. Open = false
  706. end
  707. end)
  708.  
  709. top = Instance.new("TextLabel",box)
  710. top.Name = "TopBar"
  711. top.Size = UDim2.new(0,401,0,25)
  712. top.BackgroundColor3 = Color3.new(46/255,140/255,255)
  713. top.BorderSizePixel = 0
  714. top.Font = "SourceSans"
  715. top.FontSize = "Size14"
  716. top.Text = "Simple Admin Gui"
  717. top.TextColor3 = Color3.new(255,255,255)
  718. top.TextStrokeTransparency = 0
  719.  
  720. name = Instance.new("TextBox",box)
  721. name.Name = "NameBox"
  722. name.Size = UDim2.new(0,275,0,125)
  723. name.Position = UDim2.new(0,0,0,25)
  724. name.BackgroundColor3 = Color3.new(26/255,164/255,255)
  725. name.BackgroundTransparency = .4
  726. name.BorderColor3 = Color3.new(48/255,113/255,255)
  727. name.Font = "SourceSansLight"
  728. name.FontSize = "Size48"
  729. name.Text = "UserName"
  730. name.TextColor3 = Color3.new(255,255,255)
  731. name.TextStrokeTransparency = 0
  732. name.TextWrapped = true
  733. name.ClearTextOnFocus = false
  734.  
  735. val = Instance.new("TextBox",box)
  736. val.Name = "ValueBox"
  737. val.Size = UDim2.new(0,275,0,125)
  738. val.Position = UDim2.new(0,0,0,150)
  739. val.BackgroundColor3 = Color3.new(26/255,164/255,255)
  740. val.BackgroundTransparency = .4
  741. val.BorderColor3 = Color3.new(48/255,113/255,255)
  742. val.Font = "SourceSansLight"
  743. val.FontSize = "Size48"
  744. val.Text = "Value"
  745. val.TextColor3 = Color3.new(255,255,255)
  746. val.TextStrokeTransparency = 0
  747. val.TextWrapped = true
  748. val.ClearTextOnFocus = false
  749.  
  750. list = Instance.new("ScrollingFrame",box)
  751. list.Name = "List"
  752. list.Size = UDim2.new(0,125,0,250)
  753. list.Position = UDim2.new(0,276,0,25)
  754. list.BackgroundColor3 = Color3.new(26/255,164/255,255)
  755. list.BorderColor3 = Color3.new(48/255,113/255,255)
  756. list.BackgroundTransparency = .3
  757. list.ScrollBarThickness = 0
  758.  
  759. pos = 0
  760. function newbtn(txt)
  761. local a = Instance.new("TextButton",list)
  762. a.Name = txt
  763. a.Size = UDim2.new(0,125,0,25)
  764. a.Position = UDim2.new(0,0,0,pos)
  765. a.BackgroundColor3 = Color3.new(26/255,164/255,255)
  766. a.BackgroundTransparency = .5
  767. a.BorderColor3 = Color3.new(48/255,113/255,255)
  768. a.Font = "SourceSans"
  769. a.FontSize = "Size24"
  770. a.Text = txt
  771. a.TextColor3 = Color3.new(255,255,255)
  772. a.TextStrokeTransparency = 0
  773. a.TextWrapped = true
  774. pos = pos+26
  775. return a
  776. end
  777. pl = game.Players
  778. kill = newbtn("Kill") explode = newbtn("Explode") god = newbtn("God") ff = newbtn("ForceField") ws = newbtn("WalkSpeed") jp = newbtn("JumpPower") frz = newbtn("Freeze")
  779. thaw = newbtn("Thaw") naked = newbtn("Naked") block = newbtn("Blockhead") face = newbtn("Faceless") sparkles = newbtn("Sparkles") fire = newbtn("Fire")
  780. smoke = newbtn("Smoke") set = newbtn("Set Health") btools = newbtn("Btools") hide = newbtn("Hide Name") show = newbtn("Show Name")invis = newbtn("Invis")
  781. vis = newbtn("Vis") charapp = newbtn("CharApp")
  782.  
  783. charapp.MouseButton1Down:connect(function()
  784. local p = pl:FindFirstChild(name.Text)
  785. if p ~= nil then
  786. p.CharacterAppearanceId = val.Text
  787. p.Character:BreakJoints()
  788. end
  789. end)
  790. vis.MouseButton1Down:connect(function()
  791. local p = pl:FindFirstChild(name.Text)
  792. if p ~= nil then
  793. local a = p.Character
  794. a.Head.Transparency = 0
  795. a.Torso.Transparency = 0
  796. a["Right Leg"].Transparency = 0
  797. a["Left Leg"].Transparency = 0
  798. a["Right Arm"].Transparency = 0
  799. a["Left Arm"].Transparency = 0
  800. end
  801. end)
  802. invis.MouseButton1Down:connect(function()
  803. local p = pl:FindFirstChild(name.Text)
  804. if p ~= nil then
  805. local a = p.Character
  806. a.Head.Transparency = 1
  807. a.Torso.Transparency = 1
  808. a["Right Leg"].Transparency = 1
  809. a["Left Leg"].Transparency = 1
  810. a["Right Arm"].Transparency = 1
  811. a["Left Arm"].Transparency = 1
  812. end
  813. end)
  814. show.MouseButton1Down:connect(function()
  815. local p = pl:FindFirstChild(name.Text)
  816. if p ~= nil then
  817. p.Character.Head.Transparency = 0
  818. end
  819. end)
  820. hide.MouseButton1Down:connect(function()
  821. local p = pl:FindFirstChild(name.Text)
  822. if p ~= nil then
  823. p.Character.Head.Transparency = 1
  824. end
  825. end)
  826. btools.MouseButton1Down:connect(function()
  827. local p = pl:FindFirstChild(name.Text)
  828. if p ~= nil then
  829. wait(.1)
  830. local a = Instance.new("HopperBin")
  831. a.BinType = 1
  832. a.Parent = p.Backpack
  833. wait(.1)
  834. local b = Instance.new("HopperBin")
  835. b.BinType = 4
  836. b.Parent = p.Backpack
  837. wait(.1)
  838. local c = Instance.new("HopperBin")
  839. c.BinType = 3
  840. c.Parent = p.Backpack
  841. end
  842. end)
  843. set.MouseButton1Down:connect(function()
  844. local p = pl:FindFirstChild(name.Text)
  845. if p ~= nil then
  846. p.Character.Humanoid.MaxHealth = val.Text
  847. end
  848. end)
  849. smoke.MouseButton1Down:connect(function()
  850. local p = pl:FindFirstChild(name.Text)
  851. if p ~= nil then
  852. Instance.new("Smoke",p.Character.Torso)
  853. end
  854. end)
  855. fire.MouseButton1Down:connect(function()
  856. local p = pl:FindFirstChild(name.Text)
  857. if p ~= nil then
  858. Instance.new("Fire",p.Character.Torso)
  859. end
  860. end)
  861. sparkles.MouseButton1Down:connect(function()
  862. local p = pl:FindFirstChild(name.Text)
  863. if p ~= nil then
  864. Instance.new("Sparkles",p.Character.Torso)
  865. end
  866. end)
  867. face.MouseButton1Down:connect(function()
  868. local p = pl:FindFirstChild(name.Text)
  869. if p ~= nil then
  870. p.Character.Head.face:remove()
  871. end
  872. end)
  873. block.MouseButton1Down:connect(function()
  874. local p = pl:FindFirstChild(name.Text)
  875. if p ~= nil then
  876. p.Character.Head.Mesh:remove()
  877. end
  878. end)
  879. naked.MouseButton1Down:connect(function()
  880. local p = pl:FindFirstChild(name.Text)
  881. if p ~= nil then
  882. p.Character.Shirt:remove()
  883. p.Character.Pants:remove()
  884. p.Character.Torso.roblox:remove()
  885. end
  886. end)
  887. explode.MouseButton1Down:connect(function()
  888. local p = pl:FindFirstChild(name.Text)
  889. if p ~= nil then
  890. local a = Instance.new("Explosion",p.Character.Torso)
  891. a.Position = p.Character.Torso.Position
  892. end
  893. end)
  894. thaw.MouseButton1Down:connect(function()
  895. local p = pl:FindFirstChild(name.Text)
  896. if p ~= nil then
  897. p.Character.Torso.Anchored = false
  898. end
  899. end)
  900. frz.MouseButton1Down:connect(function()
  901. local p = pl:FindFirstChild(name.Text)
  902. if p ~= nil then
  903. p.Character.Torso.Anchored = true
  904. end
  905. end)
  906. jp.MouseButton1Down:connect(function()
  907. local p = pl:FindFirstChild(name.Text)
  908. if p ~= nil then
  909. p.Character.Humanoid.JumpPower = val.Text
  910. end
  911. end)
  912. ws.MouseButton1Down:connect(function()
  913. local p = pl:FindFirstChild(name.Text)
  914. if p ~= nil then
  915. p.Character.Humanoid.WalkSpeed = val.Text
  916. end
  917. end)
  918. ff.MouseButton1Down:connect(function()
  919. local p = pl:FindFirstChild(name.Text)
  920. if p ~= nil then
  921. Instance.new("ForceField",p.Character)
  922. end
  923. end)
  924. god.MouseButton1Down:connect(function()
  925. local p = pl:FindFirstChild(name.Text)
  926. if p ~= nil then
  927. p.Character.Humanoid.MaxHealth = 2000000000
  928. end
  929. end)
  930. kill.MouseButton1Down:connect(function()
  931. local p = pl:FindFirstChild(name.Text)
  932. if p ~= nil then
  933. p.Character:BreakJoints()
  934. end
  935. end)]]
  936. end)
  937. RF.MouseButton1Down:connect(function()
  938.     setdesc("Rainbow Fire by unverified","Gives rainbow fire to the localplayer's torso",0,0)
  939.     load = [[fire = Instance.new("Fire", game.Players.LocalPlayer.Character.Torso)
  940. fire.Heat = 25
  941. fire.Size = 30
  942. while true do wait(1)
  943. fire.Color = Color3.new(math.random(),math.random(),math.random())
  944. end]]
  945. end)
  946. sunsetcity.MouseButton1Down:connect(function()
  947.     setdesc("Sunset City Money by OVOXO","Completes a sunset city job 10x (money maker)",28397429,0)
  948.     load = [[local i = 0
  949. local b = 10
  950. repeat
  951. game.ReplicatedStorage.Remotes.Events.CompletedJob:FireServer()
  952. wait(0.1)
  953. i = i + 1
  954. wait(0.1)
  955. print(i)
  956. until i == b]]
  957. end)
  958. sunsetcity.MouseButton1Down:connect(function()
  959.     setdesc("Bucket Hub by [TreZ] Bucket","GUI hub with scripts",0,0)
  960.     load = [[Bucket_Hub = Instance.new("ScreenGui",game.Players.LocalPlayer.PlayerGui)
  961.  
  962. Main = Instance.new("Frame",Bucket_Hub)
  963. Main.Active = true
  964. Main.BackgroundColor3 = Color3.new(0.07059, 0.0705882, 0.0705882)
  965. Main.BorderSizePixel = 2
  966. Main.Draggable = true
  967. Main.Position = UDim2.new(0, 30, 0.100000001, 30)
  968. Main.Size = UDim2.new(0.20000096, 100, 0.65, 100)
  969. Main.Style = "RobloxRound"
  970.  
  971. TextLabel = Instance.new("TextLabel",Main)
  972. TextLabel.BackgroundColor3 = Color3.new(0, 0, 0)
  973. TextLabel.BackgroundTransparency = 1
  974. TextLabel.Draggable = true
  975. TextLabel.Position = UDim2.new(0.2, 0, 0, 10)
  976. TextLabel.Size = UDim2.new(0, 200, 0, 50)
  977. TextLabel.Font = "SciFi"
  978. TextLabel.Text = "Bucket's Hub"
  979. TextLabel.TextColor3 = Color3.new(1, 1, 1)
  980. TextLabel.TextSize = 60
  981.  
  982. Buttons = Instance.new("ScrollingFrame",Main)
  983. Buttons.BackgroundColor3 = Color3.new(0, 0, 0)
  984. Buttons.BackgroundTransparency = 1
  985. Buttons.Position = UDim2.new(-0, 0, 0.289000005, 0)
  986. Buttons.Size = UDim2.new(1, 0, 0.479999989, 100)
  987. Buttons.ScrollBarThickness = 0
  988.  
  989. pos1 = 0
  990. function c2(txt)
  991. TextButton = Instance.new("TextButton",Buttons)
  992. TextButton.Name = (txt)
  993. TextButton.BackgroundColor3 = Color3.new(1, 1, 1)
  994. TextButton.BackgroundTransparency = 0.5
  995. TextButton.Position = UDim2.new(0.0299999993, 0,pos1, 0)
  996. TextButton.Size = UDim2.new(0.300000012, 200, 0, 50)
  997. TextButton.Font = "SciFi"
  998. TextButton.Text = (txt)
  999. TextButton.TextSize = 42
  1000. pos1 = pos1+0.064999998
  1001. return TextButton
  1002. end
  1003.  
  1004. prnt = c2("Auto Duels")
  1005.  
  1006. prnt.MouseButton1Click:connect(function()
  1007. local sword=game.Players.LocalPlayer.Backpack.LinkedSword
  1008. a=Instance.new("SelectionBox",sword.Handle)
  1009. a.Adornee=sword.Handle
  1010. sword.Handle.Size=Vector3.new(0.2,0.2,121)
  1011. sword.Equipped:connect(function()
  1012. while wait() do
  1013. game.Workspace[game.Players.LocalPlayer.Name].LinkedSword.GripPos=Vector3.new(0,0,-60)
  1014. end
  1015. end)
  1016. end)
  1017.  
  1018. prnt = c2("LasVegas GUI")
  1019.  
  1020. prnt.MouseButton1Click:connect(function()
  1021. local ScreenGui = Instance.new("ScreenGui", game.Players.LocalPlayer.PlayerGui)
  1022. ScreenGui.Name = "LasVegasGui"
  1023.  
  1024. local Frame = Instance.new("Frame", ScreenGui)
  1025. Frame.Active = true
  1026. Frame.BackgroundColor3 = Color3.new(31/255, 31/255, 31/255)
  1027. Frame.BackgroundTransparency = 0.5
  1028. Frame.BorderSizePixel = 0
  1029. Frame.Position = UDim2.new(0, 10, 0.5, -100)
  1030. Frame.Size = UDim2.new(0, 295, 0, 200)
  1031. Frame.Draggable = true
  1032.  
  1033. local Title = Instance.new("TextLabel", Frame)
  1034. Title.BackgroundColor3 = Color3.new(255/255, 255/255, 255/255)
  1035. Title.BackgroundTransparency = 0.1
  1036. Title.BorderSizePixel = 0
  1037. Title.Name = "Title"
  1038. Title.Size = UDim2.new(1, 0, 0, 20)
  1039. Title.Text = "Las Vegas Gui"
  1040.  
  1041. local Buttons = Instance.new("ScrollingFrame", Frame)
  1042. Buttons.BackgroundColor3 = Color3.new(0, 0, 0)
  1043. Buttons.BackgroundTransparency = 0.9
  1044. Buttons.BorderSizePixel = 0
  1045. Buttons.Name = "Buttons"
  1046. Buttons.Position = UDim2.new(0, 8,1, -175)
  1047. Buttons.Size = UDim2.new(0, 280,0, 170)
  1048. Buttons.BottomImage = ""
  1049. Buttons.ScrollBarThickness = 0
  1050. Buttons.TopImage = ""
  1051.  
  1052. local Teleporters = Instance.new("Frame", Frame)
  1053. Teleporters.BackgroundColor3 = Color3.new(31/255, 31/255, 31/255)
  1054. Teleporters.BackgroundTransparency = 0.5
  1055. Teleporters.BorderSizePixel = 0
  1056. Teleporters.Name = "Teleporters"
  1057. Teleporters.Position = UDim2.new(0.5, -148, 1, 5)
  1058. Teleporters.Size = UDim2.new(0, 295, 0, 100)
  1059.  
  1060. local TeleportersList = Instance.new("ScrollingFrame", Teleporters)
  1061. TeleportersList.BackgroundColor3 = Color3.new(0, 0, 0)
  1062. TeleportersList.BackgroundTransparency = 0.9
  1063. TeleportersList.BorderSizePixel = 0
  1064. TeleportersList.Name = "List"
  1065. TeleportersList.Position = UDim2.new(0, 5, 0, 5)
  1066. TeleportersList.Size = UDim2.new(0, 285, 0, 90)
  1067. TeleportersList.BottomImage = ""
  1068. TeleportersList.CanvasSize = UDim2.new(0, 0, 6.1, 0)
  1069. TeleportersList.ScrollBarThickness = 0
  1070. TeleportersList.TopImage = ""
  1071.  
  1072. SelectedPlayers = {}
  1073. Cars = {"Sedan", "Van", "SUV", "Pickup", "Sports Car", "Lawn Mower", "Quad", "Golf Caddy", "Ice-Cream Van", "Lowrider", "Muscle Car", "Limo", "RV - Class A", "RV - Class B", "Luxury Coupe", "Luxury Sedan", "Routemaster Bus", "MG", "Box Truck", "Flatbed", "Flatbed Transport"}
  1074.  
  1075. -- Functions
  1076.  
  1077. local amount = 0
  1078. local bamount = 0
  1079. local bamount2 = 0
  1080.  
  1081. CreateButton = function(name, text, parent)
  1082.     local Button = Instance.new("TextButton", parent)
  1083.     Button.BackgroundColor3 = Color3.new(255/255, 255/255, 255/255)
  1084.     Button.BackgroundTransparency = 0.1
  1085.     Button.BorderSizePixel = 0
  1086.     Button.Name = name
  1087.     Button.Position = UDim2.new(0, 0, 0, 20*bamount)
  1088.     Button.Size = UDim2.new(1, 0, 0, 20)
  1089.     Button.Visible = true
  1090.     Button.Text = text
  1091.     bamount = bamount + 1
  1092.     return Button
  1093. end
  1094.  
  1095. CreateTeleportButton = function(name, text, parent)
  1096.     local Button = Instance.new("TextButton", parent)
  1097.     Button.BackgroundColor3 = Color3.new(255/255, 255/255, 255/255)
  1098.     Button.BackgroundTransparency = 0.1
  1099.     Button.BorderSizePixel = 0
  1100.     Button.Name = name
  1101.     Button.Position = UDim2.new(0, 0, 0, 20*bamount2)
  1102.     Button.Size = UDim2.new(1, 0, 0, 20)
  1103.     Button.Visible = true
  1104.     Button.Text = text
  1105.     bamount2 = bamount2 + 1
  1106.     return Button
  1107. end
  1108.  
  1109. -- Buttons
  1110.  
  1111. local Amphs = CreateButton("Amphs", "Amphs", Buttons)
  1112. local PurchaseTar = CreateButton("PurchaseTar", "Purchase TAR-21", Buttons)
  1113. local PurchaseArmour = CreateButton("PurchaseArmor", "Purchase Armour", Buttons)
  1114. local PurchaseCars = CreateButton("PurchaseCars", "Purchase All Cars", Buttons)
  1115. local PurchaseMuscle = CreateButton("PurchaseMuscle", "Purchase Muscle Car", Buttons)
  1116. local UnarrestSelected = CreateButton("Unarrest", "Unarrest LocalPlayer", Buttons)
  1117. local TenMillionBank = CreateButton("10MillionBank", "300K+ Bank", Buttons)
  1118. local TenMillionHand = CreateButton("10MillionHand", "300K+ Hand", Buttons)
  1119. local DepositWithdraw = CreateButton("DepositWithdraw", "Deposit/Withdraw", Buttons)
  1120. -- Teleport Buttons
  1121. local BankofAmerica = CreateTeleportButton("Bank of America", "Bank of America", TeleportersList)
  1122. local GNCBank = CreateTeleportButton("GNC Bank", "GNC Bank", TeleportersList)
  1123. local Casino = CreateTeleportButton("Casino", "Casino", TeleportersList)
  1124. local InsideCasino = CreateTeleportButton("Inside Casino", "Inside Casino", TeleportersList)
  1125. local AirportTerminal = CreateTeleportButton("Airport Terminal", "Airport Terminal", TeleportersList)
  1126. local CarDealer1 = CreateTeleportButton("Car Dealer 1", "Car Dealer 1", TeleportersList)
  1127. local CarDealer2 = CreateTeleportButton("Car Dealer 2", "Car Dealer 2", TeleportersList)
  1128. local AdAgency = CreateTeleportButton("Ad Agency", "Ad Agency", TeleportersList)
  1129. local EstateAgency = CreateTeleportButton("Estate Agency", "Estate Agency", TeleportersList)
  1130. local HeliStore = CreateTeleportButton("Heli Store", "Heli Store", TeleportersList)
  1131. local Prison = CreateTeleportButton("Prison", "Prison", TeleportersList)
  1132. local PoliceStation = CreateTeleportButton("Police Station", "Police Station", TeleportersList)
  1133.  
  1134. -- End Of Buttons Start of Click's
  1135.  
  1136. Amphs.MouseButton1Down:connect(function()
  1137.     game.ReplicatedStorage.Events.MedicineGiver:FireServer("Amphetamines", true)
  1138. end)
  1139.  
  1140. PurchaseTar.MouseButton1Down:connect(function()
  1141.     game.ReplicatedStorage.Events.ToolRequests:FireServer("TAR-21", "CellPhone")
  1142. end)
  1143.  
  1144. PurchaseArmour.MouseButton1Down:connect(function()
  1145.     game.ReplicatedStorage.Events.ToolRequests:FireServer("Body Armour", "CellPhone")
  1146. end)
  1147.  
  1148. PurchaseCars.MouseButton1Down:connect(function()
  1149.     for _,v in pairs(Cars) do
  1150.         game.ReplicatedStorage.Events.CarShopGiver:FireServer(false, v)
  1151.     end
  1152. end)
  1153.  
  1154. PurchaseMuscle.MouseButton1Down:connect(function()
  1155.     game.ReplicatedStorage.Events.CarShopGiver:FireServer(false, "Muscle Car")
  1156. end)
  1157.  
  1158. UnarrestSelected.MouseButton1Down:connect(function()
  1159.     game.ReplicatedStorage.Events.JailTimeRequest:FireServer(game.Player.LocalPlayer.UserId, "Unarrest")
  1160. end)
  1161.  
  1162. TenMillionBank.MouseButton1Down:connect(function()
  1163.     game.ReplicatedStorage.Events.MoneyRequest:FireServer(300000, "Money")
  1164. end)
  1165.  
  1166. TenMillionHand.MouseButton1Down:connect(function()
  1167.     game.ReplicatedStorage.Events.MoneyRequest:FireServer(300000, "Cash")
  1168. end)
  1169.  
  1170. DepositWithdraw.MouseButton1Down:connect(function()
  1171.     game.ReplicatedStorage.Events.GuiHandler:FireServer(true, "BankGui")
  1172. end)
  1173.  
  1174. -- Teleporter Clicks
  1175.  
  1176. BankofAmerica.MouseButton1Down:connect(function()
  1177.     game.Players.LocalPlayer.Character:MoveTo(Vector3.new(911.003174, 3.59000015, -2079.96191))
  1178. end)
  1179.  
  1180. GNCBank.MouseButton1Down:connect(function()
  1181.     game.Players.LocalPlayer.Character:MoveTo(Vector3.new(2497.26611, 3.58985662, -70.92202))
  1182. end)
  1183.  
  1184. Casino.MouseButton1Down:connect(function()
  1185.     game.Players.LocalPlayer.Character:MoveTo(Vector3.new(1363.41785, 3.58783937, -471.999451))
  1186. end)
  1187.  
  1188. InsideCasino.MouseButton1Down:connect(function()
  1189.     game.Players.LocalPlayer.Character:MoveTo(Vector3.new(1310.09351, 3.76108289, -521.933777))
  1190. end)
  1191.  
  1192. AirportTerminal.MouseButton1Down:connect(function()
  1193.     game.Players.LocalPlayer.Character:MoveTo(Vector3.new(170.169, 1.088, 737.056))
  1194. end)
  1195.  
  1196. CarDealer1.MouseButton1Down:connect(function()
  1197.     game.Players.LocalPlayer.Character:MoveTo(Vector3.new(86.1, 2.09, 350.7))
  1198. end)
  1199.  
  1200. CarDealer2.MouseButton1Down:connect(function()
  1201.     game.Players.LocalPlayer.Character:MoveTo(Vector3.new(1362.7, 2.59, -1570.699))
  1202. end)
  1203.  
  1204. AdAgency.MouseButton1Down:connect(function()
  1205.     game.Players.LocalPlayer.Character:MoveTo(Vector3.new(50.901, 2.288, -1027.747))
  1206. end)
  1207.  
  1208. EstateAgency.MouseButton1Down:connect(function()
  1209.     game.Players.LocalPlayer.Character:MoveTo(Vector3.new(646.001, 2.39, -865.973))
  1210. end)
  1211.  
  1212. HeliStore.MouseButton1Down:connect(function()
  1213.     game.Players.LocalPlayer.Character:MoveTo(Vector3.new(550.1, 3.287, 488.199))
  1214. end)
  1215.  
  1216. Prison.MouseButton1Down:connect(function()
  1217.     game.Players.LocalPlayer.Character:MoveTo(Vector3.new(-723.627, 2.59, -2175.249))
  1218. end)
  1219.  
  1220. PoliceStation.MouseButton1Down:connect(function()
  1221.     game.Players.LocalPlayer.Character:MoveTo(Vector3.new(236.4, 6.59, 20))
  1222. end)
  1223. -- Teleporter Debug
  1224. game:GetService("RunService").RenderStepped:connect(function()
  1225. game.Players.LocalPlayer.PlayerGui:FindFirstChild("AntiSpeedHack").Disabled = true
  1226. end)
  1227. wait()
  1228. spawn(function()
  1229.     wait(0.5)
  1230.     local i = Instance.new('GuiMain', game.Players.LocalPlayer.PlayerGui)
  1231.     local f = Instance.new('Frame', i)
  1232.     f.BackgroundTransparency = 0
  1233.     f.BackgroundColor3 = Color3.new(0,0,0)
  1234.     f.Size = UDim2.new(0,400,0,200)
  1235.     f.BorderSizePixel = 0
  1236.     f.Position = UDim2.new(.5,-200,-1,0)
  1237.     f.ZIndex = 2
  1238.     local t = Instance.new('TextLabel', f)
  1239.     t.Size = UDim2.new(1,0,0,100)
  1240.     t.BackgroundTransparency = 1
  1241.     t.TextColor3 = Color3.new(1,1,1)
  1242.     t.FontSize = 'Size60'
  1243.     t.Font = 'SourceSansLight'
  1244.     t.Text = 'Las Vegas GUI'
  1245.     t.ZIndex = 2
  1246.     local c = Instance.new('TextLabel', t)
  1247.     c.Position = UDim2.new(0,0,1,0)
  1248.     c.Size = UDim2.new(1,0,0,100)
  1249.     c.Text = 'Made by DragonRamer @ V3rmillion'
  1250.     c.BackgroundTransparency = 1
  1251.     c.TextColor3 = Color3.new(1,1,1)
  1252.     c.FontSize = 'Size24'
  1253.     c.Font = 'SourceSansLight'
  1254.     c.ZIndex = 2
  1255.     f:TweenPosition(UDim2.new(.5,-200,.5,-100), 'Out', 'Quad', 2)
  1256.     wait(4)
  1257.     f:TweenPosition(UDim2.new(.5,-200,1,200), 'In', 'Quad')
  1258. end)
  1259.  
  1260. end)
  1261.  
  1262. prnt = c2("Trump Meme")
  1263.  
  1264. prnt.MouseButton1Click:connect(function()
  1265.     gui1=Instance.new("BillboardGui")
  1266. gui1.Parent = game.Players.LocalPlayer.Character.Head
  1267. gui1.Adornee = game.Players.LocalPlayer.Character.Head
  1268. gui1.Size=UDim2.new(2.5,0,2.5,0)
  1269. gui1.StudsOffset=Vector3.new(0,0.2,0)
  1270. gui1.AlwaysOnTop = true
  1271. text1=Instance.new("ImageLabel")
  1272. text1.Image = "rbxassetid://343377229"
  1273. text1.Size=UDim2.new(1,0,1,0)
  1274. text1.Position=UDim2.new(0,0,0,0)
  1275. text1.BackgroundTransparency = 1
  1276. text1.Parent=gui1
  1277. game.Players.LocalPlayer.Character.Head.Transparency = 1
  1278. for i,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do if v.ClassName == 'Hat' then v:remove() end end
  1279. end)
  1280.  
  1281. prnt = c2("Sunset City")
  1282.  
  1283. prnt.MouseButton1Click:connect(function()
  1284.     local i = 0
  1285. local b = 10     --put amount of times you want job completed here
  1286.  
  1287. repeat
  1288. game.ReplicatedStorage.Remotes.Events.CompletedJob:FireServer()
  1289. wait(0.1)
  1290. i = i + 1
  1291. wait(0.1)
  1292. print(i)
  1293. until i == b
  1294. end)
  1295.  
  1296. prnt = c2("Apoc GUI")
  1297.  
  1298. prnt.MouseButton1Click:connect(function()
  1299.      -- gjwi
  1300.  
  1301. -- v1
  1302.  
  1303. iPlayer = game.Players.LocalPlayer.Name
  1304. local Gui = Instance.new('ScreenGui', game.Players[iPlayer].PlayerGui)
  1305. Gui.Name = 'Apoc'
  1306. local Grab_f = Instance.new('Frame', Gui)
  1307. Grab_f.Name = 'Grab'
  1308. Grab_f.Active = true
  1309. Grab_f.BackgroundColor3 = Color3.new(255,255,127/255)
  1310. Grab_f.BackgroundTransparency = 0.5
  1311. Grab_f.BorderSizePixel = 0
  1312. Grab_f.Position = UDim2.new(0.5,-150,0.5,-92)
  1313. Grab_f.Size = UDim2.new(0,300,0,24)
  1314. Grab_f.Draggable = true
  1315. local Close = Instance.new('TextButton', Grab_f)
  1316. Close.Name = 'Close'
  1317. Close.BackgroundTransparency = 1
  1318. Close.Position = UDim2.new(1,-23,0,1)
  1319. Close.Size = UDim2.new(0,22,0,22)
  1320. Close.Font = 'SourceSans'
  1321. Close.FontSize = 'Size18'
  1322. Close.TextColor3 = Color3.new(255,255,255)
  1323. Close.Text = 'X'
  1324. local Body_f = Instance.new('Frame', Grab_f)
  1325. Body_f.Name = 'Body'
  1326. Body_f.BackgroundColor3 = Color3.new(60/255,60/255,60/255)
  1327. Body_f.BackgroundTransparency = 0.5
  1328. Body_f.BorderSizePixel = 0
  1329. Body_f.Position = UDim2.new(0,0,0,25)
  1330. Body_f.Size = UDim2.new(0,300,0,170)
  1331.  
  1332. Close.TextStrokeTransparency = 0.8
  1333. local Title = Instance.new('TextLabel', Grab_f)
  1334. Title.Name = 'Title'
  1335. Title.BackgroundTransparency = 1
  1336. Title.Position = UDim2.new(0,5,0,0)
  1337. Title.Size = UDim2.new(0,200,1,0)
  1338. Title.Font = 'SourceSansLight'
  1339. Title.FontSize = 'Size18'
  1340. Title.Text = "GETJIGGYWITHIT's APOC GUI (v1)"
  1341. Title.TextColor3 = Color3.new(255,255,255)
  1342. Title.TextStrokeColor3 = Color3.new(60/255,60/255,60/255)
  1343. Title.TextStrokeTransparency = 0.6
  1344. local PlayerName = Instance.new('TextBox', Body_f)
  1345. PlayerName.Name = 'PlayerName'
  1346. PlayerName.BorderSizePixel = 0
  1347. PlayerName.Position = UDim2.new(0,10,0,10)
  1348. PlayerName.Size = UDim2.new(0,280,0,30)
  1349. PlayerName.Font = 'SourceSans'
  1350. PlayerName.FontSize = 'Size18'
  1351. PlayerName.Text = 'Player name [plr]'
  1352. PlayerName.BackgroundColor3 = Color3.new(255,255,255)
  1353. PlayerName.TextColor3 = Color3.new(60/255,60/255,60/255)
  1354. PlayerName.TextWrapped = true
  1355.  
  1356. local Credits = Instance.new('TextLabel', Body_f)
  1357. Credits.BackgroundTransparency = 1
  1358. Credits.Text = 'Credits to - Phemzy and Raspberry Pi'
  1359. Credits.Position = UDim2.new(0,0,1,0)
  1360. Credits.Size = UDim2.new(1,0,0,20)
  1361.  
  1362. local Command_God = Instance.new('TextButton', Body_f)
  1363. Command_God.Name = 'God'
  1364. Command_God.BackgroundColor3 = Color3.new(255,170/255,255)
  1365. Command_God.BackgroundTransparency = 0.1
  1366. Command_God.BorderSizePixel = 0
  1367. Command_God.Position = UDim2.new(0,10,0,50)
  1368. Command_God.Size = UDim2.new(0,135,0,30)
  1369. Command_God.Font = 'SourceSansItalic'
  1370. Command_God.FontSize = 'Size18'
  1371. Command_God.Text = 'GOD [plr]'
  1372. Command_God.TextColor3 = Color3.new(80/255,80/255,80/255)
  1373. Command_God.TextWrapped = true
  1374.  
  1375. local Command_KillAll = Command_God:Clone()
  1376. Command_KillAll.Name = 'KillAll'
  1377. Command_KillAll.Parent = Body_f
  1378. Command_KillAll.Position = UDim2.new(0,155,0,50)
  1379. Command_KillAll.Text = 'KILL ALL'
  1380.  
  1381. local Command_KillPlr = Command_God:Clone()
  1382. Command_KillPlr.Name = 'KillPlr'
  1383. Command_KillPlr.Parent = Body_f
  1384. Command_KillPlr.Position = UDim2.new(0,10,0,90)
  1385. Command_KillPlr.Text = 'KILL [plr]'
  1386.  
  1387. local Command_TpMe = Command_God:Clone()
  1388. Command_TpMe.Name = 'TpMe'
  1389. Command_TpMe.Parent = Body_f
  1390. Command_TpMe.Position = UDim2.new(0,10,0,130)
  1391. Command_TpMe.Text = 'TP [plr] ME'
  1392.  
  1393. local Command_TpTo = Command_God:Clone()
  1394. Command_TpTo.Name = 'TpTo'
  1395. Command_TpTo.Parent = Body_f
  1396. Command_TpTo.Position = UDim2.new(0,155,0,130)
  1397. Command_TpTo.Text = 'TP ME [plr]'
  1398.  
  1399. local Command_TpAllMe = Command_God:Clone()
  1400. Command_TpAllMe.Name = 'TpAllMe'
  1401. Command_TpAllMe.Parent = Body_f
  1402. Command_TpAllMe.Position = UDim2.new(0,155,0,90)
  1403. Command_TpAllMe.Text = 'TP ALL ME'
  1404.  
  1405. Command_God.MouseButton1Down:connect(function()
  1406. Player = game.Workspace:FindFirstChild(PlayerName.Text)
  1407. while wait() do
  1408. game.Lighting.Remote.AddHealth:FireServer(Player.Humanoid, 5000000)
  1409. end
  1410. end)
  1411.  
  1412. Command_KillAll.MouseButton1Down:connect(function()
  1413. for i,v in pairs(game.Players:GetPlayers()) do
  1414. if v.Name == game.Players.LocalPlayer.Name then
  1415. print('nope')
  1416. else
  1417. getPlayer = game.Workspace:FindFirstChild(v.Name)
  1418. wait(.01)
  1419. game.Lighting.Remote.AddHealth:FireServer(getPlayer.Humanoid, -5345355)
  1420. end
  1421. end
  1422. end)
  1423.  
  1424. Command_KillPlr.MouseButton1Down:connect(function()
  1425. gitPlayer = game.Workspace:FindFirstChild(PlayerName.Text)
  1426. game.Lighting.Remote.AddHealth:FireServer(gitPlayer.Humanoid, -5000000)
  1427. end)
  1428.  
  1429. Command_TpMe.MouseButton1Down:connect(function()
  1430. gitPlayer = PlayerName.Text
  1431. game.Lighting.Remote:WaitForChild("TeleportRequest"):InvokeServer("To Me", math.floor(tick() % 1 * 100000), gitPlayer)
  1432. end)
  1433.  
  1434. Command_TpTo.MouseButton1Down:connect(function()
  1435. gitPlayer = PlayerName.Text
  1436. game.Lighting.Remote:WaitForChild("TeleportRequest"):InvokeServer("Me To", math.floor(tick() % 1 * 100000), gitPlayer)
  1437. end)
  1438.  
  1439. Command_TpAllMe.MouseButton1Down:connect(function()
  1440. for i,v in pairs(game.Players:GetPlayers()) do
  1441. if v.Name == game.Players.LocalPlayer.Name then
  1442. print'nope'
  1443. else
  1444. wait(.01)
  1445. game.Lighting.Remote:WaitForChild("TeleportRequest"):InvokeServer("To Me", math.floor(tick() % 1 * 100000), v.Name)
  1446. end
  1447. end
  1448. end)
  1449.  
  1450. Close.MouseButton1Down:connect(function()
  1451. if Body_f.Visible == true then
  1452. Body_f.Visible = false
  1453. Close.Text = '+'
  1454. elseif Body_f.Visible == false then
  1455. Body_f.Visible = true
  1456. Close.Text = 'X'
  1457. end
  1458. end)
  1459.  
  1460. --
  1461.  
  1462. while wait() do
  1463. Credits.TextColor3 = Color3.new(1,0,0)
  1464. for i=1,15 do
  1465. game:GetService("RunService").RenderStepped:wait()
  1466. Credits.TextColor3 = Color3.new(Credits.TextColor3.r,Credits.TextColor3.g+(17/255),Credits.TextColor3.b)
  1467. end
  1468. for i=1,15 do
  1469. game:GetService("RunService").RenderStepped:wait()
  1470. Credits.TextColor3 = Color3.new(Credits.TextColor3.r-(17/255),Credits.TextColor3.g,Credits.TextColor3.b)
  1471. end
  1472. for i=1,15 do
  1473. game:GetService("RunService").RenderStepped:wait()
  1474. Credits.TextColor3 = Color3.new(Credits.TextColor3.r,Credits.TextColor3.g,Credits.TextColor3.b+(17/255))
  1475. end
  1476. for i=1,15 do
  1477. game:GetService("RunService").RenderStepped:wait()
  1478. Credits.TextColor3 = Color3.new(Credits.TextColor3.r,Credits.TextColor3.g-(17/255),Credits.TextColor3.b)
  1479. end
  1480. for i=1,15 do
  1481. game:GetService("RunService").RenderStepped:wait()
  1482. Credits.TextColor3 = Color3.new(Credits.TextColor3.r+(17/255),Credits.TextColor3.g,Credits.TextColor3.b)
  1483. end
  1484. for i=1,15 do
  1485. game:GetService("RunService").RenderStepped:wait()
  1486. Credits.TextColor3 = Color3.new(Credits.TextColor3.r,Credits.TextColor3.g,Credits.TextColor3.b-(17/255))
  1487. end
  1488. end
  1489. end)
  1490.  
  1491. prnt = c2("Harambe :(")
  1492.     prnt.MouseButton1Click:connect(function()
  1493.         local char = game.Players.LocalPlayer.Character
  1494. for i,v in pairs(char.Torso:GetChildren()) do
  1495. if v.ClassName == 'Decal' then
  1496. v:Destroy() end end
  1497. for i,v in pairs(char:GetChildren()) do
  1498. if v.ClassName == 'Hat' then
  1499. v:Destroy() end end
  1500. for i,v in pairs(char.Head:GetChildren()) do
  1501. if v.ClassName == 'Decal' then
  1502. v:Destroy() end end
  1503. local harambe = Instance.new('SpecialMesh', char.Torso)
  1504. harambe.MeshType = 'FileMesh'
  1505. harambe.MeshId = 'http://www.roblox.com/asset/?id=430330296'
  1506. harambe.TextureId = 'http://www.roblox.com/asset/?id=430330316'
  1507. harambe.Scale = Vector3.new(0.01, 0.01, 0.01)
  1508. char.Head.Transparency = 1
  1509. char['Left Arm'].Transparency = 1
  1510. char['Right Arm'].Transparency = 1
  1511. char['Left Leg'].Transparency = 1
  1512. char['Right Leg'].Transparency = 1
  1513.     end)
  1514.    
  1515. prnt = c2("Evil Duck")
  1516. prnt.MouseButton1Click:connect(function()
  1517.     local pchar = game.Players.LocalPlayer.Character                
  1518. local duck = Instance.new("SpecialMesh", pchar.Torso)
  1519. duck.MeshType = "FileMesh"
  1520. duck.MeshId = "rbxassetid://14810664"
  1521. duck.TextureId = "rbxassetid://14810649"
  1522. duck.Scale = Vector3.new(5, 5, 5)
  1523. pchar.Head.Transparency = 1
  1524. pchar["Left Arm"].Transparency = 1
  1525. pchar["Right Arm"].Transparency = 1
  1526. pchar["Left Leg"].Transparency = 1
  1527. pchar["Right Leg"].Transparency = 1
  1528. end)
  1529.  
  1530. prnt = c2("Purge")
  1531. prnt.MouseButton1Click:connect(function()
  1532.     local FogEnd = tonumber("20")
  1533. local Volume = tonumber("1")
  1534. local Looped = true
  1535. game.Lighting.FogEnd = FogEnd
  1536. local sound = Instance.new("Sound",game.Workspace)
  1537. sound.Name = "PurgeFX"
  1538. sound.Looped = Looped
  1539. sound.Volume = Volume
  1540. sound.SoundId = "rbxassetid://232554097"
  1541. sound:Play()
  1542.  
  1543. if Looped == true then
  1544. else
  1545.     wait(70)
  1546.     sound:Destroy()
  1547.     game.Lighting.FogEnd = 100000
  1548. end
  1549. end)
  1550.  
  1551. prnt = c2("Apoc ESP")
  1552. prnt.MouseButton1Click:connect(function()
  1553.     for i,v in pairs(game.Players:GetChildren()) do
  1554.     local handle = Instance.new("Handles",game.Players.LocalPlayer.PlayerGui)
  1555.     handle.Adornee = v.Character.Head
  1556.     handle.Color3 = Color3.new(0/255, 255/255, 0/255)
  1557.     handle.Transparency = 0
  1558.     handle.Style = "Resize"
  1559. end
  1560. end)
  1561.  
  1562. prnt = c2("Ghost All")
  1563. prnt.MouseButton1Click:connect(function()
  1564.     c= game.Players:GetChildren()
  1565. for i= 1, #c do
  1566. p= c[i].Character:GetChildren()
  1567. for i= 1, #p do
  1568. if p[i].className == "Part" then
  1569. p[i].Transparency = .5
  1570. end
  1571. end
  1572. end
  1573. end)
  1574.  
  1575. prnt = c2("Giant Camera")
  1576. prnt.MouseButton1Click:connect(function()
  1577.     local pchar = game.Players.LocalPlayer.Character
  1578.                 local morph = Instance.new("SpecialMesh", pchar.Torso)
  1579.                 morph.MeshType = "FileMesh"
  1580. morph.MeshId = "http://www.roblox.com/asset/?id=2093105"
  1581. morph.TextureId = "http://www.roblox.com/asset/?id=2093097"
  1582. morph.Scale = Vector3.new(5, 5, 5)
  1583. pchar.Head.Transparency = 1
  1584. pchar["Left Arm"].Transparency = 1
  1585. pchar["Right Arm"].Transparency = 1
  1586. pchar["Left Leg"].Transparency = 1
  1587. pchar["Right Leg"].Transparency = 1
  1588. end)
  1589.  
  1590. prnt = c2("Treasure Island")
  1591.  
  1592. prnt.MouseButton1Click:connect(function()
  1593.     for i,v in pairs(workspace.Metals:GetChildren()) do
  1594. v.Position = game.Players.LocalPlayer.Character.Head.Position
  1595. end
  1596. end)
  1597.  
  1598. prnt = c2("DatBoi")
  1599. prnt.MouseButton1Click:connect(function()
  1600.     local char = game.Players.LocalPlayer.Character
  1601.  
  1602. for i,v in pairs(char.Torso:GetChildren()) do
  1603.     if v.ClassName == 'Decal' then
  1604.          v:Destroy()
  1605.     end
  1606. end
  1607. for i,v in pairs(char:GetChildren()) do
  1608.     if v.ClassName == 'Hat' then
  1609.         v:Destroy()
  1610.     end
  1611. end
  1612. for i,v in pairs(char.Head:GetChildren()) do
  1613.     if v.ClassName == 'Decal' then
  1614.         v:Destroy()
  1615.     end
  1616. end
  1617.  
  1618. local datboi = Instance.new('SpecialMesh', char.Torso)
  1619. datboi.MeshType = 'FileMesh'
  1620. datboi.MeshId = 'http://www.roblox.com/asset/?id=430095888'
  1621. datboi.TextureId = 'http://www.roblox.com/asset/?id=171886325'
  1622. datboi.Scale = Vector3.new(0.01, 0.01, 0.01)
  1623. char.Head.Transparency = 1
  1624. char['Left Arm'].Transparency = 1
  1625. char['Right Arm'].Transparency = 1
  1626. char['Left Leg'].Transparency = 1
  1627. char['Right Leg'].Transparency = 1
  1628. end)
  1629.  
  1630. prnt = c2("Fencing")
  1631. prnt.MouseButton1Click:connect(function()
  1632.     local foil=game.Players.LocalPlayer.Backpack.Foil
  1633. a=Instance.new("SelectionBox",foil.Handle)
  1634. a.Adornee=foil.Handle
  1635. foil.Handle.Size=Vector3.new(0.2,0.2,120)
  1636. foil.Equipped:connect(function()
  1637. while wait() do
  1638. game.Workspace[game.Players.LocalPlayer.Name].Foil.GripPos=Vector3.new(0,0,-60)
  1639. end
  1640. end)
  1641. end)
  1642. -- To Add More commands just do prnt = c2("name Of command Here")
  1643. -- prnt.MouseButton1Click:connect(function()
  1644. -- Script Here
  1645. -- end)]]
  1646. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement