Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.05 KB | None | 0 0
  1. --[[
  2. StreetsHaxx by 3dsboy08
  3. Gui for 'The Streets'
  4. Works on ProtoSmasher and Elysian.
  5. ]]
  6.  
  7. loadstring(game:HttpGet("--[[
  8. streetshaxx v1.0.0
  9. by 3dsboy08
  10. --]]
  11.  
  12. --Init
  13.  
  14. local charset = {}
  15. math.randomseed(os.time())
  16. for i = 48, 57 do table.insert(charset, string.char(i)) end
  17. for i = 65, 90 do table.insert(charset, string.char(i)) end
  18. for i = 97, 122 do table.insert(charset, string.char(i)) end
  19. function randomstr(length)
  20. if length > 0 then
  21. return randomstr(length - 1) .. charset[math.random(1, #charset)]
  22. else
  23. return ""
  24. end
  25. end
  26.  
  27. CreateGui = function()
  28. local NewGuiPart1 = Instance.new("ScreenGui")
  29. NewGuiPart1.Name = randomstr(math.random(5, 35))
  30. NewGuiPart1.Parent = game:GetService("CoreGui")
  31. -------
  32. local NewGuiPart2 = Instance.new("Frame")
  33. NewGuiPart2.Active = true
  34. NewGuiPart2.BackgroundColor3 = Color3.new(0.133333, 0.133333, 0.133333)
  35. NewGuiPart2.Name = randomstr(math.random(5, 35))
  36. NewGuiPart2.Position = UDim2.new(0, 390, 0, 210)
  37. NewGuiPart2.Size = UDim2.new(0, 430, 0, 270)
  38. NewGuiPart2.Draggable = true
  39. NewGuiPart2.Parent = NewGuiPart1
  40. -------
  41. local NewGuiPart3 = Instance.new("TextButton")
  42. NewGuiPart3.Active = true
  43. NewGuiPart3.BackgroundColor3 = Color3.new(0.992157, 0.372549, 0)
  44. NewGuiPart3.Name = "NoClipButton"
  45. NewGuiPart3.Position = UDim2.new(0, 10, 0, 40)
  46. NewGuiPart3.Selectable = true
  47. NewGuiPart3.Size = UDim2.new(0, 410, 0, 30)
  48. NewGuiPart3.Style = Enum.ButtonStyle.Custom
  49. NewGuiPart3.Font = Enum.Font.SourceSansLight
  50. NewGuiPart3.FontSize = Enum.FontSize.Size18
  51. NewGuiPart3.Text = "NoClip [Enable]"
  52. NewGuiPart3.Parent = NewGuiPart2
  53. -------
  54. local NewGuiPart4 = Instance.new("TextBox")
  55. NewGuiPart4.BackgroundColor3 = Color3.new(0.992157, 0.372549, 0)
  56. NewGuiPart4.Name = "WalkSpeedBox"
  57. NewGuiPart4.Position = UDim2.new(0, 10, 0, 80)
  58. NewGuiPart4.Size = UDim2.new(0, 250, 0, 30)
  59. NewGuiPart4.Font = Enum.Font.SourceSansItalic
  60. NewGuiPart4.FontSize = Enum.FontSize.Size18
  61. NewGuiPart4.Text = "20"
  62. NewGuiPart4.Parent = NewGuiPart2
  63. -------
  64. local NewGuiPart5 = Instance.new("TextButton")
  65. NewGuiPart5.Active = true
  66. NewGuiPart5.BackgroundColor3 = Color3.new(0.992157, 0.372549, 0)
  67. NewGuiPart5.Name = "WalkSpeedButton"
  68. NewGuiPart5.Position = UDim2.new(0, 270, 0, 80)
  69. NewGuiPart5.Selectable = true
  70. NewGuiPart5.Size = UDim2.new(0, 150, 0, 30)
  71. NewGuiPart5.Style = Enum.ButtonStyle.Custom
  72. NewGuiPart5.Font = Enum.Font.SourceSansLight
  73. NewGuiPart5.FontSize = Enum.FontSize.Size18
  74. NewGuiPart5.Text = "Set WalkSpeed"
  75. NewGuiPart5.Parent = NewGuiPart2
  76. -------
  77. local NewGuiPart6 = Instance.new("TextBox")
  78. NewGuiPart6.BackgroundColor3 = Color3.new(0.992157, 0.372549, 0)
  79. NewGuiPart6.Name = "JumpPowerBox"
  80. NewGuiPart6.Position = UDim2.new(0, 10, 0, 120)
  81. NewGuiPart6.Size = UDim2.new(0, 250, 0, 30)
  82. NewGuiPart6.Font = Enum.Font.SourceSansItalic
  83. NewGuiPart6.FontSize = Enum.FontSize.Size18
  84. NewGuiPart6.Text = "50"
  85. NewGuiPart6.Parent = NewGuiPart2
  86. -------
  87. local NewGuiPart7 = Instance.new("TextBox")
  88. NewGuiPart7.BackgroundColor3 = Color3.new(0.992157, 0.372549, 0)
  89. NewGuiPart7.Name = "GravityBox"
  90. NewGuiPart7.Position = UDim2.new(0, 10, 0, 160)
  91. NewGuiPart7.Size = UDim2.new(0, 250, 0, 30)
  92. NewGuiPart7.Font = Enum.Font.SourceSansItalic
  93. NewGuiPart7.FontSize = Enum.FontSize.Size18
  94. NewGuiPart7.Text = "196.2"
  95. NewGuiPart7.Parent = NewGuiPart2
  96. -------
  97. local NewGuiPart8 = Instance.new("TextBox")
  98. NewGuiPart8.BackgroundColor3 = Color3.new(0.992157, 0.372549, 0)
  99. NewGuiPart8.Name = "TeleportBox"
  100. NewGuiPart8.Position = UDim2.new(0, 10, 0, 200)
  101. NewGuiPart8.Size = UDim2.new(0, 250, 0, 30)
  102. NewGuiPart8.Font = Enum.Font.SourceSansItalic
  103. NewGuiPart8.FontSize = Enum.FontSize.Size18
  104. NewGuiPart8.Text = ""
  105. NewGuiPart8.Parent = NewGuiPart2
  106. -------
  107. local NewGuiPart9 = Instance.new("TextButton")
  108. NewGuiPart9.Active = true
  109. NewGuiPart9.BackgroundColor3 = Color3.new(0.992157, 0.372549, 0)
  110. NewGuiPart9.Name = "JumpPowerButton"
  111. NewGuiPart9.Position = UDim2.new(0, 270, 0, 120)
  112. NewGuiPart9.Selectable = true
  113. NewGuiPart9.Size = UDim2.new(0, 150, 0, 30)
  114. NewGuiPart9.Style = Enum.ButtonStyle.Custom
  115. NewGuiPart9.Font = Enum.Font.SourceSansLight
  116. NewGuiPart9.FontSize = Enum.FontSize.Size18
  117. NewGuiPart9.Text = "Set JumpPower"
  118. NewGuiPart9.Parent = NewGuiPart2
  119. -------
  120. local NewGuiPart10 = Instance.new("TextButton")
  121. NewGuiPart10.Active = true
  122. NewGuiPart10.BackgroundColor3 = Color3.new(0.992157, 0.372549, 0)
  123. NewGuiPart10.Name = "GravityButton"
  124. NewGuiPart10.Position = UDim2.new(0, 270, 0, 160)
  125. NewGuiPart10.Selectable = true
  126. NewGuiPart10.Size = UDim2.new(0, 150, 0, 30)
  127. NewGuiPart10.Style = Enum.ButtonStyle.Custom
  128. NewGuiPart10.Font = Enum.Font.SourceSansLight
  129. NewGuiPart10.FontSize = Enum.FontSize.Size18
  130. NewGuiPart10.Text = "Set Gravity"
  131. NewGuiPart10.Parent = NewGuiPart2
  132. -------
  133. local NewGuiPart11 = Instance.new("TextLabel")
  134. NewGuiPart11.Active = true
  135. NewGuiPart11.BackgroundColor3 = Color3.new(0.992157, 0.372549, 0)
  136. NewGuiPart11.Name = "CreditsLabel"
  137. NewGuiPart11.Position = UDim2.new(0, 0, 0, 240)
  138. NewGuiPart11.Size = UDim2.new(0, 430, 0, 30)
  139. NewGuiPart11.Font = Enum.Font.SourceSansItalic
  140. NewGuiPart11.FontSize = Enum.FontSize.Size18
  141. NewGuiPart11.Text = "by 3dsboy08 - using anti-exploit bypass b4"
  142. NewGuiPart11.Parent = NewGuiPart2
  143. -------
  144. local NewGuiPart12 = Instance.new("TextButton")
  145. NewGuiPart12.Active = true
  146. NewGuiPart12.BackgroundColor3 = Color3.new(0.992157, 0.372549, 0)
  147. NewGuiPart12.Name = "TeleportButton"
  148. NewGuiPart12.Position = UDim2.new(0, 270, 0, 200)
  149. NewGuiPart12.Selectable = true
  150. NewGuiPart12.Size = UDim2.new(0, 150, 0, 30)
  151. NewGuiPart12.Style = Enum.ButtonStyle.Custom
  152. NewGuiPart12.Font = Enum.Font.SourceSansLight
  153. NewGuiPart12.FontSize = Enum.FontSize.Size18
  154. NewGuiPart12.Text = "Teleport to Player"
  155. NewGuiPart12.Parent = NewGuiPart2
  156. -------
  157. local NewGuiPart13 = Instance.new("TextLabel")
  158. NewGuiPart13.Active = true
  159. NewGuiPart13.BackgroundColor3 = Color3.new(0.992157, 0.372549, 0)
  160. NewGuiPart13.Name = "HeaderLabel"
  161. NewGuiPart13.Size = UDim2.new(0, 430, 0, 30)
  162. NewGuiPart13.Font = Enum.Font.SourceSansLight
  163. NewGuiPart13.FontSize = Enum.FontSize.Size24
  164. NewGuiPart13.Text = "streetshaxx"
  165. NewGuiPart13.Parent = NewGuiPart2
  166.  
  167. return NewGuiPart2
  168. end
  169.  
  170. --Anti-Exploit Bypass
  171.  
  172. if checkcaller then
  173. --Elysian
  174. getgenv().is_protosmasher_caller = checkcaller
  175. getgenv().make_writeable = function(t) setreadonly(t, false) end
  176. getgenv().make_readonly = function(t) setreadonly(t, true) end
  177. end
  178.  
  179. loadstring(game:HttpGet("https://pastebin.com/raw/N5EMun8T", true))()
  180.  
  181. --Setup GUI
  182.  
  183. local NoClipEnabled = false
  184. local LocalPlayer = game:GetService("Players").LocalPlayer
  185.  
  186. game:GetService('RunService').Stepped:connect(function()
  187. if NoClipEnabled == true then
  188. LocalPlayer.Character.Humanoid:ChangeState(11)
  189. end
  190. end)
  191.  
  192. function GetPlayer(name)
  193. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  194. local n = v.Name:lower()
  195. if n:find(name) == 1 then
  196. return v
  197. end
  198. end
  199. return nil
  200. end
  201.  
  202. local Frame = CreateGui()
  203.  
  204. Frame.NoClipButton.MouseButton1Click:connect(function()
  205. if Frame.NoClipButton.Text == "NoClip [Enable]" then
  206. NoClipEnabled = true
  207. Frame.NoClipButton.Text = "NoClip [Disable]"
  208. else
  209. NoClipEnabled = false
  210. Frame.NoClipButton.Text = "NoClip [Enable]"
  211. end
  212. end)
  213.  
  214. Frame.WalkSpeedButton.MouseButton1Click:connect(function()
  215. local suc, ret = pcall(tonumber, Frame.WalkSpeedBox.Text)
  216. if suc then
  217. LocalPlayer.Character.Humanoid.WalkSpeed = ret
  218. end
  219. end)
  220.  
  221. Frame.JumpPowerButton.MouseButton1Click:connect(function()
  222. local suc, ret = pcall(tonumber, Frame.JumpPowerBox.Text)
  223. if suc then
  224. LocalPlayer.Character.Humanoid.JumpPower = ret
  225. end
  226. end)
  227.  
  228. Frame.GravityButton.MouseButton1Click:connect(function()
  229. local suc, ret = pcall(tonumber, Frame.WalkSpeedBox.Text)
  230. if suc then
  231. workspace.Gravity = ret
  232. end
  233. end)
  234.  
  235. Frame.TeleportButton.MouseButton1Click:connect(function()
  236. local p = GetPlayer(Frame.TeleportBox.Text)
  237. if p then
  238. LocalPlayer.Character.HumanoidRootPart.CFrame = p.Character.Torso.CFrame
  239. end
  240. end)", true))()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement