Advertisement
Guest User

Untitled

a guest
Jun 25th, 2019
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 15.25 KB | None | 0 0
  1. local Gui = Instance.new("ScreenGui")
  2. local Main = Instance.new("Frame")
  3. local Rage = Instance.new("ImageButton")
  4. local RageFrame = Instance.new("Frame")
  5. local SilentEnable = Instance.new("TextButton")
  6. local SilentAimText = Instance.new("TextLabel")
  7. local Legit = Instance.new("TextLabel")
  8. local Misc = Instance.new("ImageButton")
  9. local Legit_2 = Instance.new("ImageButton")
  10. local Legit_3 = Instance.new("Frame")
  11. local AimBotTag = Instance.new("TextLabel")
  12. local TeamEnable = Instance.new("TextButton")
  13. local TeamTag = Instance.new("TextLabel")
  14. local EnableButton = Instance.new("TextButton")
  15. local TextLabel = Instance.new("TextLabel")
  16. local FOVText = Instance.new("TextLabel")
  17. local FOVVALUE = Instance.new("TextBox")
  18. local SmoothingText = Instance.new("TextLabel")
  19. local SmoothingVALUE = Instance.new("TextBox")
  20. local Fade = Instance.new("ImageLabel")
  21. local Players = Instance.new("ImageButton")
  22. local VisualFrame = Instance.new("Frame")
  23. local ESPEnable = Instance.new("TextButton")
  24. local ESPText = Instance.new("TextLabel")
  25. local TeamESPEnable = Instance.new("TextButton")
  26. local TextLabel_2 = Instance.new("TextLabel")
  27. local VisualTAB = Instance.new("TextLabel")
  28.  
  29. local LocalPlayer = game:GetService("Players").LocalPlayer
  30. local Mouse = LocalPlayer:GetMouse()
  31. local Camera = game:GetService("Workspace").CurrentCamera
  32. local ScreenCenter = Vector2.new(Camera.ViewportSize.X / 2 , Camera.ViewportSize.Y / 2)
  33. local BoxEspEnabled = false
  34. local LegitBotEnabled = false
  35. local AntiAimEnabled = false
  36. local Fov = 40
  37. local Smoothing = 10
  38. local MainHackColor = Color3.fromRGB(255, 0, 0)
  39.  
  40. function Draw(Shape, Properties)
  41. local ReturnShape = Drawing.new(Shape)
  42. for Index, Variable in pairs(Properties) do
  43. ReturnShape[Index] = Variable
  44. end
  45. return(ReturnShape)
  46. end
  47.  
  48. function UpdateValues()
  49. Fov = tonumber(FOVVALUE)
  50. Smoothing = tonumber(SmoothingText)
  51. end
  52.  
  53. local Frames = {
  54. RageFrame,
  55. Legit_3,
  56. VisualFrame
  57. }
  58.  
  59. function Visualize(Frame)
  60. for Index, Frame in pairs(Frames) do
  61. Frame.Visible = false
  62. end
  63. Frame.Visible = true
  64. end
  65.  
  66. game:GetService("RunService").Stepped:Connect(function()
  67. UpdateValues()
  68. end)
  69.  
  70. function LegitBot()
  71. game:GetService("RunService").Stepped:Connect(function()
  72. if(LegitBotEnabled == true) then
  73. for Index, Player in pairs(game:GetService("Players"):GetChildren()) do
  74. if(Player ~= LocalPlayer and Player.Character and Player.Character:FindFirstChild("Head")) then
  75. local Position, OnScreen = Camera:WorldToViewportPoint(Player.Character:FindFirstChild("Head").Position)
  76. local IgnoreParts = {Camera, LocalPlayer.Character, Player.Character}
  77. local Points = {Player.Character:FindFirstChild("Head").Position}
  78. local PartsInWay = Camera:GetPartsObscuringTarget(Points, IgnoreParts)
  79. if(#PartsInWay == 0) then
  80. local DistanceFromCursor = math.sqrt(math.pow((Position.X - Mouse.X), 2) + math.pow((Position.Y - Mouse.Y), 2))
  81. if(DistanceFromCursor < Fov) then
  82. mousemoverel((Position.X - Mouse.X)/Smoothing, (Position.Y - Mouse.Y)/Smoothing)
  83. end
  84. end
  85. end
  86. end
  87. end
  88. end)
  89. end
  90.  
  91. function BoxEsp()
  92. game:GetService("RunService").Stepped:Connect(function()
  93. if(BoxEspEnabled == true) then
  94. for Index, Player in pairs(game:GetService("Players"):GetChildren()) do
  95. if(Player ~= LocalPlayer and Player.Character and Player.Character:FindFirstChild("Head")) then
  96. local Position, OnScreen = Camera:WorldToViewportPoint(Player.Character:FindFirstChild("HumanoidRootPart").Position)
  97. if(OnScreen == true) then
  98. local Distance = LocalPlayer:DistanceFromCharacter(Player.Character:FindFirstChild("HumanoidRootPart").Position)
  99. local EspBox = Draw("Square", {Position = Vector2.new(Position.X - (20 - (Distance/Distance/10))/2, Position.Y - (30 - (Distance/Distance/5))/2), Size = Vector2.new(20 - (Distance/Distance/20), 30 - (Distance/Distance/10)), Color = Player.TeamColor.Color, Thickness = 2, Filled = false, Transparency = 1})
  100. math.clamp(EspBox.Size.X, 10, 20)
  101. math.clamp(EspBox.Size.Y, 10, 20)
  102. EspBox.Visible = true
  103. wait()
  104. EspBox.Visible = false
  105. end
  106. end
  107. end
  108. end
  109. end)
  110. end
  111.  
  112. --Gui :
  113.  
  114. Gui.Name = "Gui"
  115. Gui.Parent = game:GetService("CoreGui")
  116. Gui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  117.  
  118. Main.Name = "Main"
  119. Main.Parent = Gui
  120. Main.BackgroundColor3 = Color3.new(0.113725, 0.113725, 0.113725)
  121. Main.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  122. Main.BorderSizePixel = 6
  123. Main.Position = UDim2.new(0.172439754, 0, 0.0807113573, 0)
  124. Main.Size = UDim2.new(0, 619, 0, 592)
  125. Main.Active = true
  126. Main.Draggable = true
  127.  
  128. Rage.Name = "Rage"
  129. Rage.Parent = Main
  130. Rage.BackgroundColor3 = Color3.new(0.113725, 0.113725, 0.113725)
  131. Rage.BorderSizePixel = 0
  132. Rage.Position = UDim2.new(0.0500000007, 0, 0.114, 0)
  133. Rage.Size = UDim2.new(0, 51, 0, 47)
  134. Rage.Image = "rbxassetid://115730014"
  135. Rage.MouseButton1Down:Connect(function()
  136. Visualize(RageFrame)
  137. end)
  138.  
  139. RageFrame.Name = "RageFrame"
  140. RageFrame.Parent = Main
  141. RageFrame.BackgroundColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
  142. RageFrame.BorderColor3 = Color3.new(0.478431, 0.478431, 0.478431)
  143. RageFrame.BorderSizePixel = 2
  144. RageFrame.Position = UDim2.new(0.21, 0,0.083, 0)
  145. RageFrame.Size = UDim2.new(0, 455, 0, 493)
  146. RageFrame.Visible = false
  147.  
  148. SilentEnable.Name = "SilentEnable"
  149. SilentEnable.Parent = RageFrame
  150. SilentEnable.BackgroundColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
  151. SilentEnable.BorderColor3 = Color3.new(0.596078, 0.596078, 0.596078)
  152. SilentEnable.Position = UDim2.new(0.0329670347, 0, 0.107505068, 0)
  153. SilentEnable.Size = UDim2.new(0, 10, 0, 10)
  154. SilentEnable.Font = Enum.Font.SourceSans
  155. SilentEnable.Text = ""
  156. SilentEnable.TextColor3 = Color3.new(0, 0, 0)
  157. SilentEnable.TextSize = 14
  158.  
  159. SilentAimText.Name = "SilentAimText"
  160. SilentAimText.Parent = SilentEnable
  161. SilentAimText.BackgroundColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
  162. SilentAimText.BorderSizePixel = 0
  163. SilentAimText.Position = UDim2.new(2.5999999, 0, -0.399999976, 0)
  164. SilentAimText.Size = UDim2.new(0, 123, 0, 18)
  165. SilentAimText.Font = Enum.Font.SourceSans
  166. SilentAimText.Text = "SilentAim Enable"
  167. SilentAimText.TextColor3 = Color3.new(0.67451, 0.67451, 0.67451)
  168. SilentAimText.TextSize = 20
  169.  
  170. Legit.Name = "Legit"
  171. Legit.Parent = RageFrame
  172. Legit.BackgroundColor3 = Color3.new(0.113725, 0.113725, 0.113725)
  173. Legit.BorderSizePixel = 0
  174. Legit.Position = UDim2.new(0.0175824203, 0, -0.016227182, 0)
  175. Legit.Size = UDim2.new(0, 124, 0, 21)
  176. Legit.Font = Enum.Font.SourceSans
  177. Legit.Text = "Legit"
  178. Legit.TextColor3 = Color3.new(0.67451, 0.67451, 0.67451)
  179. Legit.TextSize = 23
  180.  
  181. Misc.Name = "Misc"
  182. Misc.Parent = Main
  183. Misc.BackgroundColor3 = Color3.new(0.113725, 0.113725, 0.113725)
  184. Misc.BorderSizePixel = 0
  185. Misc.Position = UDim2.new(0.0423844904, 0, 0.741770267, 0)
  186. Misc.Size = UDim2.new(0, 58, 0, 48)
  187. Misc.Image = "rbxassetid://2788872706"
  188.  
  189. Legit_2.Name = "Legit"
  190. Legit_2.Parent = Main
  191. Legit_2.BackgroundColor3 = Color3.new(0.113725, 0.113725, 0.113725)
  192. Legit_2.BorderSizePixel = 0
  193. Legit_2.Position = UDim2.new(0.0439999998, 0, 0.307040542, 0)
  194. Legit_2.Size = UDim2.new(0, 58, 0, 50)
  195. Legit_2.Image = "rbxassetid://3237146652"
  196. Legit_2.MouseButton1Down:Connect(function()
  197. Visualize(Legit_3)
  198. end)
  199.  
  200.  
  201. Legit_3.Name = "Legit"
  202. Legit_3.Parent = Main
  203. Legit_3.BackgroundColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
  204. Legit_3.BorderColor3 = Color3.new(0.478431, 0.478431, 0.478431)
  205. Legit_3.BorderSizePixel = 2
  206. Legit_3.Position = UDim2.new(0.21, 0,0.083, 0)
  207. Legit_3.Size = UDim2.new(0, 455, 0, 493)
  208.  
  209. AimBotTag.Name = "AimBotTag"
  210. AimBotTag.Parent = Legit_3
  211. AimBotTag.BackgroundColor3 = Color3.new(0.113725, 0.113725, 0.113725)
  212. AimBotTag.BorderSizePixel = 0
  213. AimBotTag.Position = UDim2.new(0.0219780225, 0, -0.0202839766, 0)
  214. AimBotTag.Size = UDim2.new(0, 124, 0, 21)
  215. AimBotTag.Font = Enum.Font.SourceSans
  216. AimBotTag.Text = "Aimbot"
  217. AimBotTag.TextColor3 = Color3.new(0.67451, 0.67451, 0.67451)
  218. AimBotTag.TextSize = 23
  219.  
  220. TeamEnable.Name = "TeamEnable"
  221. TeamEnable.Parent = Legit_3
  222. TeamEnable.BackgroundColor3 = Color3.new(0.113725, 0.113725, 0.113725)
  223. TeamEnable.BorderColor3 = Color3.new(0.596078, 0.596078, 0.596078)
  224. TeamEnable.Position = UDim2.new(0.0219780207, 0, 0.146044612, 0)
  225. TeamEnable.Size = UDim2.new(0, 10, 0, 10)
  226. TeamEnable.Font = Enum.Font.SourceSans
  227. TeamEnable.Text = ""
  228. TeamEnable.TextColor3 = Color3.new(0, 0, 0)
  229. TeamEnable.TextSize = 14
  230.  
  231. TeamTag.Name = "TeamTag"
  232. TeamTag.Parent = TeamEnable
  233. TeamTag.BackgroundColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
  234. TeamTag.BorderSizePixel = 0
  235. TeamTag.Position = UDim2.new(1.76153851, 0, -0.474645019, 0)
  236. TeamTag.Size = UDim2.new(0, 88, 0, 18)
  237. TeamTag.Font = Enum.Font.SourceSans
  238. TeamTag.Text = "TeamAim"
  239. TeamTag.TextColor3 = Color3.new(0.67451, 0.67451, 0.67451)
  240. TeamTag.TextSize = 20
  241.  
  242. EnableButton.Name = "EnableButton"
  243. EnableButton.Parent = Legit_3
  244. EnableButton.BackgroundColor3 = Color3.new(0.113725, 0.113725, 0.113725)
  245. EnableButton.BorderColor3 = Color3.new(0.596078, 0.596078, 0.596078)
  246. EnableButton.Position = UDim2.new(0.0219780225, 0, 0.0709939152, 0)
  247. EnableButton.Size = UDim2.new(0, 10, 0, 10)
  248. EnableButton.Font = Enum.Font.SourceSans
  249. EnableButton.Text = ""
  250. EnableButton.TextColor3 = Color3.new(0, 0, 0)
  251. EnableButton.TextSize = 14
  252. EnableButton.MouseButton1Down:Connect(function()
  253. if(LegitBotEnabled == false) then
  254. LegitBotEnabled = true
  255. EnableButton.BackgroundColor3 = Color3.fromRGB(80, 255, 80)
  256. LegitBot()
  257. elseif(LegitBotEnabled == true) then
  258. LegitBotEnabled = false
  259. EnableButton.BackgroundColor3 = Color3.new(0.113725, 0.113725, 0.113725)
  260. end
  261. end)
  262.  
  263. TextLabel.Parent = EnableButton
  264. TextLabel.BackgroundColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
  265. TextLabel.BorderSizePixel = 0
  266. TextLabel.Position = UDim2.new(1.69999993, 0, -0.399999946, 0)
  267. TextLabel.Size = UDim2.new(0, 88, 0, 18)
  268. TextLabel.Font = Enum.Font.SourceSans
  269. TextLabel.Text = "Enable"
  270. TextLabel.TextColor3 = Color3.new(0.67451, 0.67451, 0.67451)
  271. TextLabel.TextSize = 20
  272.  
  273. FOVText.Name = "FOVText"
  274. FOVText.Parent = Legit_3
  275. FOVText.BackgroundColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
  276. FOVText.BorderSizePixel = 0
  277. FOVText.Position = UDim2.new(0, 0, 0.200811356, 0)
  278. FOVText.Size = UDim2.new(0, 64, 0, 20)
  279. FOVText.Font = Enum.Font.SourceSans
  280. FOVText.Text = "FOV:"
  281. FOVText.TextColor3 = Color3.new(0.67451, 0.67451, 0.67451)
  282. FOVText.TextSize = 20
  283.  
  284. FOVVALUE.Name = "FOV-VALUE"
  285. FOVVALUE.Parent = FOVText
  286. FOVVALUE.BackgroundColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
  287. FOVVALUE.BorderColor3 = Color3.new(0.67451, 0.67451, 0.67451)
  288. FOVVALUE.Position = UDim2.new(1.097561, 0, 0, 0)
  289. FOVVALUE.Size = UDim2.new(0, 64, 0, 20)
  290. FOVVALUE.Font = Enum.Font.SourceSans
  291. FOVVALUE.PlaceholderColor3 = Color3.new(0.698039, 0.698039, 0.698039)
  292. FOVVALUE.Text = "120"
  293. FOVVALUE.TextColor3 = Color3.new(0.67451, 0.67451, 0.67451)
  294. FOVVALUE.TextSize = 22
  295. FOVVALUE.TextWrapped = true
  296.  
  297. SmoothingText.Name = "SmoothingText"
  298. SmoothingText.Parent = Legit_3
  299. SmoothingText.BackgroundColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
  300. SmoothingText.BorderSizePixel = 0
  301. SmoothingText.Position = UDim2.new(0.0219780225, 0, 0.261663288, 0)
  302. SmoothingText.Size = UDim2.new(0, 94, 0, 23)
  303. SmoothingText.Font = Enum.Font.SourceSans
  304. SmoothingText.Text = "Smoothing"
  305. SmoothingText.TextColor3 = Color3.new(0.67451, 0.67451, 0.67451)
  306. SmoothingText.TextSize = 20
  307. SmoothingText.TextWrapped = true
  308.  
  309. SmoothingVALUE.Name = "Smoothing-VALUE"
  310. SmoothingVALUE.Parent = SmoothingText
  311. SmoothingVALUE.BackgroundColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
  312. SmoothingVALUE.BorderColor3 = Color3.new(0.67451, 0.67451, 0.67451)
  313. SmoothingVALUE.Position = UDim2.new(1.1170212, 0, 0.130434781, 0)
  314. SmoothingVALUE.Size = UDim2.new(0, 64, 0, 20)
  315. SmoothingVALUE.Font = Enum.Font.SourceSans
  316. SmoothingVALUE.Text = "50"
  317. SmoothingVALUE.TextColor3 = Color3.new(0.67451, 0.67451, 0.67451)
  318. SmoothingVALUE.TextSize = 22
  319.  
  320. Fade.Name = "Fade"
  321. Fade.Parent = Main
  322. Fade.BackgroundColor3 = Color3.new(0, 0, 0)
  323. Fade.BorderSizePixel = 0
  324. Fade.Position = UDim2.new(0, 0, 0.000787905417, 0)
  325. Fade.Size = UDim2.new(0, 619, 0, 5)
  326. Fade.Image = "rbxassetid://1853638406"
  327.  
  328. Players.Name = "Players"
  329. Players.Parent = Main
  330. Players.BackgroundColor3 = Color3.new(0.113725, 0.113725, 0.113725)
  331. Players.BorderSizePixel = 0
  332. Players.Position = UDim2.new(0.0484652668, 0, 0.532094598, 0)
  333. Players.Size = UDim2.new(0, 51, 0, 47)
  334. Players.Image = "rbxassetid://2795572800"
  335. Players.MouseButton1Down:Connect(function()
  336. Visualize(VisualFrame)
  337. end)
  338.  
  339. VisualFrame.Name = "VisualFrame"
  340. VisualFrame.Parent = Main
  341. VisualFrame.BackgroundColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
  342. VisualFrame.BorderColor3 = Color3.new(0.478431, 0.478431, 0.478431)
  343. VisualFrame.BorderSizePixel = 2
  344. VisualFrame.Position = UDim2.new(0.21, 0,0.083, 0)
  345. VisualFrame.Selectable = true
  346. VisualFrame.Size = UDim2.new(0, 455, 0, 493)
  347. VisualFrame.Visible = false
  348.  
  349. ESPEnable.Name = "ESPEnable"
  350. ESPEnable.Parent = VisualFrame
  351. ESPEnable.BackgroundColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
  352. ESPEnable.BorderColor3 = Color3.new(0.596078, 0.596078, 0.596078)
  353. ESPEnable.Position = UDim2.new(0.0329670347, 0, 0.109533466, 0)
  354. ESPEnable.Size = UDim2.new(0, 10, 0, 10)
  355. ESPEnable.Font = Enum.Font.SourceSans
  356. ESPEnable.Text = ""
  357. ESPEnable.TextColor3 = Color3.new(0, 0, 0)
  358. ESPEnable.TextSize = 14
  359. ESPEnable.MouseButton1Down:Connect(function()
  360. if(BoxEspEnabled == false) then
  361. BoxEspEnabled = true
  362. ESPEnable.BackgroundColor3 = Color3.fromRGB(80, 255, 80)
  363. BoxEsp()
  364. elseif(BoxEspEnabled == true) then
  365. BoxEspEnabled = false
  366. ESPEnable.BackgroundColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
  367. end
  368. end)
  369.  
  370. ESPText.Name = "ESPText"
  371. ESPText.Parent = ESPEnable
  372. ESPText.BackgroundColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
  373. ESPText.BorderSizePixel = 0
  374. ESPText.Position = UDim2.new(2.79999995, 0, -0.399999976, 0)
  375. ESPText.Size = UDim2.new(0, 88, 0, 18)
  376. ESPText.Font = Enum.Font.SourceSans
  377. ESPText.Text = "ESP Enable"
  378. ESPText.TextColor3 = Color3.new(0.67451, 0.67451, 0.67451)
  379. ESPText.TextSize = 20
  380.  
  381. TeamESPEnable.Name = "TeamESPEnable"
  382. TeamESPEnable.Parent = VisualFrame
  383. TeamESPEnable.BackgroundColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
  384. TeamESPEnable.BorderColor3 = Color3.new(0.596078, 0.596078, 0.596078)
  385. TeamESPEnable.Position = UDim2.new(0.0329670347, 0, 0.188640967, 0)
  386. TeamESPEnable.Size = UDim2.new(0, 10, 0, 10)
  387. TeamESPEnable.Font = Enum.Font.SourceSans
  388. TeamESPEnable.Text = ""
  389. TeamESPEnable.TextColor3 = Color3.new(0, 0, 0)
  390. TeamESPEnable.TextSize = 14
  391.  
  392. TextLabel_2.Parent = TeamESPEnable
  393. TextLabel_2.BackgroundColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
  394. TextLabel_2.BorderSizePixel = 0
  395. TextLabel_2.Position = UDim2.new(2.79999995, 0, -0.400000006, 0)
  396. TextLabel_2.Size = UDim2.new(0, 123, 0, 18)
  397. TextLabel_2.Font = Enum.Font.SourceSans
  398. TextLabel_2.Text = " TeamESP Enable"
  399. TextLabel_2.TextColor3 = Color3.new(0.67451, 0.67451, 0.67451)
  400. TextLabel_2.TextSize = 20
  401.  
  402. VisualTAB.Name = "VisualTAB"
  403. VisualTAB.Parent = VisualFrame
  404. VisualTAB.BackgroundColor3 = Color3.new(0.113725, 0.113725, 0.113725)
  405. VisualTAB.BorderSizePixel = 0
  406. VisualTAB.Position = UDim2.new(0.0153846163, 0, -0.0182555784, 0)
  407. VisualTAB.Size = UDim2.new(0, 124, 0, 21)
  408. VisualTAB.Font = Enum.Font.SourceSans
  409. VisualTAB.Text = "Visuals"
  410. VisualTAB.TextColor3 = Color3.new(0.67451, 0.67451, 0.67451)
  411. VisualTAB.TextSize = 23
  412. -- Scripts:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement