RoSploitzer

The Streets GUI

Jun 12th, 2019
17,185
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.65 KB | None | 0 0
  1. game.StarterGui:SetCore("SendNotification", {
  2. Title = "Please read console";
  3. Text = "Press F9";
  4. })
  5.  
  6. print("glock / Teleports you to glock spawn")
  7. print("machete / Teleports you to machete spawn")
  8. print("uzi / Teleports you to uzi spawn")
  9. print("sawed off / Teleports you to sawed off spawn")
  10. print("Stolen stuff in F9!")
  11.  
  12.  
  13. wait(1)
  14.  
  15.  
  16. game.StarterGui:SetCore("SendNotification", {
  17. Title = "Made by Atom#0995 & raccoon#8988";
  18. Text = "Credits above";
  19. })
  20.  
  21. wait(3)
  22.  
  23. print("Made by Atom#0995 & raccoon#8988")
  24.  
  25. local Streets = Instance.new("ScreenGui")
  26. local Base = Instance.new("Frame")
  27. local BaseDetail = Instance.new("Frame")
  28. local BaseText = Instance.new("TextLabel")
  29. local Punches = Instance.new("TextButton")
  30. local Door = Instance.new("TextButton")
  31. local Weapons = Instance.new("TextButton")
  32. local Section = Instance.new("Frame")
  33. local Decal = Instance.new("TextButton")
  34. local Audio = Instance.new("TextButton")
  35. local User = Instance.new("TextBox")
  36. local Exit = Instance.new("TextButton")
  37.  
  38. Streets.Name = "Streets"
  39. Streets.Parent = game.Players.LocalPlayer.PlayerGui
  40.  
  41. Base.Name = "Base"
  42. Base.Parent = Streets
  43. Base.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
  44. Base.BorderColor3 = Color3.new(0.176471, 0.176471, 0.176471)
  45. Base.Position = UDim2.new(0.534912705, 0, 0.561753035, 0)
  46. Base.Size = UDim2.new(0, 336, 0, 203)
  47. BaseDetail.Name = "BaseDetail"
  48. BaseDetail.Parent = Base
  49. BaseDetail.BackgroundColor3 = Color3.new(0.290196, 1, 0.52549)
  50. BaseDetail.BorderColor3 = Color3.new(0.145098, 0.498039, 0.254902)
  51. BaseDetail.Size = UDim2.new(0, 336, 0, 26)
  52.  
  53. Base.Active = true
  54. Base.Draggable = true
  55.  
  56. BaseText.Name = "BaseText"
  57. BaseText.Parent = BaseDetail
  58. BaseText.BackgroundColor3 = Color3.new(1, 1, 1)
  59. BaseText.BackgroundTransparency = 1
  60. BaseText.Size = UDim2.new(0, 336, 0, 26)
  61. BaseText.Font = Enum.Font.Arcade
  62. BaseText.Text = "The Streets GUI by Atom#0995 & raccoon#8988"
  63. BaseText.TextColor3 = Color3.new(0, 0, 0)
  64. BaseText.TextScaled = true
  65. BaseText.TextSize = 14
  66. BaseText.TextWrapped = true
  67.  
  68. Punches.Name = "Punches"
  69. Punches.Parent = Base
  70. Punches.BackgroundColor3 = Color3.new(0.290196, 1, 0.52549)
  71. Punches.BorderColor3 = Color3.new(0.145098, 0.498039, 0.254902)
  72. Punches.Position = UDim2.new(0.0505952388, 0, 0.201970443, 0)
  73. Punches.Size = UDim2.new(0, 90, 0, 38)
  74. Punches.Font = Enum.Font.SourceSansBold
  75. Punches.Text = "Fast Punches"
  76. Punches.TextColor3 = Color3.new(0, 0, 0)
  77. Punches.TextScaled = true
  78. Punches.TextSize = 14
  79. Punches.TextWrapped = true
  80.  
  81. Punches.MouseButton1Down:Connect(function()
  82. local player = game:GetService("Players").LocalPlayer
  83. player.Backpack:WaitForChild("Punch").Info.Cooldown.Value = 0.01
  84. player.Backpack.Punch.Info.AnimSpeed.Value = 5
  85. end)
  86.  
  87. Door.Name = "Door"
  88. Door.Parent = Base
  89. Door.BackgroundColor3 = Color3.new(0.290196, 1, 0.52549)
  90. Door.BorderColor3 = Color3.new(0.145098, 0.498039, 0.254902)
  91. Door.Position = UDim2.new(0.0505952388, 0, 0.467980266, 0)
  92. Door.Size = UDim2.new(0, 90, 0, 38)
  93. Door.Font = Enum.Font.SourceSansBold
  94. Door.Text = "Unlock Any Door [P]"
  95. Door.TextColor3 = Color3.new(0, 0, 0)
  96. Door.TextScaled = true
  97. Door.TextSize = 14
  98. Door.TextWrapped = true
  99.  
  100.  
  101. Door.MouseButton1Down:Connect(function()
  102. mouse = game.Players.LocalPlayer:getMouse()
  103. toggled = false
  104. mouse.KeyDown:connect(function(k)
  105. if k:lower() == "p" then
  106. toggled = not toggled
  107. print("Toggle :" .. tostring(toggled))
  108. end
  109. end)
  110.  
  111. mouse.Button1Down:connect(function()
  112. if toggled == true then
  113. if mouse.Target ~= nil then
  114. if mouse.Target.Name == "Click" then
  115. local a, b = pcall(function()
  116. if mouse.Target.Parent:findFirstChild("Locker") then
  117. if mouse.Target.Parent:findFirstChild("Locker").className == "BoolValue" then
  118. if mouse.Target.Parent:findFirstChild("Locker").Value == true then
  119. mouse.Target.Parent.Lock.ClickDetector.RemoteEvent:FireServer()
  120. wait(0.1)
  121. mouse.Target.ClickDetector.RemoteEvent:FireServer()
  122. else
  123. warn("Unlocked Door!")
  124. end
  125. end
  126. end
  127. end)
  128. if not a then
  129. warn(b)
  130. end
  131. end
  132. end
  133. end
  134. end)
  135. end)
  136.  
  137. Weapons.Name = "Weapons"
  138. Weapons.Parent = Base
  139. Weapons.BackgroundColor3 = Color3.new(0.290196, 1, 0.52549)
  140. Weapons.BorderColor3 = Color3.new(0.145098, 0.498039, 0.254902)
  141. Weapons.Position = UDim2.new(0.0505952388, 0, 0.738916278, 0)
  142. Weapons.Size = UDim2.new(0, 90, 0, 38)
  143. Weapons.Font = Enum.Font.SourceSansBold
  144. Weapons.Text = "Tp To Spawned Items"
  145. Weapons.TextColor3 = Color3.new(0, 0, 0)
  146. Weapons.TextScaled = true
  147. Weapons.TextSize = 15
  148. Weapons.TextWrapped = true
  149.  
  150. Weapons.MouseButton1Down:Connect(function()
  151. for i,v in pairs(game.Workspace.RandomSpawner:GetChildren()) do
  152.  
  153. if v ~= nil then
  154. print("Nothing Found. Attempting Search.")
  155. end
  156.  
  157. if v then
  158. wait(0.2)
  159. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.Parent.CFrame * CFrame.new(0,0,0)
  160. wait(0.7)
  161. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.Parent.CFrame * CFrame.new(0,1,0)
  162. end
  163. end
  164. end)
  165.  
  166.  
  167. Section.Name = "Section"
  168. Section.Parent = Base
  169. Section.BackgroundColor3 = Color3.new(0.290196, 1, 0.52549)
  170. Section.BorderColor3 = Color3.new(0.145098, 0.498039, 0.254902)
  171. Section.BorderSizePixel = 0
  172. Section.Position = UDim2.new(0.354166657, 0, 0.128078818, 0)
  173. Section.Size = UDim2.new(0, 1, 0, 177)
  174.  
  175. Decal.Name = "Decal"
  176. Decal.Parent = Base
  177. Decal.BackgroundColor3 = Color3.new(0.290196, 1, 0.52549)
  178. Decal.BorderColor3 = Color3.new(0.145098, 0.498039, 0.254902)
  179. Decal.Position = UDim2.new(0.398809522, 0, 0.221674889, 0)
  180. Decal.Size = UDim2.new(0, 90, 0, 50)
  181. Decal.Font = Enum.Font.SourceSansBold
  182. Decal.Text = "Steal Decal"
  183. Decal.TextColor3 = Color3.new(0, 0, 0)
  184. Decal.TextScaled = true
  185. Decal.TextSize = 14
  186. Decal.TextWrapped = true
  187.  
  188. Decal.MouseButton1Down:Connect(function()
  189. local decal = game.Players[User.Text].PlayerGui.SprayGui.Frame.Frame.TextBox.Text
  190. game.StarterGui:SetCore("SendNotification", {
  191. Title = ""..decal;
  192. Text = "Press F9";
  193. })
  194. print(decal)
  195. end)
  196.  
  197. Audio.Name = "Audio"
  198. Audio.Parent = Base
  199. Audio.BackgroundColor3 = Color3.new(0.290196, 1, 0.52549)
  200. Audio.BorderColor3 = Color3.new(0.145098, 0.498039, 0.254902)
  201. Audio.Position = UDim2.new(0.398809552, 0, 0.620689631, 0)
  202. Audio.Size = UDim2.new(0, 90, 0, 50)
  203. Audio.Font = Enum.Font.SourceSansBold
  204. Audio.Text = "Steal Audio"
  205. Audio.TextColor3 = Color3.new(0, 0, 0)
  206. Audio.TextScaled = true
  207. Audio.TextSize = 14
  208. Audio.TextWrapped = true
  209.  
  210. Audio.MouseButton1Down:Connect(function()
  211. local audio = game.Workspace[User.Text].Torso.Song.SoundId
  212. game.StarterGui:SetCore("SendNotification", {
  213. Title = ""..audio;
  214. Text = "Press F9";
  215. })
  216. print(audio)
  217. end)
  218.  
  219. User.Name = "User"
  220. User.Parent = Base
  221. User.BackgroundColor3 = Color3.new(0.290196, 1, 0.52549)
  222. User.BorderColor3 = Color3.new(0.145098, 0.498039, 0.254902)
  223. User.Position = UDim2.new(0.708333313, 0, 0.38916257, 0)
  224. User.Size = UDim2.new(0, 87, 0, 68)
  225. User.Font = Enum.Font.SourceSansBold
  226. User.PlaceholderColor3 = Color3.new(0, 0, 0)
  227. User.Text = "Target"
  228. User.TextColor3 = Color3.new(0, 0, 0)
  229. User.TextScaled = true
  230. User.TextSize = 14
  231. User.TextWrapped = true
  232.  
  233. Exit.Name = "Exit"
  234. Exit.Parent = Base
  235. Exit.BackgroundColor3 = Color3.new(0.784314, 0, 0)
  236. Exit.BackgroundTransparency = 1
  237. Exit.BorderColor3 = Color3.new(0.392157, 0, 0)
  238. Exit.Size = UDim2.new(0, 29, 0, 26)
  239. Exit.Font = Enum.Font.SourceSansBold
  240. Exit.Text = "X"
  241. Exit.TextColor3 = Color3.new(0, 0, 0)
  242. Exit.TextScaled = true
  243. Exit.TextSize = 14
  244. Exit.TextStrokeColor3 = Color3.new(0.392157, 0, 0)
  245. Exit.TextWrapped = true
  246.  
  247. Exit.MouseButton1Down:Connect(function()
  248. Streets:Destroy()
  249. end)
  250.  
  251. -- // Sayings \\ --
  252.  
  253. game.Players.LocalPlayer.Chatted:connect(function(machete)
  254. if machete == "machete" then
  255. local name = game.Players.LocalPlayer.Name
  256. game.Workspace[name].HumanoidRootPart.CFrame = CFrame.new(-726.606873, 4.04330873, -80.8563232)
  257. end
  258. end)
  259.  
  260. game.Players.LocalPlayer.Chatted:connect(function(glock)
  261. if glock == "glock" then
  262. local name = game.Players.LocalPlayer.Name
  263. game.Workspace[name].HumanoidRootPart.CFrame = CFrame.new(-973.290771, 3.37495351, -92.129425)
  264. end
  265. end)
  266.  
  267. game.Players.LocalPlayer.Chatted:connect(function(uzi)
  268. if uzi == "uzi" then
  269. local name = game.Players.LocalPlayer.Name
  270. game.Workspace[name].HumanoidRootPart.CFrame = CFrame.new(-273.900848, 3.99584341, 362.422211)
  271. end
  272. end)
  273.  
  274. game.Players.LocalPlayer.Chatted:connect(function(shotgun)
  275. if shotgun == "sawed off" then
  276. local name = game.Players.LocalPlayer.Name
  277. game.Workspace[name].HumanoidRootPart.CFrame = CFrame.new(-248.845825, 3.73038244, -245.211899)
  278. end
  279. end)
  280.  
  281. game.Players.LocalPlayer.Chatted:connect(function(noshotgun)
  282. if noshotgun == "sawedoff" then
  283. local name = game.Players.LocalPlayer.Name
  284. game.Workspace[name].HumanoidRootPart.CFrame = CFrame.new(-248.845825, 3.73038244, -245.211899)
  285. end
  286. end)
Advertisement
Add Comment
Please, Sign In to add comment