RandomMagics

Dragon blade 1 hit

Jan 18th, 2022
343
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.56 KB | None | 0 0
  1. hitbox expander
  2. Code:
  3. ---------------------
  4. local OneHand = require(game:GetService("ReplicatedStorage").SharedData.StanceData.OneHand)
  5. local Pole = require(game:GetService("ReplicatedStorage").SharedData.StanceData.Pole)
  6. local TwoHand = require(game:GetService("ReplicatedStorage").SharedData.StanceData.TwoHand)
  7.  
  8. for i,v in pairs(OneHand.Attacks) do
  9. v.DamageVolume.Size = Vector3.new(20,20,20)
  10. end
  11. for i,v in pairs(Pole.Attacks) do
  12. v.DamageVolume.Size = Vector3.new(20,20,20)
  13. end
  14. for i,v in pairs(TwoHand.Attacks) do
  15. v.DamageVolume.Size = Vector3.new(20,20,20)
  16. end
  17.  
  18. ***********************************************************
  19. Instant Interact/ProximityPromt/E
  20. Code:
  21. --------------------------
  22. game:GetService("ProximityPromptService").PromptButtonHoldBegan:Connect(function(prompt)
  23. prompt.HoldDuration = 0
  24. end)
  25.  
  26. ****************************************************************
  27. Instant Kill, Instant Break/Mine, No Durability Loss
  28. Code:
  29. -------------
  30. local old
  31. old = hookmetamethod(game,"__namecall",function(self,...)
  32. local method = getnamecallmethod()
  33. if method:lower() == "invokeserver" and not checkcaller() then
  34. local args = {...}
  35. if (tostring(self) == "TakeDamageFunc") then
  36. args[1].Blunt = 1e+99
  37. return old(self,unpack(args))
  38. elseif (tostring(self) == "ChangeToolDurability") then
  39. return 100
  40. elseif tostring(self) == "RequestUnbuildPart" then
  41. args[2].Environment = 500
  42. return old(self,unpack(args))
  43. end
  44. end
  45. return old(self,...)
  46. end)
Advertisement
Add Comment
Please, Sign In to add comment