Advertisement
uor

dragon blade

uor
Feb 3rd, 2022
36
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.81 KB | None | 0 0
  1. loadstring(game:HttpGet('https://raw.githubusercontent.com/2dgeneralspam1/scripts-and-stuff/master/shit%20script%20pack/CheatX'))()
  2. --BROUGHT TO YOU BY ROBLOXSCRIPTS.NET!--
  3.  
  4. --Hitbox
  5.  
  6. local OneHand = require(game:GetService("ReplicatedStorage").SharedData.StanceData.OneHand)
  7. local Pole = require(game:GetService("ReplicatedStorage").SharedData.StanceData.Pole)
  8. local TwoHand = require(game:GetService("ReplicatedStorage").SharedData.StanceData.TwoHand)
  9.  
  10. for i,v in pairs(OneHand.Attacks) do
  11. v.DamageVolume.Size = Vector3.new(20,20,20)
  12. end
  13. for i,v in pairs(Pole.Attacks) do
  14. v.DamageVolume.Size = Vector3.new(20,20,20)
  15. end
  16. for i,v in pairs(TwoHand.Attacks) do
  17. v.DamageVolume.Size = Vector3.new(20,20,20)
  18. end
  19.  
  20.  
  21.  
  22.  
  23. --Instant Interact
  24.  
  25. game:GetService("ProximityPromptService").PromptButtonHoldBegan:Connect(function(prompt)
  26. prompt.HoldDuration = 0
  27. end)
  28.  
  29.  
  30.  
  31.  
  32. --Instant Kill/Break/Mine No Durability Loss
  33.  
  34. local old
  35. old = hookmetamethod(game,"__namecall",function(self,...)
  36. local method = getnamecallmethod()
  37. if method:lower() == "invokeserver" and not checkcaller() then
  38. local args = {...}
  39. if (tostring(self) == "TakeDamageFunc") then
  40. args[1].Blunt = 1e+99
  41. return old(self,unpack(args))
  42. elseif (tostring(self) == "ChangeToolDurability") then
  43. return 100
  44. elseif tostring(self) == "RequestUnbuildPart" then
  45. args[2].Environment = 500
  46. return old(self,unpack(args))
  47. end
  48. end
  49. return old(self,...)
  50. end)
  51. --BROUGHT TO YOU BY ROBLOXSCRIPTS.NET!--
  52.  
  53. for i = 1,1000 do
  54. for i,v in pairs(game:GetService("Players").LocalPlayer.Character.Skills:GetChildren()) do
  55. if v.ClassName == "Folder" then
  56. game:GetService("Players").LocalPlayer.Character.UpdateSkillEvent:FireServer(v.Name, 100)
  57. end
  58. end
  59. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement