Advertisement
SNAKERBLX

Untitled

Apr 25th, 2018
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 17.60 KB | None | 0 0
  1. print("LEAKED BY MR STEAL YO BORK @ BORK GANG")
  2. local Gui2 = Instance.new('ScreenGui', game.CoreGui)
  3. Gui2.Name = "REKT BY BORK GANG LOLOLOL"
  4. local version = "big borks"
  5. local function createframe(bkgc3,bkgtrans,borderc3, bordersize, name, parent, pos, rot, size, visible, zindex)
  6. local newframe = Instance.new("Frame")
  7. newframe.BackgroundColor3 = bkgc3
  8. newframe.BackgroundTransparency = bkgtrans
  9. newframe.BorderColor3 = borderc3
  10. newframe.BorderSizePixel = bordersize
  11. newframe.Name = name
  12. newframe.Parent = parent
  13. newframe.Position = pos
  14. newframe.Rotation = rot
  15. newframe.Size = size
  16. newframe.Visible = visible
  17. newframe.ZIndex = zindex
  18. return newframe
  19. end
  20.  
  21. local function createlabel(bkgc3,bkgtrans,borderc3, bordersize, name, parent, pos, rot, size, visible, zindex, font, fontsize, text, textc3, textscaled, textstrokec3, textstroketrans, texttrans, textwrapped, xalign, yalign)
  22. local newlabel = Instance.new("TextLabel")
  23. newlabel.BackgroundColor3 = bkgc3
  24. newlabel.BackgroundTransparency = bkgtrans
  25. newlabel.BorderColor3 = borderc3
  26. newlabel.BorderSizePixel = bordersize
  27. newlabel.Name = name
  28. newlabel.Parent = parent
  29. newlabel.Position = pos
  30. newlabel.Rotation = rot
  31. newlabel.Size = size
  32. newlabel.Visible = visible
  33. newlabel.ZIndex = zindex
  34. newlabel.Font = font
  35. newlabel.FontSize = fontsize
  36. newlabel.Text = text
  37. newlabel.TextColor3 = textc3
  38. newlabel.TextScaled = textscaled
  39. newlabel.TextStrokeColor3 = textstrokec3
  40. newlabel.TextStrokeTransparency = textstroketrans
  41. newlabel.TextTransparency = texttrans
  42. newlabel.TextWrapped = textwrapped
  43. newlabel.TextXAlignment = xalign
  44. newlabel.TextYAlignment = yalign
  45. return newlabel
  46. end
  47.  
  48. local function createbutton(autocolor, bkgc3,bkgtrans,borderc3, bordersize, name, parent, pos, rot, size, visible, zindex, font, fontsize, text, textc3, textscaled, textstrokec3, textstroketrans, texttrans, textwrapped, xalign, yalign)
  49. local newbutton = Instance.new("TextButton")
  50. newbutton.AutoButtonColor = autocolor
  51. newbutton.BackgroundColor3 = bkgc3
  52. newbutton.BackgroundTransparency = bkgtrans
  53. newbutton.BorderColor3 = borderc3
  54. newbutton.BorderSizePixel = bordersize
  55. newbutton.Name = name
  56. newbutton.Parent = parent
  57. newbutton.Position = pos
  58. newbutton.Rotation = rot
  59. newbutton.Size = size
  60. newbutton.Visible = visible
  61. newbutton.ZIndex = zindex
  62. newbutton.Font = font
  63. newbutton.FontSize = fontsize
  64. newbutton.Text = text
  65. newbutton.TextColor3 = textc3
  66. newbutton.TextScaled = textscaled
  67. newbutton.TextStrokeColor3 = textstrokec3
  68. newbutton.TextStrokeTransparency = textstroketrans
  69. newbutton.TextTransparency = texttrans
  70. newbutton.TextWrapped = textwrapped
  71. newbutton.TextXAlignment = xalign
  72. newbutton.TextYAlignment = yalign
  73. return newbutton
  74. end
  75.  
  76. local function createtextbox(bkgc3,bkgtrans,borderc3, bordersize, clrtext, multiline, name, parent, pos, rot, size, visible, zindex, font, fontsize, text, textc3, textscaled, textstrokec3, textstroketrans, texttrans, textwrapped, xalign, yalign)
  77. local newbox = Instance.new("TextBox")
  78. newbox.BackgroundColor3 = bkgc3
  79. newbox.BackgroundTransparency = bkgtrans
  80. newbox.BorderColor3 = borderc3
  81. newbox.BorderSizePixel = bordersize
  82. newbox.ClearTextOnFocus = clrtext
  83. newbox.MultiLine = multiline
  84. newbox.Name = name
  85. newbox.Parent = parent
  86. newbox.Position = pos
  87. newbox.Rotation = rot
  88. newbox.Size = size
  89. newbox.Visible = visible
  90. newbox.ZIndex = zindex
  91. newbox.Font = font
  92. newbox.FontSize = fontsize
  93. newbox.Text = text
  94. newbox.TextColor3 = textc3
  95. newbox.TextScaled = textscaled
  96. newbox.TextStrokeColor3 = textstrokec3
  97. newbox.TextStrokeTransparency = textstroketrans
  98. newbox.TextTransparency = texttrans
  99. newbox.TextWrapped = textwrapped
  100. newbox.TextXAlignment = xalign
  101. newbox.TextYAlignment = yalign
  102. return newbox
  103. end
  104.  
  105. local function createimagelabel(bkgc3,bkgtrans,borderc3, bordersize, name, parent, pos, rot, size, visible, zindex, image, imagetrans)
  106. local newimage = Instance.new("ImageLabel")
  107. newimage.BackgroundColor3 = bkgc3
  108. newimage.BackgroundTransparency = bkgtrans
  109. newimage.BorderColor3 = borderc3
  110. newimage.BorderSizePixel = bordersize
  111. newimage.Name = name
  112. newimage.Parent = parent
  113. newimage.Position = pos
  114. newimage.Rotation = rot
  115. newimage.Size = size
  116. newimage.Visible = visible
  117. newimage.ZIndex = zindex
  118. newimage.Image = "rbxassetid://"..image
  119. newimage.ImageTransparency = imagetrans
  120. return newimage
  121. end
  122. local IntroFrames = createframe(Color3.new(43/255, 43/255, 43/255),0,Color3.new(27/255,42/255,53/255),0,"IntroFrames",Gui2,UDim2.new(0,-330,0,0),0,UDim2.new(0,300,1,0),true,1)
  123. createframe(Color3.new(43/255, 43/255, 43/255),0,Color3.new(0,0,0),0,"bar",IntroFrames,UDim2.new(1,0,0,0),0,UDim2.new(0,30,0,90),true,1)
  124. createimagelabel(Color3.new(1,1,1),1,Color3.new(0,0,0),0,"Slant",IntroFrames,UDim2.new(1,0,0,90),90,UDim2.new(0,30,0,30),true,1,474172996,0)
  125. createlabel(Color3.new(1,1,1),1,Color3.new(0,0,0),0,"Creator",IntroFrames,UDim2.new(0,80,1,-40),0,UDim2.new(0,140,0,30),true,1,Enum.Font.Code,Enum.FontSize.Size14,"MR STEAL YO BORK @ BORK GANG",Color3.new(0/255, 174/255, 255/255), false,Color3.new(0,0,0),1,0,true,Enum.TextXAlignment.Center,Enum.TextYAlignment.Center)
  126. createlabel(Color3.new(1,1,1),1,Color3.new(0,0,0),0,"CreatorLabel",IntroFrames,UDim2.new(0,80,1,-70),0,UDim2.new(0,140,0,30),true,1,Enum.Font.Code,Enum.FontSize.Size18,"LEAKED BY:",Color3.new(0/255, 174/255, 255/255), false,Color3.new(0,0,0),1,0,true,Enum.TextXAlignment.Center,Enum.TextYAlignment.Center)
  127. createlabel(Color3.new(1,1,1),1,Color3.new(0,0,0),0,"Desc",IntroFrames,UDim2.new(0,0,0,120),0,UDim2.new(1,0,0,90),true,1,Enum.Font.SourceSansLight,Enum.FontSize.Size14,"fuck the streets",Color3.new(0, 216, 18), true,Color3.new(0,0,0),1,0,true,Enum.TextXAlignment.Center,Enum.TextYAlignment.Center)
  128. createlabel(Color3.new(1,1,1),1,Color3.new(0,0,0),0,"SubTitle",IntroFrames,UDim2.new(0.5,-150,0,70),0,UDim2.new(0,300,0,40),true,1,Enum.Font.SourceSansBold,Enum.FontSize.Size32,"",Color3.new(27/255,42/255,53/255), false,Color3.new(0,0,0),1,0,true,Enum.TextXAlignment.Center,Enum.TextYAlignment.Center)
  129. createlabel(Color3.new(1,1,1),1,Color3.new(0,0,0),0,"Title",IntroFrames,UDim2.new(0.5,-105,0,20),0,UDim2.new(0,210,0,60),true,1,Enum.Font.SourceSansBold,Enum.FontSize.Size32,"THE STREETS SCRIPT LEAK",Color3.new(0/255, 174/255, 255/255), false,Color3.new(0,0,0),1,0,true,Enum.TextXAlignment.Center,Enum.TextYAlignment.Center)
  130.  
  131. IntroFrames:TweenPosition(UDim2.new(0,0,0,0),Enum.EasingDirection.Out,Enum.EasingStyle.Quart,0.5,true)
  132. local weee = game.Workspace
  133. Instance.new("Sound", weee)
  134. wait(0.01)
  135. weee.Sound.Name = "borkgangLOLXD"
  136. wait(0.03)
  137. weee.borkgangLOLXD.SoundId = "rbxassetid://632546198"
  138. weee.borkgangLOLXD.Volume = 1
  139. wait (0.02)
  140. weee.borkgangLOLXD:Play()
  141. wait(3)
  142. IntroFrames:TweenPosition(UDim2.new(0,-330,0,0),Enum.EasingDirection.In,Enum.EasingStyle.Quart,0.5,true)
  143. wait(3)
  144. Gui2:Destroy()
  145.  
  146. repeat wait() until
  147. game.Players.LocalPlayer ~= nil
  148.  
  149. local player = game.Players.LocalPlayer
  150. local mouse = player:GetMouse()
  151. local context = game:GetService("ContextActionService")
  152. local teleported = false
  153. local cartp = false
  154. local door = false
  155. local sound = false
  156. local decal = false
  157. local spray = false
  158.  
  159. player.CharacterAdded:connect(function()
  160. Speed()
  161. end)
  162.  
  163. function Gui()
  164. if game.CoreGui:FindFirstChild("Music") == nil then
  165. local s = Instance.new("ScreenGui", game.CoreGui)
  166. s.Name = "Music"
  167. local b = Instance.new("TextBox", s)
  168. b.Size = UDim2.new(0.07, 0, 0.03, 0)
  169. b.Position = UDim2.new(0.905, 0, 0.96, 0)
  170. b.BackgroundColor3 = Color3.new(0, 0, 0)
  171. b.BackgroundTransparency = 0.5
  172. b.Text = "Enter ID Here"
  173. b.TextColor3 = Color3.new(1, 1, 1)
  174. b.Font = "Code"
  175. b.FontSize = "Size14"
  176. b.BorderSizePixel = 0
  177. local t = Instance.new("TextButton", s)
  178. t.Size = UDim2.new(0.02, 0, 0.03, 0)
  179. t.Position = UDim2.new(0.975, 0, 0.96, 0)
  180. t.BackgroundColor3 = Color3.new(0, 0, 0)
  181. t.BackgroundTransparency = 0.5
  182. t.Text = "Play"
  183. t.TextColor3 = Color3.new(1, 1, 1)
  184. t.Font = "Code"
  185. t.FontSize = "Size14"
  186. t.BorderSizePixel = 0
  187. t.MouseButton1Click:connect(function()
  188. if player.Character:FindFirstChild("BoomBox") ~= nil then
  189. player.Character.BoomBox.Remote:FireServer("PlaySong", b.Text)
  190. else
  191. b.Text = "Equip Radio"
  192. end
  193. end)
  194. local b1LOLEMOJI = Instance.new("TextLabel", s)
  195. b1LOLEMOJI.Size = UDim2.new(0.07, 0, 0.03, 0)
  196. b1LOLEMOJI.Position = UDim2.new(0.105, 0, 0.8975, 0)
  197. b1LOLEMOJI.BackgroundColor3 = Color3.new(0, 0, 0)
  198. b1LOLEMOJI.BackgroundTransparency = 1
  199. b1LOLEMOJI.Text = "rekt by mr steal yo bork @ bork gang"
  200. b1LOLEMOJI.TextColor3 = Color3.new(255, 159, 5)
  201. b1LOLEMOJI.Font = "Code"
  202. b1LOLEMOJI.FontSize = "Size18"
  203. b1LOLEMOJI.BorderSizePixel = 0
  204. b2 = Instance.new("TextBox", s)
  205. b2.Size = UDim2.new(0.07, 0, 0.03, 0)
  206. b2.Position = UDim2.new(0.905, 0, 0.925, 0)
  207. b2.BackgroundColor3 = Color3.new(0, 0, 0)
  208. b2.BackgroundTransparency = 0.5
  209. b2.Text = "Enter ID Here"
  210. b2.TextColor3 = Color3.new(1, 1, 1)
  211. b2.Font = "Code"
  212. b2.FontSize = "Size14"
  213. b2.BorderSizePixel = 0
  214. local b3 = Instance.new("Frame", s)
  215. b3.Size = b2.Size
  216. b3.Position = b2.Position
  217. b3.BackgroundTransparency = 1
  218. local preview = Instance.new("ImageLabel", s)
  219. preview.Size = UDim2.new(0.06, 0, 0.11, 0)
  220. preview.Position = UDim2.new(0.47, 0, 0.45, 0)
  221. preview.BackgroundTransparency = 0.5
  222. preview.BackgroundColor3 = Color3.new(0, 0, 0)
  223. preview.BorderSizePixel = 0
  224. preview.Visible = false
  225. b2.Changed:connect(function()
  226. if b2.Text ~= nil and b2.Text:match("%d+") then
  227. preview.Image = "http://www.roblox.com/asset/?id="..b2.Text:match("%d+") - 1
  228. else
  229. preview.Image = nil
  230. end
  231. end)
  232. b2.MouseEnter:connect(function()
  233. preview.Visible = true
  234. end)
  235. b2.MouseMoved:connect(function()
  236. preview.Position = UDim2.new(0, mouse.X - 120, 0, mouse.Y - 115)
  237. end)
  238. b2.MouseLeave:connect(function()
  239. preview.Visible = false
  240. end)
  241. b3.MouseLeave:connect(function()
  242. preview.Visible = false
  243. end)
  244. t2 = Instance.new("TextBox", s)
  245. t2.Size = UDim2.new(0.02, 0, 0.03, 0)
  246. t2.Position = UDim2.new(0.975, 0, 0.925, 0)
  247. t2.BackgroundColor3 = Color3.new(0, 0, 0)
  248. t2.BackgroundTransparency = 0.5
  249. t2.Text = "Size"
  250. t2.TextColor3 = Color3.new(1, 1, 1)
  251. t2.Font = "Code"
  252. t2.FontSize = "Size14"
  253. t2.BorderSizePixel = 0
  254. local d = Instance.new("TextButton", s)
  255. d.Size = UDim2.new(0.0425, 0, 0.02, 0)
  256. d.Position = UDim2.new(0.905, 0, 0.8975, 0)
  257. d.Text = "Steal Decal"
  258. d.Font = "Code"
  259. d.FontSize = "Size14"
  260. d.BackgroundColor3 = Color3.new(0, 0, 0)
  261. d.TextColor3 = Color3.new(1, 1, 1)
  262. d.BackgroundTransparency = 0.5
  263. d.BorderColor3 = Color3.new(0.7, 0, 0)
  264. d.MouseButton1Click:connect(function()
  265. if door == false and sound == false and decal == false then
  266. decal = true
  267. context:BindAction("Decal", Decal, false, Enum.UserInputType.MouseButton1)
  268. d.BorderColor3 = Color3.new(0, 0.7, 0)
  269. else
  270. decal = false
  271. context:UnbindAction("Decal")
  272. d.BorderColor3 = Color3.new(0.7, 0, 0)
  273. end
  274. end)
  275. local so = Instance.new("TextButton", s)
  276. so.Size = UDim2.new(0.0425, 0, 0.02, 0)
  277. so.Position = UDim2.new(0.952, 0, 0.8975, 0)
  278. so.Text = "Steal Sound"
  279. so.Font = "Code"
  280. so.FontSize = "Size14"
  281. so.BackgroundColor3 = Color3.new(0, 0, 0)
  282. so.TextColor3 = Color3.new(1, 1, 1)
  283. so.BackgroundTransparency = 0.5
  284. so.BorderColor3 = Color3.new(0.7, 0, 0)
  285. so.MouseButton1Click:connect(function()
  286. if door == false and sound == false and decal == false then
  287. sound = true
  288. context:BindAction("Sound", Sound, false, Enum.UserInputType.MouseButton1)
  289. so.BorderColor3 = Color3.new(0, 0.7, 0)
  290. else
  291. sound = false
  292. context:UnbindAction("Sound")
  293. so.BorderColor3 = Color3.new(0.7, 0, 0)
  294. end
  295. end)
  296. local d2 = Instance.new("TextButton", s)
  297. d2.Size = UDim2.new(0.0425, 0, 0.02, 0)
  298. d2.Position = UDim2.new(0.952, 0, 0.87, 0)
  299. d2.Text = "Open Door"
  300. d2.Font = "Code"
  301. d2.FontSize = "Size14"
  302. d2.BackgroundColor3 = Color3.new(0, 0, 0)
  303. d2.TextColor3 = Color3.new(1, 1, 1)
  304. d2.BackgroundTransparency = 0.5
  305. d2.BorderColor3 = Color3.new(0.7, 0, 0)
  306. d2.MouseButton1Click:connect(function()
  307. if door == false and sound == false and decal == false then
  308. door = true
  309. context:BindAction("Open", Open, false, Enum.UserInputType.MouseButton1)
  310. d2.BorderColor3 = Color3.new(0, 0.7, 0)
  311. else
  312. door = false
  313. context:UnbindAction("Open")
  314. d2.BorderColor3 = Color3.new(0.7, 0, 0)
  315. end
  316. end)
  317. end
  318. end
  319.  
  320. function Speed()
  321.  
  322. player.Backpack:WaitForChild("Punch").Info.Cooldown.Value = 0.01
  323. player.Backpack.Punch.Info.AnimSpeed.Value = 5
  324. player.Backpack:WaitForChild("Knife").Info.Cooldown.Value = 0.01
  325. player.Backpack.Knife.Info.AnimSpeed.Value = 5
  326. if game:GetService("MarketplaceService"):PlayerOwnsAsset(player, 503266657) then
  327. player.Backpack:WaitForChild("Pipe").Info.Cooldown.Value = 0.01
  328. player.Backpack.Pipe.Info.AnimSpeed.Value = 5
  329. end
  330. player.Backpack.ChildAdded:connect(function(child)
  331. if child.Name == "Bat" or child.Name == "Bottle" then
  332. child:WaitForChild("Info").Cooldown.Value = 0.01
  333. child.Info.AnimSpeed.Value = 5
  334. end
  335. end)
  336.  
  337. if game:GetService("MarketplaceService"):PlayerOwnsAsset(player, 529140430) then
  338. player.Backpack:FindFirstChild("Spray").Equipped:connect(function()
  339. context:BindAction("Spray", Spray, false, Enum.UserInputType.MouseButton1)
  340. end)
  341. player.Backpack:FindFirstChild("Spray").Unequipped:connect(function()
  342. context:UnbindAction("Spray")
  343. end)
  344. end
  345. player.Backpack.ServerTraits.Stam.Changed:connect(function()
  346. player.Backpack.ServerTraits.Stam.Value = 100
  347. end)
  348. --if game:GetService("MarketplaceService"):PlayerOwnsAsset(player, 469767880) then
  349. Gui()
  350. player.PlayerGui.ChildAdded:connect(function(child)
  351. if child.Name == "ChooseSongGui" or child.Name == "SprayGui" then
  352. child:Destroy()
  353. end
  354. end)
  355. --end
  356. player.Character.Humanoid.Seated:connect(function(sitting, seat)
  357. if sitting and seat.Name == "Drive" then
  358. player.PlayerGui.LocalScript.Disabled = true
  359. elseif sitting == false and player.PlayerGui.LocalScript.Disabled == true then
  360. player.PlayerGui.LocalScript.Disabled = false
  361. end
  362. end)
  363. end
  364.  
  365. function Items(actionName, inputState, inputObject)
  366. for Num, Obj in pairs(game.Workspace:GetChildren()) do
  367. if Obj.Name == "RandomSpawner" then
  368. Obj.CanCollide = false
  369. wait()
  370. Obj.CFrame = player.Character.Torso.CFrame
  371. end
  372. end
  373. end
  374.  
  375. function Friends(actionName, inputState, inputObject)
  376. for Num, Obj in pairs(game.Players:GetPlayers()) do
  377. if Obj:IsFriendsWith(player.UserId) and not teleported and Obj ~= player then
  378. player.Character:MoveTo(Obj.Character.Torso.Position)
  379. teleported = true
  380. end
  381. teleported = false
  382. end
  383. end
  384.  
  385. function Car(actionName, inputState, inputObject)
  386. for Num, Obj in pairs(game.Workspace:GetChildren()) do
  387. if Obj.Name == "Car" and Obj:FindFirstChild("Drive").Occupant == nil and cartp == false then
  388. cartp = true
  389. Obj:MoveTo(player.Character.Torso.Position + player.Character.Torso.CFrame.lookVector * 15)
  390. Obj:MakeJoints()
  391. end
  392. end
  393. cartp = false
  394. end
  395.  
  396. function Door(actionName, inputState, inputObject)
  397. if inputState == Enum.UserInputState.Begin then
  398. context:BindAction("Lock", Lock, false, Enum.UserInputType.MouseButton1)
  399. else
  400. context:UnbindAction("Lock")
  401. end
  402. end
  403.  
  404. function Lock(actionName, inputState, inputObject)
  405. if inputState == Enum.UserInputState.End then
  406. if mouse.Target.Parent.Name == "Door" and mouse.Target.Name ~= "Lock" and mouse.Target.Name ~= "Click" then
  407. local door = mouse.Target.Parent
  408. door:FindFirstChild("Lock").ClickDetector.RemoteEvent:FireServer()
  409. elseif mouse.Target.Parent.Parent.Name == "Door" then
  410. local door = mouse.Target.Parent.Parent
  411. door:FindFirstChild("Lock").ClickDetector.RemoteEvent:FireServer()
  412. end
  413. end
  414. end
  415.  
  416. function Open(actionName, inputState, inputObject)
  417. if inputState == Enum.UserInputState.End then
  418. if mouse.Target.Parent.Name == "Door" and mouse.Target.Name ~= "Lock" and mouse.Target.Name ~= "Click" then
  419. local door = mouse.Target.Parent
  420. door:FindFirstChild("Click").ClickDetector.RemoteEvent:FireServer()
  421. elseif mouse.Target.Parent.Parent.Name == "Door" then
  422. local door = mouse.Target.Parent.Parent
  423. door:FindFirstChild("Click").ClickDetector.RemoteEvent:FireServer()
  424. end
  425. end
  426. end
  427.  
  428. function Steal(actionName, inputState, inputObject)
  429. if inputState == Enum.UserInputState.Begin then
  430. context:BindAction("Sound", Sound, false, Enum.UserInputType.MouseButton1)
  431. context:BindAction("Decal", Decal, false, Enum.UserInputType.MouseButton2)
  432. else
  433. context:UnbindAction("Sound")
  434. context:UnbindAction("Decal")
  435. end
  436. end
  437.  
  438. function Sound(actionName, inputState, inputObject)
  439. if inputState == Enum.UserInputState.End then
  440. if mouse.Target.Parent:FindFirstChild("BoomBox") and mouse.Target.Parent.BoomBox.Handle.Sound.SoundId ~= nil then
  441. local sound = mouse.Target.Parent.BoomBox
  442. print("Sound: "..sound.Handle.Sound.SoundId:match("%d+"))
  443. elseif mouse.Target.Parent.Parent:FindFirstChild("BoomBox") and mouse.Target.Parent.Parent.BoomBox.Handle.Sound.SoundId ~= nil then
  444. local sound = mouse.Target.Parent.Parent.BoomBox
  445. print("Sound: "..sound.Handle.Sound.SoundId:match("%d+"))
  446. end
  447. end
  448. end
  449.  
  450. function Decal(actionName, inputState, inputObject)
  451. if inputState == Enum.UserInputState.End then
  452. if mouse.Target.Name:find("Spray") and mouse.Target:FindFirstChild("Decal") ~= nil then
  453. print("Decal: "..mouse.Target.Decal.Texture:match("%d+"))
  454. end
  455. end
  456. end
  457.  
  458. function Spray(actionName, inputState, inputObject)
  459. if inputState == Enum.UserInputState.End then
  460. if mouse.Target ~= nil and player.Character:FindFirstChild("Spray") ~= nil then
  461. player.Character.Spray.SprayIt:FireServer("http://www.roblox.com/asset/?id=", b2.Text, mouse.TargetSurface, t2.Text, mouse.Target, mouse.Hit)
  462. end
  463. end
  464. end
  465.  
  466. for Num, Obj in pairs(game.Workspace:GetChildren()) do
  467. if Obj.Name == "Car" and Obj:FindFirstChild("Drive") ~= nil then
  468. Obj.Drive.MaxSpeed = 500
  469. Obj.Drive.Torque = 60
  470. end
  471. end
  472.  
  473. context:BindAction("Items", Items, false, Enum.KeyCode.P)
  474. context:BindAction("Car", Car, false, Enum.KeyCode.K)
  475. context:BindAction("Door", Door, false, Enum.KeyCode.LeftControl)
  476.  
  477. Speed()
  478. Gui()
  479.  
  480. print("streets loaded - leaked by mr steal yo bork @ bork gang")
  481.  
  482. print("rekd by MR STEAL YO BORK @ BORK GANG1!111111!!!!")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement