MADE BY The Noblesse
FEATURE:
- ITEM FARM
- .
- https://www.roblox.com/games/2809202155/Your-Bizarre-Adventure
SCRIPT:
local function get_item()
local dist, item = math.huge
for i,v in next, workspace.Item_Spawns.Items:GetChildren() do
if v:IsA("Model") then
local mag = (game.Players.LocalPlayer.Character.HumanoidRootPart.Position - v:GetModelCFrame().Position).magnitude
if dist > mag then
dist = mag
item = v
end
end
end
return item
end
local old;
old = hookmetamethod(game,"__namecall", function(self,...)
local args = {...}
local method = getnamecallmethod()
if tostring(self) == "Returner" and tostring(method) == "InvokeServer" then
return " ___XP DE KEY"
end
return old(self, ...)
end)
getgenv().itemfarm = not itemfarm
while itemfarm do wait(1.2)
pcall(function()
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = get_item():GetModelCFrame()
wait(.3)
for i,v in next, get_item():GetChildren() do
if v:IsA("ProximityPrompt") then
v.RemoteEvent:FireServer()
end
end
end)
end