--pick any you need and evovle
local args = {
[1] = "HollowEvolve"
}
game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("Server"):WaitForChild("Initiate_Server"):FireServer(unpack(args))
local args = {
[1] = "MenosEvolve"
}
game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("Server"):WaitForChild("Initiate_Server"):FireServer(unpack(args))
local args = {
[1] = "AdjuchaEvolve"
}
game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("Server"):WaitForChild("Initiate_Server"):FireServer(unpack(args))
--eat all dtropped food
getgenv().AutoEat = false -- true = on false = off
while AutoEat do
local partsEat = game:GetService("Workspace").World.Visuals
for i, v in ipairs(partsEat:GetChildren()) do
local prompt = v:FindFirstChild("Eat_Part");
if prompt and prompt:IsA("ProximityPrompt") then
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.CFrame
fireproximityprompt(prompt)
task.wait(2)
end
end
task.wait()
end
