Advertisement
Guest User

here you go

a guest
Dec 12th, 2019
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.38 KB | None | 0 0
  1. hitbox expander:
  2.  
  3. --https://v3rmillion.net/showthread.php?tid=857618--
  4.  
  5. game:GetService("StarterGui"):SetCore("SendNotification", {Title = "yeet", Text = "t = Enabled : p = disabled."})
  6. local player = game.Players.LocalPlayer
  7. local mouse = player:GetMouse()
  8.  
  9. -- Settings
  10.  
  11. bind = ""
  12. bind2 = "t"
  13. bind3 = "p"
  14.  
  15. -- Script
  16.  
  17. mouse.KeyDown:connect(function(key)
  18. if key == bind then
  19. player.Character.HumanoidRootPart.CFrame = CFrame.new(1254.09656, 137.906067, -172.128204)
  20. end
  21. end)
  22.  
  23. mouse.KeyDown:connect(function(key2)
  24. if key2 == bind2 then
  25. _G.HeadSize = 7
  26. _G.Disabled = true
  27.  
  28.  
  29. if _G.Disabled then
  30. for i,v in next, game:GetService('Players'):GetPlayers() do
  31. if v.Name ~= game:GetService('Players').LocalPlayer.Name then
  32. pcall(function()
  33. v.Character.HumanoidRootPart.Size = Vector3.new(_G.HeadSize,_G.HeadSize,_G.HeadSize)
  34. v.Character.HumanoidRootPart.Transparency = 0.7
  35. v.Character.HumanoidRootPart.BrickColor = BrickColor.new("Really blue")
  36. v.Character.HumanoidRootPart.Material = "Neon"
  37. v.Character.HumanoidRootPart.CanCollide = false
  38. end)
  39. end
  40. end
  41. end
  42. end
  43. end)
  44.  
  45. mouse.KeyDown:connect(function(key3)
  46. if key3 == bind3 then
  47. _G.HeadSize = 7
  48. _G.Disabled = true
  49.  
  50.  
  51. for i,v in next, game:GetService('Players'):GetPlayers() do
  52. if v.Name ~= game:GetService('Players').LocalPlayer.Name then
  53. pcall(function()
  54. v.Character.HumanoidRootPart.Size = Vector3.new(2, 2, 1)
  55. v.Character.HumanoidRootPart.Transparency = 1
  56. v.Character.HumanoidRootPart.BrickColor = BrickColor.new("Medium stone grey")
  57. v.Character.HumanoidRootPart.Material = "Plastic"
  58. v.Character.HumanoidRootPart.CanCollide = true
  59. end)
  60. end
  61. end
  62. end
  63. end)
  64.  
  65. ctrl click tp:
  66. local Plr = game:GetService("Players").LocalPlayer
  67. local Mouse = Plr:GetMouse()
  68.  
  69. Mouse.Button1Down:connect(function()
  70. if not game:GetService("UserInputService"):IsKeyDown(Enum.KeyCode.LeftControl) then return end
  71. if not Mouse.Target then return end
  72. Plr.Character:MoveTo(Mouse.Hit.p)
  73. end)
  74. other ctrl click tp:
  75. local Player = game:GetService("Players").LocalPlayer
  76. local UIS = game:GetService("UserInputService")
  77. local Mouse = Player:GetMouse()
  78. Mouse.Button1Down:connect(function()
  79. if not UIS:IsKeyDown(Enum.KeyCode.LeftControl) then return end
  80. if not Mouse.Target then return end
  81. local hrp = Player.Character
  82. hrp = hrp and hrp:FindFirstChild("HumanoidRootPart")
  83. if hrp then hrp.CFrame = Mouse.Hit + Vector3.new(0,4) end
  84. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement