Advertisement
Death_Data

asdasdasdasda

Aug 10th, 2019
374
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.78 KB | None | 0 0
  1. local SG = game:GetService("StarterGui")
  2. local UIS = game:GetService("UserInputService")
  3. local Teams = game:GetService("Teams")
  4.  
  5. local player = game.Players.LocalPlayer
  6. SG:SetCore("SendNotification", {Title = "yeet", Text = "t = Enabled : f = disabled."})
  7.  
  8. local Settings = {
  9. B1 = nil; -- Teleport thing idk
  10. B2 = Enum.KeyCode.T; -- ESP + Hitbox expander
  11. TeamName = "Dorks";
  12. HitboxSize = 7; -- HitboxSize
  13. ESP_Transparency = 0.25; -- 1 = invisible, 0 is completely visible
  14. }
  15.  
  16. if _G.Disabled == nil then _G.Disabled = true end
  17. if _G.espStuff == nil then _G.espStuff = {} end
  18.  
  19. function Do()
  20. _G.Disabled = not _G.Disabled
  21. if not _G.Disabled then
  22. for i,v in pairs(Teams[Settings.TeamName]:GetPlayers()) do
  23. if v ~= player then
  24. pcall(function()
  25. v.Character.HumanoidRootPart.Size = Vector3.new(Settings.HeadSize,Settings.HeadSize,Settings.HeadSize)
  26. if v:IsA('BasePart') then
  27. local rA = Instance.new('BoxHandleAdornment',v)
  28. rA.Adornee = v
  29. rA.Color3 = v.Name == 'HumanoidRootPart' and Color3.new(1,0,0) or Color3.new(0,1,0)
  30. rA.Transparency = Settings.ESP_Transparency
  31. rA.ZIndex = 1
  32. rA.AlwaysOnTop = true
  33. table.insert(_G.espStuff,rA)
  34. end
  35. end)
  36. end
  37. end
  38. else
  39. for i,v in pairs(game.Players:GetPlayers()) do
  40. if v ~= player then
  41. pcall(function()
  42. v.Character.HumanoidRootPart.Size = Vector3.new(Settings.HitboxSize,Settings.HitboxSize,Settings.HitboxSize)
  43. end)
  44. end
  45. end
  46. for _,v in pairs(_G.espStuff) do
  47. v:Destroy()
  48. end
  49. end
  50. end
  51.  
  52. UIS.InputBegan:Connect(function(Key,Gamepor)
  53. if not Gamepor then
  54. if Key == Settings.B1 then
  55. player.Character.HumanoidRootPart.CFrame = CFrame.new(1254.09656, 137.906067, -172.128204)
  56. elseif Key == Settings.B2 then
  57. Do()
  58. end
  59. end
  60. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement