Advertisement
noah_hunt

t-titan battlegrounds script

Dec 17th, 2022
5,371
-1
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 25.50 KB | None | 0 1
  1. local ScreenGui = Instance.new("ScreenGui")
  2. local main = Instance.new("Frame")
  3. local label = Instance.new("TextLabel")
  4. local Hitbox =
  5. Instance.new("TextButton")
  6.  
  7. ScreenGui.Parent = game.CoreGui
  8.  
  9. main.Name = "main"
  10. main.Parent = ScreenGui
  11. main.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  12. main.Position = UDim2.new(0.40427351, 0, 0.34591195, 0)
  13. main.Size = UDim2.new(0, 175, 0, 200)
  14. main.Active = true
  15. main.Draggable = true
  16.  
  17. label.Name = "label"
  18. label.Parent = main
  19. label.BackgroundColor3 = Color3.fromRGB(139,0,0)
  20. label.Size = UDim2.new(0, 175, 0, 20)
  21. label.Font = Enum.Font.SourceSans
  22. label.Text = "Teen Titan GUI"
  23. label.TextColor3 = Color3.fromRGB(0, 0, 0)
  24. label.TextScaled = true
  25. label.TextSize = 5.000
  26. label.TextWrapped = true
  27.  
  28. Hitbox.Name = "Hitbox"
  29. Hitbox.Parent = main
  30. Hitbox.BackgroundColor3 = Color3.fromRGB(0, 0, 255)
  31. Hitbox.Position = UDim2.new(0.114285722, 0, 0.372448981, 0)
  32. Hitbox.Size = UDim2.new(0.17, 100, 0, 100)
  33. Hitbox.Font = Enum.Font.SourceSans
  34. Hitbox.Text = "Hitbox + inf ammo + Esp"
  35. Hitbox.TextColor3 = Color3.fromRGB(0, 0, 0)
  36. Hitbox.TextSize = 15.000
  37. Hitbox.MouseButton1Down:connect(function()
  38. local t = game:GetService("ReplicatedStorage")["Shared_Modules"].Tools["Wave 0"].Starfire["Shared_StarBolt"]
  39. local w = require(t)
  40. w.DEBOUNCE = .001
  41. w.DAMAGE = 400
  42.  
  43.  
  44.  
  45. --credits to the owner
  46.  
  47. for i, v in pairs(game:GetService('ReplicatedStorage')['Shared_Modules'].Tools:GetDescendants()) do
  48. if v:IsA('ModuleScript') then
  49. local Module = require(v)
  50. Module.DEBOUNCE = 0
  51. Module.DAMAGE = 999999999999
  52. end
  53. end
  54.  
  55. local function API_Check()
  56. if Drawing == nil then
  57. return "No"
  58. else
  59. return "Yes"
  60. end
  61. end
  62.  
  63. local Find_Required = API_Check()
  64.  
  65. if Find_Required == "No" then
  66. game:GetService("StarterGui"):SetCore("SendNotification",{
  67. Title = "Exunys Developer";
  68. Text = "Tracer script could not be loaded because your exploit is unsupported.";
  69. Duration = math.huge;
  70. Button1 = "OK"
  71. })
  72.  
  73. return
  74. end
  75.  
  76. local RunService = game:GetService("RunService")
  77. local Players = game:GetService("Players")
  78. local Camera = game:GetService("Workspace").CurrentCamera
  79. local UserInputService = game:GetService("UserInputService")
  80. local TestService = game:GetService("TestService")
  81.  
  82. local Typing = false
  83.  
  84. _G.SendNotifications = true -- If set to true then the script would notify you frequently on any changes applied and when loaded / errored. (If a game can detect this, it is recommended to set it to false)
  85. _G.DefaultSettings = false -- If set to true then the tracer script would run with default settings regardless of any changes you made.
  86.  
  87. _G.TeamCheck = false -- If set to true then the script would create tracers only for the enemy team members.
  88.  
  89. --[!]-- ONLY ONE OF THESE VALUES SHOULD BE SET TO TRUE TO NOT ERROR THE SCRIPT --[!]--
  90.  
  91. _G.FromMouse = false -- If set to true, the tracers will come from the position of your mouse curson on your screen.
  92. _G.FromCenter = false -- If set to true, the tracers will come from the center of your screen.
  93. _G.FromBottom = true -- If set to true, the tracers will come from the bottom of your screen.
  94.  
  95. _G.TracersVisible = true -- If set to true then the tracers will be visible and vice versa.
  96. _G.TracerColor = Color3.fromRGB(255, 80, 10) -- The color that the tracers would appear as.
  97. _G.TracerThickness = 1 -- The thickness of the tracers.
  98. _G.TracerTransparency = 0.7 -- The transparency of the tracers.
  99.  
  100. _G.ModeSkipKey = Enum.KeyCode.E -- The key that changes between modes that indicate where will the tracers come from.
  101. _G.DisableKey = Enum.KeyCode.Q -- The key that disables / enables the tracers.
  102.  
  103. local function CreateTracers()
  104. for _, v in next, Players:GetPlayers() do
  105. if v.Name ~= game.Players.LocalPlayer.Name then
  106. local TracerLine = Drawing.new("Line")
  107.  
  108. RunService.RenderStepped:Connect(function()
  109. if workspace:FindFirstChild(v.Name) ~= nil and workspace[v.Name]:FindFirstChild("HumanoidRootPart") ~= nil then
  110. local HumanoidRootPart_Position, HumanoidRootPart_Size = workspace[v.Name].HumanoidRootPart.CFrame, workspace[v.Name].HumanoidRootPart.Size * 1
  111. local Vector, OnScreen = Camera:WorldToViewportPoint(HumanoidRootPart_Position * CFrame.new(0, -HumanoidRootPart_Size.Y, 0).p)
  112.  
  113. TracerLine.Thickness = _G.TracerThickness
  114. TracerLine.Transparency = _G.TracerTransparency
  115. TracerLine.Color = _G.TracerColor
  116.  
  117. if _G.FromMouse == true and _G.FromCenter == false and _G.FromBottom == false then
  118. TracerLine.From = Vector2.new(UserInputService:GetMouseLocation().X, UserInputService:GetMouseLocation().Y)
  119. elseif _G.FromMouse == false and _G.FromCenter == true and _G.FromBottom == false then
  120. TracerLine.From = Vector2.new(Camera.ViewportSize.X / 2, Camera.ViewportSize.Y / 2)
  121. elseif _G.FromMouse == false and _G.FromCenter == false and _G.FromBottom == true then
  122. TracerLine.From = Vector2.new(Camera.ViewportSize.X / 2, Camera.ViewportSize.Y)
  123. end
  124.  
  125. if OnScreen == true then
  126. TracerLine.To = Vector2.new(Vector.X, Vector.Y)
  127. if _G.TeamCheck == true then
  128. if Players.LocalPlayer.Team ~= v.Team then
  129. TracerLine.Visible = _G.TracersVisible
  130. else
  131. TracerLine.Visible = false
  132. end
  133. else
  134. TracerLine.Visible = _G.TracersVisible
  135. end
  136. else
  137. TracerLine.Visible = false
  138. end
  139. else
  140. TracerLine.Visible = false
  141. end
  142. end)
  143.  
  144. Players.PlayerRemoving:Connect(function()
  145. TracerLine.Visible = false
  146. end)
  147. end
  148. end
  149.  
  150. Players.PlayerAdded:Connect(function(Player)
  151. Player.CharacterAdded:Connect(function(v)
  152. if v.Name ~= game.Players.LocalPlayer.Name then
  153. local TracerLine = Drawing.new("Line")
  154.  
  155. RunService.RenderStepped:Connect(function()
  156. if workspace:FindFirstChild(v.Name) ~= nil and workspace[v.Name]:FindFirstChild("HumanoidRootPart") ~= nil then
  157. local HumanoidRootPart_Position, HumanoidRootPart_Size = workspace[v.Name].HumanoidRootPart.CFrame, workspace[v.Name].HumanoidRootPart.Size * 1
  158. local Vector, OnScreen = Camera:WorldToViewportPoint(HumanoidRootPart_Position * CFrame.new(0, -HumanoidRootPart_Size.Y, 0).p)
  159.  
  160. TracerLine.Thickness = _G.TracerThickness
  161. TracerLine.Transparency = _G.TracerTransparency
  162. TracerLine.Color = _G.TracerColor
  163.  
  164. if _G.FromMouse == true and _G.FromCenter == false and _G.FromBottom == false then
  165. TracerLine.From = Vector2.new(UserInputService:GetMouseLocation().X, UserInputService:GetMouseLocation().Y)
  166. elseif _G.FromMouse == false and _G.FromCenter == true and _G.FromBottom == false then
  167. TracerLine.From = Vector2.new(Camera.ViewportSize.X / 2, Camera.ViewportSize.Y / 2)
  168. elseif _G.FromMouse == false and _G.FromCenter == false and _G.FromBottom == true then
  169. TracerLine.From = Vector2.new(Camera.ViewportSize.X / 2, Camera.ViewportSize.Y)
  170. end
  171.  
  172. if OnScreen == true then
  173. TracerLine.To = Vector2.new(Vector.X, Vector.Y)
  174. if _G.TeamCheck == true then
  175. if Players.LocalPlayer.Team ~= Player.Team then
  176. TracerLine.Visible = _G.TracersVisible
  177. else
  178. TracerLine.Visible = false
  179. end
  180. else
  181. TracerLine.Visible = _G.TracersVisible
  182. end
  183. else
  184. TracerLine.Visible = false
  185. end
  186. else
  187. TracerLine.Visible = false
  188. end
  189. end)
  190.  
  191. Players.PlayerRemoving:Connect(function()
  192. TracerLine.Visible = false
  193. end)
  194. end
  195. end)
  196. end)
  197. end
  198.  
  199. UserInputService.TextBoxFocused:Connect(function()
  200. Typing = true
  201. end)
  202.  
  203. UserInputService.TextBoxFocusReleased:Connect(function()
  204. Typing = false
  205. end)
  206.  
  207. UserInputService.InputBegan:Connect(function(Input)
  208. if Input.KeyCode == _G.ModeSkipKey and Typing == false then
  209. if _G.FromMouse == true and _G.FromCenter == false and _G.FromBottom == false and _G.TracersVisible == true then
  210. _G.FromCenter = false
  211. _G.FromBottom = true
  212. _G.FromMouse = false
  213.  
  214. if _G.SendNotifications == true then
  215. game:GetService("StarterGui"):SetCore("SendNotification",{
  216. Title = "Exunys Developer";
  217. Text = "Tracers will be now coming from the bottom of your screen (Mode 1)";
  218. Duration = 5;
  219. })
  220. end
  221. elseif _G.FromMouse == false and _G.FromCenter == false and _G.FromBottom == true and _G.TracersVisible == true then
  222. _G.FromCenter = true
  223. _G.FromBottom = false
  224. _G.FromMouse = false
  225.  
  226. if _G.SendNotifications == true then
  227. game:GetService("StarterGui"):SetCore("SendNotification",{
  228. Title = "Exunys Developer";
  229. Text = "Tracers will be now coming from the center of your screen (Mode 2)";
  230. Duration = 5;
  231. })
  232. end
  233. elseif _G.FromMouse == false and _G.FromCenter == true and _G.FromBottom == false and _G.TracersVisible == true then
  234. _G.FromCenter = false
  235. _G.FromBottom = false
  236. _G.FromMouse = true
  237.  
  238. if _G.SendNotifications == true then
  239. game:GetService("StarterGui"):SetCore("SendNotification",{
  240. Title = "Exunys Developer";
  241. Text = "Tracers will be now coming from the position of your mouse cursor on your screen (Mode 3)";
  242. Duration = 5;
  243. })
  244. end
  245. end
  246. elseif Input.KeyCode == _G.DisableKey and Typing == false then
  247. _G.TracersVisible = not _G.TracersVisible
  248.  
  249. if _G.SendNotifications == true then
  250. game:GetService("StarterGui"):SetCore("SendNotification",{
  251. Title = "Exunys Developer";
  252. Text = "The tracers' visibility is now set to "..tostring(_G.TracersVisible)..".";
  253. Duration = 5;
  254. })
  255. end
  256. end
  257. end)
  258.  
  259. if _G.DefaultSettings == true then
  260. _G.TeamCheck = false
  261. _G.FromMouse = false
  262. _G.FromCenter = false
  263. _G.FromBottom = true
  264. _G.TracersVisible = true
  265. _G.TracerColor = Color3.fromRGB(40, 90, 255)
  266. _G.TracerThickness = 1
  267. _G.TracerTransparency = 0.5
  268. _G.ModeSkipKey = Enum.KeyCode.E
  269. _G.DisableKey = Enum.KeyCode.Q
  270. end
  271.  
  272. local Success, Errored = pcall(function()
  273. CreateTracers()
  274. end)
  275.  
  276. if Success and not Errored then
  277. if _G.SendNotifications == true then
  278. game:GetService("StarterGui"):SetCore("SendNotification",{
  279. Title = "Exunys Developer";
  280. Text = "Tracer script has successfully loaded.";
  281. Duration = 5;
  282. })
  283. end
  284. elseif Errored and not Success then
  285. if _G.SendNotifications == true then
  286. game:GetService("StarterGui"):SetCore("SendNotification",{
  287. Title = "Exunys Developer";
  288. Text = "Tracer script has errored while loading, please check the developer console! (F9)";
  289. Duration = 5;
  290. })
  291. end
  292. TestService:Message("The tracer script has errored, please notify Exunys with the following information :")
  293. warn(Errored)
  294. print("!! IF THE ERROR IS A FALSE POSITIVE (says that a player cannot be found) THEN DO NOT BOTHER !!")
  295. end
  296.  
  297. _G.HeadSize = 30
  298.  
  299. _G.Disabled = true
  300.  
  301.  
  302. game:GetService('RunService').RenderStepped:connect(function()
  303. if _G.Disabled then
  304. for i,v in next, game:GetService('Players'):GetPlayers() do
  305. if v.Name ~= game:GetService('Players').LocalPlayer.Name then
  306. pcall(function()
  307. v.Character.HumanoidRootPart.Size = Vector3.new(_G.HeadSize,_G.HeadSize,_G.HeadSize)
  308. v.Character.HumanoidRootPart.Transparency = 0.8
  309. v.Character.HumanoidRootPart.BrickColor = BrickColor.new("Really black")
  310. v.Character.HumanoidRootPart.Material = "Neon"
  311. v.Character.HumanoidRootPart.CanCollide = false
  312. end)
  313. end
  314. end
  315. end
  316. end)
  317. end)
  318. local Hint = Instance.new("Hint", workspace)
  319.  
  320. local Day_Night = false
  321. local CircleAim = false
  322.  
  323. local Library =
  324. loadstring(Game:HttpGet("https://raw.githubusercontent.com/bloodball/-back-ups-for-libs/main/wizard"))()
  325. local PhantomForcesWindow = Library:NewWindow("Main")
  326.  
  327.  
  328. local Tab1 = PhantomForcesWindow:NewSection("Main")
  329.  
  330. Tab1:CreateToggle("Esp", function(value)
  331. print(value)
  332. local color = BrickColor.new(50,0,250)
  333. local transparency = .8
  334.  
  335. local Players = game:GetService("Players")
  336. local function _ESP(c)
  337. repeat wait() until c.PrimaryPart ~= nil
  338. for i,p in pairs(c:GetChildren()) do
  339. if p.ClassName == "Part" or p.ClassName == "MeshPart" then
  340. if p:FindFirstChild("shit") then p.shit:Destroy() end
  341. local a = Instance.new("BoxHandleAdornment",p)
  342. a.Name = "shit"
  343. a.Size = p.Size
  344. a.Color = color
  345. a.Transparency = transparency
  346. a.AlwaysOnTop = true
  347. a.Visible = true
  348. a.Adornee = p
  349. a.ZIndex = true
  350.  
  351. end
  352. end
  353. end
  354. local function ESP()
  355. for i,v in pairs(Players:GetChildren()) do
  356. if v ~= game.Players.LocalPlayer then
  357. if v.Character then
  358. _ESP(v.Character)
  359. end
  360. v.CharacterAdded:Connect(function(chr)
  361. _ESP(chr)
  362. end)
  363. end
  364. end
  365. Players.PlayerAdded:Connect(function(player)
  366. player.CharacterAdded:Connect(function(chr)
  367. _ESP(chr)
  368. end)
  369. end)
  370. end
  371. ESP()
  372. end)
  373.  
  374. Tab1:CreateToggle("Inf Jump", function(value)
  375. print(value)
  376. loadstring(game:HttpGet('https://pastebin.com/raw/V5PQy3y0'))()
  377. end)
  378.  
  379. Tab1:CreateButton("Hit Box", function()
  380. loadstring(game:HttpGet("https://pastebin.com/raw/H4gRSMrk"))()
  381. end)
  382.  
  383. Tab1:CreateButton("Tptool", function()
  384. mouse = game.Players.LocalPlayer:GetMouse()
  385. tool = Instance.new("Tool")
  386. tool.RequiresHandle = false
  387. tool.Name = "🚫"
  388. tool.Activated:connect(function()
  389. local pos = mouse.Hit+Vector3.new(0,2.5,0)
  390. pos = CFrame.new(pos.X,pos.Y,pos.Z)
  391. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = pos
  392. end)
  393. tool.Parent = game.Players.LocalPlayer.Backpack
  394. end)
  395.  
  396. Tab1:CreateButton("Tptool V2", function()
  397. local dwCamera = workspace.CurrentCamera
  398. local dwRunService = game:GetService("RunService")
  399. local dwUIS = game:GetService("UserInputService")
  400. local dwEntities = game:GetService("Players")
  401. local dwLocalPlayer = dwEntities.LocalPlayer
  402. local dwMouse = dwLocalPlayer:GetMouse()
  403.  
  404. local settings = {
  405. Aimbot = true,
  406. Aiming = true,
  407. Aimbot_AimPart = "Head",
  408. Aimbot_TeamCheck = true,
  409. Aimbot_Draw_FOV = true,
  410. Aimbot_FOV_Radius = 200,
  411. Aimbot_FOV_Color = Color3.fromRGB(255, 255, 255)
  412. }
  413.  
  414. local fovcircle = Drawing.new("Circle")
  415. fovcircle.Visible = settings.Aimbot_Draw_FOV
  416. fovcircle.Radius = settings.Aimbot_FOV_Radius
  417. fovcircle.Color = settings.Aimbot_FOV_Color
  418. fovcircle.Thickness = 1
  419. fovcircle.Filled = false
  420. fovcircle.Transparency = 1
  421.  
  422. fovcircle.Position = Vector2.new(dwCamera.ViewportSize.X / 2, dwCamera.ViewportSize.Y / 2)
  423.  
  424. dwUIS.InputBegan:Connect(function(i)
  425. if i.UserInputType == Enum.UserInputType.MouseButton2 then
  426. settings.Aiming = true
  427. end
  428. end)
  429.  
  430. dwUIS.InputEnded:Connect(function(i)
  431. if i.UserInputType == Enum.UserInputType.MouseButton2 then
  432. settings.Aiming = false
  433. end
  434. end)
  435.  
  436. dwRunService.RenderStepped:Connect(function()
  437.  
  438. local dist = math.huge
  439. local closest_char = nil
  440.  
  441. if settings.Aiming then
  442.  
  443. for i,v in next, dwEntities:GetChildren() do
  444.  
  445. if v ~= dwLocalPlayer and
  446. v.Character and
  447. v.Character:FindFirstChild("HumanoidRootPart") and
  448. v.Character:FindFirstChild("Humanoid") and
  449. v.Character:FindFirstChild("Humanoid").Health > 0 then
  450.  
  451. if settings.Aimbot_TeamCheck == true and
  452. v.Team ~= dwLocalPlayer.Team or
  453. settings.Aimbot_TeamCheck == false then
  454.  
  455. local char = v.Character
  456. local char_part_pos, is_onscreen = dwCamera:WorldToViewportPoint(char[settings.Aimbot_AimPart].Position)
  457.  
  458. if is_onscreen then
  459.  
  460. local mag = (Vector2.new(dwMouse.X, dwMouse.Y) - Vector2.new(char_part_pos.X, char_part_pos.Y)).Magnitude
  461.  
  462. if mag < dist and mag < settings.Aimbot_FOV_Radius then
  463.  
  464. dist = mag
  465. closest_char = char
  466.  
  467. end
  468. end
  469. end
  470. end
  471. end
  472.  
  473. if closest_char ~= nil and
  474. closest_char:FindFirstChild("HumanoidRootPart") and
  475. closest_char:FindFirstChild("Humanoid") and
  476. closest_char:FindFirstChild("Humanoid").Health > 0 then
  477.  
  478. dwCamera.CFrame = CFrame.new(dwCamera.CFrame.Position, closest_char[settings.Aimbot_AimPart].Position)
  479. end
  480. end
  481. end)
  482. wait()
  483. mouse = workspace.CurrentCamera
  484. tool = Instance.new("Tool")
  485. tool.RequiresHandle = false
  486. tool.Name = "🐭"
  487. tool.Activated:connect(function()
  488. local pos = mouse+Vector2.new(0,2.5,0)
  489. pos = CFrame.new(pos.X,pos.Y,pos.Z)
  490. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = pos
  491. end)
  492. tool.Parent = game.Players.LocalPlayer.Backpack
  493. end)
  494.  
  495. Tab1:CreateButton("Domain Hub | Remake", function() -- not my own
  496. loadstring(game:HttpGet("https://pastebin.com/raw/udQLpt5d"))()
  497. end)
  498.  
  499. Tab1:CreateToggle("Loop speed [50]", function(value)
  500. SPD = value
  501.  
  502. while wait() do
  503. if SPD == false then break end
  504. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 50
  505. end
  506. end)
  507.  
  508. Tab1:CreateToggle("Loop super speed [100]", function(value)
  509. SPD = value
  510.  
  511. while wait() do
  512. if SPD == false then break end
  513. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 100
  514. end
  515. end)
  516.  
  517. Tab1:CreateToggle("Auto Teleport to all", function(value)
  518. TPA = value
  519.  
  520. while wait() do
  521. if TPA == false then break end
  522. local lplr = game.Players.LocalPlayer
  523.  
  524.  
  525. function a(p)
  526. if p and p.Character then
  527. pcall(function()
  528. local t = p.Character.PrimaryPart.CFrame * Vector3.new(0, -0.25, 0)
  529. end)
  530. end
  531. end
  532. for i=0,01 do
  533. for _,v in pairs(game.Players:GetPlayers()) do
  534. pcall(function()
  535. for i=0,01 do
  536. lplr.Character.HumanoidRootPart.CFrame = v.Character.HumanoidRootPart.CFrame - v.Character.HumanoidRootPart.CFrame.LookVector*0
  537. a(v)
  538. wait()
  539. end
  540. end)
  541. end
  542. end
  543. end
  544. end)
  545.  
  546. Tab1:CreateToggle("Auto Damage", function(value)
  547. CircleAim = value
  548.  
  549. if CircleAim == true then
  550. local dwCamera = workspace.CurrentCamera
  551. local dwRunService = game:GetService("RunService")
  552. local dwUIS = game:GetService("UserInputService")
  553. local dwEntities = game:GetService("Players")
  554. local dwLocalPlayer = dwEntities.LocalPlayer
  555. local dwMouse = dwLocalPlayer:GetMouse()
  556.  
  557. local settings = {
  558. Aimbot = true,
  559. Aiming = true,
  560. Aimbot_AimPart = "Head",
  561. Aimbot_TeamCheck = true,
  562. Aimbot_Draw_FOV = true,
  563. Aimbot_FOV_Radius = 200,
  564. Aimbot_FOV_Color = Color3.fromRGB(255, 255, 255)
  565. }
  566.  
  567. local fovcircle = Drawing.new("Circle")
  568. fovcircle.Visible = settings.Aimbot_Draw_FOV
  569. fovcircle.Radius = settings.Aimbot_FOV_Radius
  570. fovcircle.Color = settings.Aimbot_FOV_Color
  571. fovcircle.Thickness = 1
  572. fovcircle.Filled = false
  573. fovcircle.Transparency = 1
  574.  
  575. fovcircle.Position = Vector2.new(dwCamera.ViewportSize.X / 2, dwCamera.ViewportSize.Y / 2)
  576.  
  577. dwUIS.InputBegan:Connect(function(i)
  578. if i.UserInputType == Enum.UserInputType.MouseButton2 then
  579. settings.Aiming = true
  580. end
  581. end)
  582.  
  583. dwUIS.InputEnded:Connect(function(i)
  584. if i.UserInputType == Enum.UserInputType.MouseButton2 then
  585. settings.Aiming = false
  586. end
  587. end)
  588.  
  589. dwRunService.RenderStepped:Connect(function()
  590.  
  591. local dist = math.huge
  592. local closest_char = nil
  593.  
  594. if settings.Aiming then
  595.  
  596. for i,v in next, dwEntities:GetChildren() do
  597.  
  598. if v ~= dwLocalPlayer and
  599. v.Character and
  600. v.Character:FindFirstChild("HumanoidRootPart") and
  601. v.Character:FindFirstChild("Humanoid") and
  602. v.Character:FindFirstChild("Humanoid").Health > 0 then
  603.  
  604. if settings.Aimbot_TeamCheck == true and
  605. v.Team ~= dwLocalPlayer.Team or
  606. settings.Aimbot_TeamCheck == false then
  607.  
  608. local char = v.Character
  609. local char_part_pos, is_onscreen = dwCamera:WorldToViewportPoint(char[settings.Aimbot_AimPart].Position)
  610.  
  611. if is_onscreen then
  612.  
  613. local mag = (Vector2.new(dwMouse.X, dwMouse.Y) - Vector2.new(char_part_pos.X, char_part_pos.Y)).Magnitude
  614.  
  615. if mag < dist and mag < settings.Aimbot_FOV_Radius then
  616.  
  617. dist = mag
  618. closest_char = char
  619.  
  620. end
  621. end
  622. end
  623. end
  624. end
  625.  
  626. if closest_char ~= nil and
  627. closest_char:FindFirstChild("HumanoidRootPart") and
  628. closest_char:FindFirstChild("Humanoid") and
  629. closest_char:FindFirstChild("Humanoid").Health > 0 then
  630.  
  631. dwCamera.CFrame = CFrame.new(dwCamera.CFrame.Position, closest_char[settings.Aimbot_AimPart].Position)
  632. end
  633. end
  634. end)
  635. else if CircleAim == false then
  636. fovcircle:Destroy()
  637. end
  638. end
  639. end)
  640.  
  641. Tab1:CreateToggle("Toggle Day and Night", function(value)
  642. Day_Night = value
  643.  
  644. if Day_Night == true then
  645. game:GetService("Lighting").ClockTime = 12
  646. else if Day_Night == false then
  647. game:GetService("Lighting").ClockTime = 0
  648. end
  649. end
  650. end)
  651.  
  652. Tab1:CreateToggle("Anonymous Mode", function(value)
  653. local hrp = game.Players.LocalPlayer.Character.HumanoidRootPart
  654.  
  655. local tag = hrp:FindFirstChildOfClass("BillboardGui")
  656. if tag then tag:Destroy() end
  657.  
  658.  
  659. hrp.ChildAdded:Connect(function(item)
  660. if item:IsA("BillboardGui") then
  661. task.wait()
  662. item:Destroy()
  663. end
  664. end)
  665. end)
  666.  
  667. Tab1:CreateButton("Invisible [without NameTags]", function()
  668. local removeNametags = true -- remove custom billboardgui nametags from hrp, could trigger anticheat
  669.  
  670.  
  671. local plr = game:GetService("Players").LocalPlayer
  672. local character = plr.Character
  673. local hrp = character.HumanoidRootPart
  674. local old = hrp.CFrame
  675.  
  676.  
  677. if not character:FindFirstChild("LowerTorso") or character.PrimaryPart ~= hrp then
  678. return print("unsupported")
  679. end
  680.  
  681.  
  682. if removeNametags then
  683. local tag = hrp:FindFirstChildOfClass("BillboardGui")
  684. if tag then tag:Destroy() end
  685.  
  686.  
  687. hrp.ChildAdded:Connect(function(item)
  688. if item:IsA("BillboardGui") then
  689. task.wait()
  690. item:Destroy()
  691. end
  692. end)
  693. end
  694.  
  695.  
  696. local newroot = character.LowerTorso.Root:Clone()
  697. hrp.Parent = workspace
  698. character.PrimaryPart = hrp
  699. character:MoveTo(Vector3.new(old.X,9e9,old.Z))
  700. hrp.Parent = character
  701. task.wait(0.5)
  702. newroot.Parent = hrp
  703. hrp.CFrame = old
  704. end)
  705.  
  706. local ScreenGui = Instance.new("ScreenGui")
  707. local P1 = Instance.new("TextLabel")
  708. local P2 = Instance.new("TextLabel")
  709.  
  710.  
  711. --Properties:
  712.  
  713.  
  714. ScreenGui.Parent = game.CoreGui
  715. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  716.  
  717.  
  718. P1.Name = "Pos"
  719. P1.Parent = ScreenGui
  720. P1.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  721. P1.BackgroundTransparency = 1.000
  722. P1.Position = UDim2.new(0.786138654, 0, 0, 0)
  723. P1.Text = "Level: nil"
  724. P1.Size = UDim2.new(0, 135, 0, 25)
  725. P1.Font = Enum.Font.SourceSans
  726. P1.TextColor3 = Color3.fromRGB(0, 255, 0)
  727. P1.TextScaled = true
  728. P1.TextSize = 14.000
  729. P1.TextWrapped = true
  730.  
  731.  
  732. P2.Name = "ItemDetect"
  733. P2.Parent = ScreenGui
  734. P2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  735. P2.BackgroundTransparency = 1.000
  736. P2.BorderColor3 = Color3.fromRGB(255, 255, 255)
  737. P2.Position = UDim2.new(0.700000048, 0, 0, 0)
  738. P2.Text = "Wins: nil"
  739. P2.Size = UDim2.new(0, 125, 0, 25)
  740. P2.Font = Enum.Font.SourceSans
  741. P2.TextColor3 = Color3.fromRGB(253, 253, 253)
  742. P2.TextScaled = true
  743. P2.TextSize = 14.000
  744. P2.TextWrapped = true
  745.  
  746.  
  747. -- Scripts:
  748.  
  749.  
  750. local RunService = game:GetService("RunService")
  751. RunService.RenderStepped:Connect(function()
  752. P1.Text = "Level: "..tostring(game.Players.LocalPlayer.leaderstats.Level.Value)
  753. P2.Text = "Wins: "..tostring(game.Players.LocalPlayer.leaderstats.Wins.Value)
  754. end)
  755.  
  756. local event = game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents
  757. event.OnMessageDoneFiltering.OnClientEvent:Connect(function(object)
  758. Hint.Text = "[> Server <] " .. tostring(string.format("[> %s <]: %s", object.FromSpeaker, object.Message or ""))
  759. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement