In this guide, you’ll find all the available scripts for the Roblox Anime Worlds Simulator game along with the procedure of executing the scripts using the Roblox script executor. Additionally, you’ll find out about the perks that you’ll be getting by using these scripts
Anime Worlds Simulator
Anime Worlds Simulator is a Roblox game where you need to explore the anime world to collect powerful fighters and orbs. Collect powerful fruits to level up your character and then start taking down enemies with brutal hits.
Function of Scripts
The Anime Worlds Simulator script offers a suite of powerful functions to enhance gameplay. These functions will allow you to auto sell, auto farm, automatic egg hatcher, and unlock new fighters. You can also unlock new maps and many other features by executing the script.
- auto sell
- auto farm
- automatic egg hatcher
- unlock new fighters
- infinite money
- new maps unlock
Anime Worlds Simulator scripts
loadstring(game:HttpGet(“https://raw.githubusercontent.com/Mana42138/Manahub-Script-Hyper-804-was-here.lua/main/Hyper-is-still-here.lua”))()
loadstring(game:HttpGet(('https://raw.githubusercontent.com/pspboy08/dollhouse/main/AWSGUI.lua')))()
local library = loadstring(game:HttpGet(('https://raw.githubusercontent.com/Maxgat5/UiLib/main/lua')))()
local w = library:CreateWindow("Anime Worlds Simulator")
local b = w:CreateFolder("AutoFarm")
local e = w:CreateFolder("Mix")
local u = w:CreateFolder("Credits")
Base = ""
for i,v in pairs(game:GetService("Workspace").Nests:GetChildren()) do
if v.ClassName == "Folder" then
if v.Base.Owner.Sign.Text == game.Players.LocalPlayer.Name.."'s Dojo" then
Base = v.Name
end
end
end
SelectedFruit = "MeadowFruit"
Fruits = {}
for i,v in pairs(game:GetService("Workspace").FruitBushes:GetChildren()) do
table.insert(Fruits,v.Name)
end
SelectedEnemy = "Hoshi"
Emenies = {}
for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
if v.HumanoidRootPart:FindFirstChildOfClass("BillboardGui") then
if not table.find(Emenies,v.HumanoidRootPart:FindFirstChildOfClass("BillboardGui").Back["NPC_Name"].Text) then table.insert(Emenies,v.HumanoidRootPart:FindFirstChildOfClass("BillboardGui").Back["NPC_Name"].Text)
end
end
end
b:Dropdown("Select Fruit",Fruits,true,function(a)
SelectedFruit = a
end)
b:Toggle("Farm Fruits",function(bool)
shared.toggle = bool
FarmFruits = bool
end)
b:Dropdown("Select Emeny",Emenies,true,function(a)
SelectedEnemy = a
end)
b:Toggle("Kill Enemies",function(bool)
shared.toggle = bool
KillEnemyies = bool
end)
b:Toggle("AutoPlaceOrbs",function(bool)
shared.toggle = bool
AutoPlaceOrbs = bool
end)
b:Toggle("AutoHatchOrbs",function(bool)
shared.toggle = bool
AutoHatchOrbs = bool
end)
b:Toggle("TpBaseWhenFull",function(bool)
shared.toggle = bool
TpBaseWhenFull = bool
end)
b:Toggle("BoostAttackers",function(bool)
shared.toggle = bool
BoostAttackers = bool
end)
e:Toggle("AntiAfk",function(bool)
shared.toggle = bool
AntiAfk = bool
end)
e:Button("Tp Base",function()
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(game:GetService("Workspace").Nests[Base].Base.CFrame.Position + Vector3.new(0,6,0))
end)
--Credits
u:Button(game:service("HttpService"):JSONDecode(game:HttpGet("https://raw.githubusercontent.com/Maxgat5/Decode/main/JSON")).username,function() setclipboard(game:service("HttpService"):JSONDecode(game:HttpGet("https://raw.githubusercontent.com/Maxgat5/Decode/main/JSON")).username)
end)
u:Button("Discord Server",function() setclipboard(game:service("HttpService"):JSONDecode(game:HttpGet("https://raw.githubusercontent.com/Maxgat5/Decode/main/JSON")).discord)
end)
game:GetService('RunService').Stepped:connect(function()
spawn(function()
if AntiAfk == true then
local bb=game:service'VirtualUser'
bb:CaptureController()
bb:ClickButton2(Vector2.new())
end
end)
end)
function ClosestPart()
local dist = math.huge
local target = nil
for i,v in pairs(game:GetService("Workspace").FruitBushes[SelectedFruit]:GetChildren()) do
if v:FindFirstChildOfClass("Model") then
if game:GetService("Players").LocalPlayer.Character:FindFirstChild("Head") then
local magnitude = (v.Position - game:GetService("Players").LocalPlayer.Character.Head.Position).magnitude
if magnitude < dist then
dist = magnitude
target = v
end
end
end
end
return target
end
function ClosestPart1()
local dist = math.huge
local target = nil
for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
if v:FindFirstChild("HumanoidRootPart") then
if v.HumanoidRootPart:FindFirstChildOfClass("BillboardGui") then
if v.HumanoidRootPart:FindFirstChildOfClass("BillboardGui").Back["NPC_Name"].Text == SelectedEnemy then
if game:GetService("Players").LocalPlayer.Character:FindFirstChild("Head") then
local magnitude = (v.HumanoidRootPart.Position - game:GetService("Players").LocalPlayer.Character.Head.Position).magnitude
if magnitude < dist then
dist = magnitude
target = v.HumanoidRootPart
end
end
end
end
end
end
return target
end
spawn(function()
while wait() do
if FarmFruits == true then
pcall(function()
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(ClosestPart().CFrame.Position + Vector3.new(0,0,0)) game:GetService("ReplicatedStorage").Remotes.Events.PerformAttack:FireServer("Melee","Punch")
end)
end
if KillEnemyies == true then
pcall(function()
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(ClosestPart1().CFrame.Position + Vector3.new(0,0,0)) game:GetService("ReplicatedStorage").Remotes.Events.PerformAttack:FireServer("Melee","Punch")
end)
end
if TpBaseWhenFull == true then
if game:GetService("Players").LocalPlayer.PlayerGui.Confirmation.Enabled == true then
for i,v in pairs(game:GetService("Players").LocalPlayer.PlayerGui.Confirmation.Holder:GetChildren()) do
if v.ClassName == "Frame" then
if v.Label.Text == "Your backpack is full. Do you want to teleport back to your dojo?" then
pcall(function()
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(game:GetService("Workspace").Nests[Base].Base.CFrame.Position + Vector3.new(0,6,0))
wait(5)
firesignal(v.No.Activated)
end)
end
end
end
end
end
end
end)
spawn(function()
while wait() do
if AutoPlaceOrbs == true then
for i,v in pairs(game:GetService("ReplicatedStorage").Assets.Orbs:GetChildren()) do
for i,v1 in pairs(game:GetService("Workspace").Nests[Base].Podiums:GetChildren()) do
if not v1:FindFirstChild("OrbModel") then
for i,v2 in pairs(game:GetService("Players").LocalPlayer.PlayerGui.Orbs.Holder.Back.Front.Orbs:GetChildren()) do
if v2.ClassName == "Frame" then
if v2.Visible == true then
game:GetService("ReplicatedStorage").Remotes.Events.PlaceOrb:FireServer(tonumber(v1.Name),tostring(v.Name))
end
end
end
end
end
end
end
end
end)
spawn(function()
while wait() do
if AutoHatchOrbs == true then
for i,v in pairs(game:GetService("Workspace").Nests[Base].Podiums:GetChildren()) do
if v:FindFirstChild("Pedestal") then
if v.Pedestal["Meshes/podium_Cube"].HatchOrb.BarHolder.Hatch.Visible == true then game:GetService("ReplicatedStorage").Remotes.Events.HatchOrb:FireServer(tostring(i))
end
end
end
end
end
end)
spawn(function()
while wait() do
if BoostAttackers == true then
for i,v in pairs(game:GetService("Players").LocalPlayer.PlayerGui.HUD.Bottom.Attacks:GetChildren()) do
if v.ClassName == 'Frame' then
if v.Visible == true then
firesignal(v.Button.Activated)
end
end
end
end
end
end)
loadstring(game:HttpGet("https://raw.githubusercontent.com/dooory/rblx-scripts/main/Anime%20Worlds%20Simulator.lua"))()
How to execute Anime Worlds Simulator scripts?
In order to execute Anime Worlds Simulator scripts you can follow these steps:
- First, you have to copy the Anime Worlds Simulator script.
- Launch the game, and paste the copied script into the designated box in the exploit executer.
- Hit the Execute button to run the exploit and enjoy the free perks.
Best Roblox Script Executors
Roblox script executors empower you to incorporate custom scripts into your game to enhance the in-game experience. These versatile executors unlock a vast realm of new possibilities. Our carefully curated selection of Roblox script executors ensures seamless compatibility across all platforms, whether you’re playing the game on a PC, smartphone, or any other device.
- JJ Spoilt Executor: An exceptionally potent anti-ban script executor tool designed for Roblox games, compatible with a wide range of operating systems.
- Fluxus Executor: An executor with a modest yet advanced user-friendly user interface to execute scripts for the Roblox games.
- Velyse Executor: The Roblox Valyse Executor is a potent level 8 tool designed for exploiting Roblox games. It provides built-in protection against anti-cheat detection within the game.
- Krnl Executor: This roblox script executor gains reputable recognition due to its ability to run complex scripts efficiently.
- Arceus X (Android): The first ever Android Roblox Mod menu that can exploit your game by adding advanced features to the base game.