Advertisement
Mr_NoNameGuy

Bullet Hell Hit Box Script

Jun 7th, 2020
9,707
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.54 KB | None | 0 0
  1. game:GetService("StarterGui"):SetCore("SendNotification", {Title = "Loaded", Text = "w = Enabled : p = disabled."})
  2. local player = game.Players.LocalPlayer
  3. local mouse = player:GetMouse()
  4.  
  5. -- Settings
  6.  
  7. bind = ""
  8. bind2 = "w"
  9. bind3 = "p"
  10.  
  11. -- Script
  12.  
  13. mouse.KeyDown:connect(function(key)
  14. if key == bind then
  15. player.Character.HumanoidRootPart.CFrame = CFrame.new(1254.09656, 137.906067, -172.128204)
  16. end
  17. end)
  18.  
  19. mouse.KeyDown:connect(function(key2)
  20. if key2 == bind2 then
  21. _G.HeadSize = 30
  22. _G.Disabled = true
  23.  
  24.  
  25. if _G.Disabled then
  26. for i,v in next, game:GetService('Players'):GetPlayers() do
  27. if v.Name ~= game:GetService('Players').LocalPlayer.Name then
  28. pcall(function()
  29. v.Character.HumanoidRootPart.Size = Vector3.new(_G.HeadSize,_G.HeadSize,_G.HeadSize)
  30. v.Character.HumanoidRootPart.Transparency = 0.7
  31. v.Character.HumanoidRootPart.BrickColor = BrickColor.new("Bright red")
  32. v.Character.HumanoidRootPart.Material = "Neon"
  33. v.Character.HumanoidRootPart.CanCollide = false
  34. end)
  35. end
  36. end
  37. end
  38. end
  39. end)
  40.  
  41. mouse.KeyDown:connect(function(key3)
  42. if key3 == bind3 then
  43. _G.HeadSize = 30
  44. _G.Disabled = true
  45.  
  46.  
  47. for i,v in next, game:GetService('Players'):GetPlayers() do
  48. if v.Name ~= game:GetService('Players').LocalPlayer.Name then
  49. pcall(function()
  50. v.Character.HumanoidRootPart.Size = Vector3.new(2, 2, 1)
  51. v.Character.HumanoidRootPart.Transparency = 1
  52. v.Character.HumanoidRootPart.BrickColor = BrickColor.new("Medium stone grey")
  53. v.Character.HumanoidRootPart.Material = "Plastic"
  54. v.Character.HumanoidRootPart.CanCollide = false
  55. end)
  56. end
  57. end
  58. end
  59. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement