RandomMagics

Critical Legends

Jan 17th, 2022
1,721
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.40 KB | None | 0 0
  1. ---if u dont have shadow fruit u can use collect all chest ( collect all chest )
  2. *****************************
  3.  
  4. for _,v in pairs(workspace.Chests:GetChildren()) do
  5. if v.ClassName == "Model" then
  6. firetouchinterest(v.Giver, game.Players.LocalPlayer.Character.Head,0)
  7. firetouchinterest(v.Giver, game.Players.LocalPlayer.Character.Head,1)
  8. end
  9. end
  10.  
  11. ----------------------------------
  12. ---first clear your passive items and run this (inf passive/Stats)
  13. *****************************
  14.  
  15. game.Players.LocalPlayer.Character.PassiveItems.ChildAdded:Connect(function(v)
  16. task.wait()
  17. v:Destroy()
  18. end)
  19.  
  20.  
  21. ---then u need to spam equip passive . I recommended shadow fruit (no critical/burn/posion chance and give u 35 dmg)
  22. or this (auto spam passive)
  23. *****************************
  24.  
  25. while true do
  26. game:GetService("ReplicatedStorage").Remotes.ItemSetup:FireServer("Shadow Fruit")
  27. wait()
  28. end
  29.  
  30. ---so your defense is negative and when your level is up dmg will reset (godmode + bypass level up)
  31. ******************************
  32.  
  33. local old
  34. old = hookmetamethod(game,"__namecall",function(self,...)
  35. local method = getnamecallmethod()
  36. if method:lower() == "fireserver" and not checkcaller() then
  37. local args = {...}
  38. if args[3] == "Enemy" or (tostring(self) == "StatsChange" and args[1] == "Level") then
  39. return nil
  40. end
  41. end
  42. return old(self,...)
  43. end)
Advertisement
Add Comment
Please, Sign In to add comment