[ad_1]
Created by Isacc#1555
Features:
- AUTO CLICK
- AUTO BOSSIf Boss isn’t in the Gui then reexecute when the boss is in the game
- AUTO REBIRTH
- AUTO EGG OPEN
- WALKSPEED
- HIDE NAME
_G.Color = Color3.fromRGB(176, 38, 255)
_G.Color2 = Color3.fromRGB(176, 38, 255)
local library = loadstring(game:HttpGet("https://raw.githubusercontent.com/slightten/ui-libs/main/funni"))()
local window = library:CreateWindow("Anime Rebirth Simulator", Enum.KeyCode.RightControl)
local plr = game.Players.LocalPlayer
local tab1 = window:CreateTab("Main")
local tab2 = window:CreateTab("Misc")
local sect2 = tab2:CreateSector("Misc", 'left')
sect2:AddLabel("V3rm borntodie1")
local Dispensers = {}
for i,v in pairs(workspace.Areas:GetDescendants()) do
if v:IsA"Model" and v.Parent.Name == "Dispensers" then
table.insert(Dispensers,tostring(v))
end
end
local NPCsl = {}
for i,v in pairs(Workspace:GetDescendants()) do
if v:IsA"Model" and v.Parent.Name == "NPCs" then
table.insert(NPCsl,v.Name)
end
end
local sect1 = tab1:CreateSector("Farming", 'left')
sect1:AddToggle("Auto Click", false, function(a)
aa = a
while aa do task.wait()
game:GetService("ReplicatedStorage").Events.Training:FireServer()
end
end)
sect1:AddDropdown("Select NPC",NPCsl, 'Select NPC', false, function(selected)
getgenv().selectedNPC = selected
end)
sect1:AddToggle("Auto Attack NPC", false, function(f)
ff = f
while ff do task.wait()
if workspace.NPCs:FindFirstChild(selectedNPC) then
local ohString1 = workspace.NPCs[selectedNPC]
game:GetService("ReplicatedStorage").Events.AttackBoss:FireServer(ohString1)
end
end
end)
sect1:AddTextbox("Auto Rebirth", "Rebirth amount here", function(elist)
getgenv().rebirth = elist
end)
sect1:AddToggle("Toggle", false, function(d)
dd = d
while dd do task.wait()
local args = {[1] = tonumber(rebirth),[2] = 3}
game:GetService("ReplicatedStorage").Events.Rebirth:FireServer(unpack(args))
end
end)
for i,v in pairs(game:GetService("Workspace"):GetDescendants()) do
if v:IsA"Folder" and v.Parent.Name == "EggHolders" then
table.insert(Egg,tostring(v))
end
end
local sect2 = tab1:CreateSector("Dispensers", 'right')
local Dispenser = sect2:AddDropdown("Select Dispenser",Dispensers, 'Select Dispenser', false, function(selected)
getgenv().selectedDispensers = selected
end)
sect2:AddToggle("Auto Buy Dispenser", false, function(b)
bb = b
while bb do task.wait()
local ohString1 = selectedDispensers
game:GetService("ReplicatedStorage").Events.Hatch:FireServer(tostring(ohString1))
end
end)
local sect2 = tab1:CreateSector("Misc", 'right')
sect2:AddSlider("Walkspeed", 16, 16, 200, false, function(Jake)
plr.Character.Humanoid.WalkSpeed = Jake
end)
sect2:AddButton("Hide Name", function()
for i,v in next, game.Players.LocalPlayer.Character.Head:GetChildren() do
if v:IsA"BillboardGui" then
v:Destroy()
end
end
end)
ENJOY!
Warning: DO NOT DOWNLOAD anything from this page, you’re only here to copy the script!
[ad_2]