awzp

Draksploit the streets

Jun 27th, 2018
344
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.12 KB | None | 0 0
  1. -- Farewell infortality
  2. -- Revamp by ImFrostic, Version 2.81
  3.  
  4. -- Objects
  5.  
  6. local ScreenGui = Instance.new("ScreenGui")
  7. local Frame = Instance.new("Frame")
  8. local BFG = Instance.new("TextButton")
  9. local Speed = Instance.new("TextButton")
  10. local JPflip = Instance.new("TextButton")
  11. local JP = Instance.new("TextButton")
  12. local Anims = Instance.new("TextButton")
  13. local Weapon = Instance.new("TextButton")
  14. local TextLabel = Instance.new("TextLabel")
  15. local TextLabel_2 = Instance.new("TextLabel")
  16.  
  17. -- Properties
  18.  
  19. ScreenGui.Parent = game.Players.LocalPlayer.PlayerGui
  20.  
  21. Frame.Parent = ScreenGui
  22. Frame.Active = true
  23. Frame.BackgroundColor3 = Color3.new(1, 0.666667, 1)
  24. Frame.BorderSizePixel = 3
  25. Frame.Position = UDim2.new(0.0346964076, 0, 0.169491529, 0)
  26. Frame.Size = UDim2.new(0, 389, 0, 169)
  27. Frame.Draggable = true
  28.  
  29. BFG.Name = "BFG"
  30. BFG.Parent = Frame
  31. BFG.BackgroundColor3 = Color3.new(0.494118, 1, 0.984314)
  32. BFG.BackgroundTransparency = 0.5
  33. BFG.BorderColor3 = Color3.new(0, 0, 0)
  34. BFG.BorderSizePixel = 0
  35. BFG.Position = UDim2.new(0.0299727526, 0, 0.236124411, 0)
  36. BFG.Size = UDim2.new(0, 115, 0, 36)
  37. BFG.Font = Enum.Font.Fantasy
  38. BFG.Text = "BFG"
  39. BFG.TextColor3 = Color3.new(0, 0, 0)
  40. BFG.TextSize = 20
  41.  
  42. BFG.MouseButton1Down:connect(function()
  43. local plr = game.Players.LocalPlayer
  44. local h = game:GetService('RunService').Heartbeat
  45. local m = plr:GetMouse()
  46.  
  47. local bfg = false
  48. local prefix = "."
  49.  
  50. plr.Chatted:connect(function(cmd)
  51. cmd=cmd:lower()
  52. if cmd == prefix.."bfg" then
  53. bfg = not bfg
  54. end
  55. end)
  56.  
  57. m.Button1Down:connect(function()
  58. h:wait()
  59. if bfg == true then
  60. if plr.Character:FindFirstChild('Uzi') then plr.Character.Uzi.Fire:FireServer(m.Hit) end
  61. if plr.Character:FindFirstChild('Shotty') then plr.Character.Shotty.Fire:FireServer(m.Hit) end
  62. if plr.Character:FindFirstChild('Glock') then plr.Character.Glock.Fire:FireServer(m.Hit) end
  63. if plr.Character:FindFirstChild('Sawed Off') then plr.Character["Sawed Off"].Fire:FireServer(m.Hit) end
  64. end
  65. end)
  66.  
  67. function start()
  68. while true do
  69. h:wait()
  70. if bfg == true then
  71. if plr.Backpack:FindFirstChild('Uzi') then
  72. plr.Backpack.Uzi.Parent = plr.Character
  73. h:wait()
  74. elseif plr.Backpack:FindFirstChild('Shotty') then
  75. plr.Backpack.Shotty.Parent = plr.Character
  76. h:wait()
  77. elseif plr.Backpack:FindFirstChild("Glock") then
  78. plr.Backpack.Glock.Parent = plr.Character
  79. h:wait()
  80. elseif plr.Backpack:FindFirstChild("Sawed Off") then
  81. plr.Backpack["Sawed Off"].Parent = plr.Character
  82. h:wait()
  83. end
  84. end
  85. end
  86. end
  87. start()
  88. end)
  89.  
  90. Speed.Name = "Speed"
  91. Speed.Parent = Frame
  92. Speed.BackgroundColor3 = Color3.new(0.494118, 1, 0.984314)
  93. Speed.BackgroundTransparency = 0.5
  94. Speed.BorderColor3 = Color3.new(0, 0, 0)
  95. Speed.BorderSizePixel = 0
  96. Speed.Position = UDim2.new(0.674824655, 0, 0.236124411, 0)
  97. Speed.Size = UDim2.new(0, 115, 0, 36)
  98. Speed.Font = Enum.Font.Fantasy
  99. Speed.Text = "Speed"
  100. Speed.TextColor3 = Color3.new(0, 0, 0)
  101. Speed.TextSize = 20
  102.  
  103. Speed.MouseButton1Down:connect(function()
  104. local player=game.Players.LocalPlayer
  105. local mouse = player:GetMouse()
  106.  
  107. local bodythurst=Instance.new("BodyThrust", player.Character.HumanoidRootPart)
  108.  
  109. local speedy=false
  110. mouse.KeyDown:connect(function(key)
  111. if key:byte() == 48 then
  112. bodythurst.force=Vector3.new(0,0,-4000)
  113. end end)
  114.  
  115. mouse.KeyUp:connect(function(key)
  116. if key:byte() == 48 then
  117. bodythurst.force=Vector3.new(0,0,0)
  118. end end)
  119. print"Loaded"
  120. end)
  121.  
  122.  
  123. JPflip.Name = "JPflip"
  124. JPflip.Parent = Frame
  125. JPflip.BackgroundColor3 = Color3.new(0.494118, 1, 0.984314)
  126. JPflip.BackgroundTransparency = 0.5
  127. JPflip.BorderColor3 = Color3.new(0, 0, 0)
  128. JPflip.BorderSizePixel = 0
  129. JPflip.Position = UDim2.new(0.351190388, 0, 0.236124411, 0)
  130. JPflip.Size = UDim2.new(0, 115, 0, 36)
  131. JPflip.Font = Enum.Font.Fantasy
  132. JPflip.Text = "Jump Flip"
  133. JPflip.TextColor3 = Color3.new(0, 0, 0)
  134. JPflip.TextSize = 20
  135.  
  136. JPflip.MouseButton1Click:connect (function()
  137. -- Created By Qerzty / Yurza --
  138. for _,v in pairs(game.Players.LocalPlayer.Character.Animate.jump:GetChildren()) do
  139. v.AnimationId = 'rbxassetid://229782914'
  140. end
  141. end)
  142.  
  143.  
  144.  
  145. JP.Name = "JP"
  146. JP.Parent = Frame
  147. JP.BackgroundColor3 = Color3.new(0.494118, 1, 0.984314)
  148. JP.BackgroundTransparency = 0.5
  149. JP.BorderColor3 = Color3.new(0, 0, 0)
  150. JP.BorderSizePixel = 0
  151. JP.Position = UDim2.new(0.0299727526, 0, 0.509984493, 0)
  152. JP.Size = UDim2.new(0, 115, 0, 36)
  153. JP.Font = Enum.Font.Fantasy
  154. JP.Text = "Jump power"
  155. JP.TextColor3 = Color3.new(0, 0, 0)
  156. JP.TextSize = 20
  157.  
  158. JP.MouseButton1Down:connect(function()
  159.  
  160. local jp = Vector3.new(0, 2500, 0)
  161. local obese = game:GetService('Players')
  162. local a = Instance.new("BodyForce")
  163. a.Parent = obese.LocalPlayer.Character.HumanoidRootPart
  164. a.Force = jp
  165. end)
  166.  
  167.  
  168. Anims.Name = "Anims"
  169. Anims.Parent = Frame
  170. Anims.BackgroundColor3 = Color3.new(0.494118, 1, 0.984314)
  171. Anims.BackgroundTransparency = 0.5
  172. Anims.BorderColor3 = Color3.new(0, 0, 0)
  173. Anims.BorderSizePixel = 0
  174. Anims.Position = UDim2.new(0.674824655, 0, 0.509984493, 0)
  175. Anims.Size = UDim2.new(0, 115, 0, 36)
  176. Anims.Font = Enum.Font.Fantasy
  177. Anims.Text = "Animations"
  178. Anims.TextColor3 = Color3.new(0, 0, 0)
  179. Anims.TextSize = 20
  180.  
  181.  
  182. Anims.MouseButton1Click:connect (function()
  183. loadstring(game:GetObjects("rbxassetid://1295329334")[1].Source)()
  184. end)
  185.  
  186.  
  187.  
  188. Weapon.Name = "Weapon"
  189. Weapon.Parent = Frame
  190. Weapon.BackgroundColor3 = Color3.new(0.494118, 1, 0.984314)
  191. Weapon.BackgroundTransparency = 0.5
  192. Weapon.BorderColor3 = Color3.new(0, 0, 0)
  193. Weapon.BorderSizePixel = 0
  194. Weapon.Position = UDim2.new(0.351190388, 0, 0.509984493, 0)
  195. Weapon.Size = UDim2.new(0, 115, 0, 36)
  196. Weapon.Font = Enum.Font.Fantasy
  197. Weapon.Text = "Wepon anims"
  198. Weapon.TextColor3 = Color3.new(0, 0, 0)
  199. Weapon.TextSize = 20
  200.  
  201. Weapon.MouseButton1Click:connect (function()
  202.  
  203. game.Players.LocalPlayer.Backpack.Punch.Punch1.AnimationId="rbxassetid://465400764"
  204.  
  205. game.Players.LocalPlayer.Backpack.Punch.Punch2.AnimationId="rbxassetid://465401877"
  206.  
  207. game.Players.LocalPlayer.Backpack.Punch.Punch3.AnimationId="rbxassetid://400424276"
  208.  
  209. game.Players.LocalPlayer.Backpack.Punch.Punch4.AnimationId="rbxassetid://501014044"
  210.  
  211. game.Players.LocalPlayer.Backpack.Punch.Running.AnimationId="rbxassetid://501022727"
  212.  
  213. game.Players.LocalPlayer.Backpack.Punch.Info.AnimSpeed.Value = "1.5"
  214.  
  215. game.Players.LocalPlayer.Backpack.Punch.Info.Cooldown.Value = "0.48"
  216.  
  217. game.Players.LocalPlayer.Backpack.Machete.Idle.AnimationId="rbxassetid://422100597"
  218.  
  219. game.Players.LocalPlayer.Backpack.Machete.Punch1.AnimationId="rbxassetid://503263392"
  220.  
  221. game.Players.LocalPlayer.Backpack.Machete.Punch2.AnimationId="rbxassetid://552488357"
  222.  
  223. game.Players.LocalPlayer.Backpack.Machete.Running.AnimationId="rbxassetid://341273975"
  224.  
  225. game.Players.LocalPlayer.Backpack.Machete.Info.AnimSpeed.Value = "2"
  226.  
  227. game.Players.LocalPlayer.Backpack.Machete.Info.Cooldown.Value = "0.58"
  228.  
  229. game.Players.LocalPlayer.Backpack.Knife.GripUp = Vector3.new(0,0,1)
  230.  
  231. game.Players.LocalPlayer.Backpack.Knife.GripRight = Vector3.new(0,0,1)
  232.  
  233. game.Players.LocalPlayer.Backpack.Knife.Idle.AnimationId="rbxassetid://1320171223"
  234.  
  235. game.Players.LocalPlayer.Backpack.Knife.Punch1.AnimationId="rbxassetid://186934753"
  236.  
  237. game.Players.LocalPlayer.Backpack.Knife.Punch2.AnimationId="rbxassetid://186934658"
  238.  
  239. game.Players.LocalPlayer.Backpack.Knife.Running.AnimationId="rbxassetid://218504594"
  240. game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer("Loaded.")
  241. end)
  242.  
  243.  
  244.  
  245.  
  246. TextLabel.Parent = Frame
  247. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  248. TextLabel.BackgroundTransparency = 1
  249. TextLabel.Position = UDim2.new(0.0308483299, 0, 0.041420117, 0)
  250. TextLabel.Size = UDim2.new(0, 366, 0, 26)
  251. TextLabel.Font = Enum.Font.SourceSans
  252. TextLabel.Text = "DrakSploit"
  253. TextLabel.TextColor3 = Color3.new(0, 0, 0)
  254. TextLabel.TextSize = 28
  255. TextLabel.TextWrapped = true
  256.  
  257.  
  258. TextLabel_2.Parent = Frame
  259. TextLabel_2.BackgroundColor3 = Color3.new(1, 0.831373, 1)
  260. TextLabel_2.BorderColor3 = Color3.new(0, 0, 0)
  261. TextLabel_2.BorderSizePixel = 0
  262. TextLabel_2.Position = UDim2.new(0.0308483299, 0, 0.772727251, 0)
  263. TextLabel_2.Size = UDim2.new(0, 366, 0, 27)
  264. TextLabel_2.Font = Enum.Font.Fantasy
  265. TextLabel_2.Text = "Made by drakaks"
  266. TextLabel_2.TextColor3 = Color3.new(0, 0, 0)
  267. TextLabel_2.TextSize = 18
  268.  
  269. -- Scripts
Add Comment
Please, Sign In to add comment