Post Views: 33
Created by LeadMarker#1219
Features:
- LEVEL FARM
- SERVER HOP
- put it in your auto-execute if you want it to server hop. Used this for like 20 minutes and didn’t get banned use at your own risk.
loadstring(game:HttpGet("http://leadmarker.xyz/Scripts/ForceLVLFarm"))()
- CLEAR INVENTORY
for i,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
if v:IsA("Tool") then
game.Players.LocalPlayer.Character.Humanoid:EquipTool(v)
game.Players.LocalPlayer.Character:FindFirstChildWhichIsA("Tool").Parent = game.Workspace
end
end
- ANTI FALLDMG/RAGDOLL
local old
old = hookmetamethod(game, __namecall, function(self, ...)
if getnamecallmethod() == FireServer and tostring(self) == Damaged or tostring(self) == Ragdoll then
return
end
return old(self, ...)
end)