Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ---if u dont have shadow fruit u can use collect all chest ( collect all chest )
- *****************************
- for _,v in pairs(workspace.Chests:GetChildren()) do
- if v.ClassName == "Model" then
- firetouchinterest(v.Giver, game.Players.LocalPlayer.Character.Head,0)
- firetouchinterest(v.Giver, game.Players.LocalPlayer.Character.Head,1)
- end
- end
- ----------------------------------
- ---first clear your passive items and run this (inf passive/Stats)
- *****************************
- game.Players.LocalPlayer.Character.PassiveItems.ChildAdded:Connect(function(v)
- task.wait()
- v:Destroy()
- end)
- ---then u need to spam equip passive . I recommended shadow fruit (no critical/burn/posion chance and give u 35 dmg)
- or this (auto spam passive)
- *****************************
- while true do
- game:GetService("ReplicatedStorage").Remotes.ItemSetup:FireServer("Shadow Fruit")
- wait()
- end
- ---so your defense is negative and when your level is up dmg will reset (godmode + bypass level up)
- ******************************
- local old
- old = hookmetamethod(game,"__namecall",function(self,...)
- local method = getnamecallmethod()
- if method:lower() == "fireserver" and not checkcaller() then
- local args = {...}
- if args[3] == "Enemy" or (tostring(self) == "StatsChange" and args[1] == "Level") then
- return nil
- end
- end
- return old(self,...)
- end)
Advertisement
Add Comment
Please, Sign In to add comment