Roblox Database Logo
  • Home
  • Roblox Scripts
  • Game Codes
  • Roblox Codes
    • Promo Codes
    • Item Codes
    • Music Codes
    • Star Codes
    • Color Codes
  • Best Games
  • Games
  • Roblox Guides
  • Roblox Tools
  • Home
  • Roblox Scripts
  • Game Codes
  • Roblox Codes
    • Promo Codes
    • Item Codes
    • Music Codes
    • Star Codes
    • Color Codes
  • Best Games
  • Games
  • Roblox Guides
  • Roblox Tools
Home - Scripts - World of Stands Script

World of Stands Script

✅ Last Tested: March 2026 – All scripts working.

World of Stands is a fighting game where the difference between winning and losing comes down to timing, combos, and knowing when to strike. Going up against experienced players without the right tools makes it frustrating to climb. These scripts close that gap fast with Pastebin – paste one in and you will notice the difference immediately.

Pastebin

World of Stands Script


📜 World of Stands Scripts (Pastebin & More)

To run any of these scripts you will need a working Roblox executor. Check out the list at that link for free and paid options that work in 2026.

World of Stands Script Pastebin2026 :

Script 1 KEYLESSWorld of Stands Script Pastebin2026 :
Pastebin
loadstring(game:HttpGet("https://raw.githubusercontent.com/Tobias020108Back/YBA-AUT/main/World-Of-Stands.lua"))()

Select all text above, copy it, then paste into your executor.

World of Stands Script 2:

Script 2 KEYLESSWorld of Stands Script Pastebin2026 :
Pastebin
-- Item farm script
getgenv().ItemFarm = true --Change to false to turn off sped

game:GetService("RunService").Stepped:connect(function()
  pcall(function()
      if ItemFarm then
          for _,v in pairs(game.Workspace:GetDescendants()) do
           if v:IsA("TouchTransmitter") then
               firetouchinterest(game.Players.LocalPlayer.Character.HumanoidRootPart, v.Parent, 0)
               wait()
               firetouchinterest(game.Players.LocalPlayer.Character.HumanoidRootPart, v.Parent, 1)
               end
           end
      end
  end)
end)


-- GodMode
game.Players.LocalPlayer.Character:FindFirstChild("PlayerHitBox"):Destroy()

Select all text above, copy it, then paste into your executor.

World of Stands Script 3:

Script 3 KEYLESSWorld of Stands Script Pastebin2026 :
Pastebin
------------SETTINGS------------------------------------
local rainbow = true -- adds a cool rainbow effect to the gui
local clicktpkeybind = Enum.KeyCode.LeftControl -- keybind to hold when you click tp
local bgcolor = Color3.fromRGB(60,60,60) -- background color if rainbow is set to false
local font = Enum.Font.Highway -- font for the text
------------SETTINGS------------------------------------
local tween = game:GetService("TweenService")
getgenv().autochest = false
getgenv().clicktp = false
local destroyed = false
local localplr = game.Players.LocalPlayer
local keybindon = false
local nofallplatform = Instance.new("Part")
nofallplatform.Transparency = 0.7
nofallplatform.CanCollide = true
nofallplatform.Anchored = true
nofallplatform.Position = Vector3.new(0,0,0)
nofallplatform.Size = Vector3.new(5,4,5)
nofallplatform.Parent = workspace
if getgenv().wosgui then
    getgenv().wosgui:Destroy()
end

function moveplr(part,pos)
    local movetime = (part.Position - pos).magnitude/45
    nofallplatform.Position = part.Position-Vector3.new(0,3,0)
    local tweenanim = tween:Create(part,TweenInfo.new(movetime,Enum.EasingStyle.Linear,Enum.EasingDirection.Out,0,false,0),{CFrame = CFrame.new(pos)})
    local tweenanim2 = tween:Create(nofallplatform,TweenInfo.new(movetime,Enum.EasingStyle.Linear,Enum.EasingDirection.Out,0,false,0),{CFrame = CFrame.new(pos-Vector3.new(0,5,0))})
    tweenanim:Play()
    tweenanim2:Play()
    wait(movetime)
    return
end

getgenv().wosgui = Instance.new("ScreenGui")
wosgui.Parent = game.CoreGui
local mainframe = Instance.new("Frame")
mainframe.Parent = wosgui
mainframe.Size = UDim2.new(.3,0,.35,0)
mainframe.Position = UDim2.new(.35,0,.3)
mainframe.BackgroundColor3 = bgcolor
mainframe.BorderColor3 = Color3.fromRGB(255,255,255)
mainframe.Active = true
mainframe.Draggable = true
local title = Instance.new("TextLabel")
title.Parent = mainframe
title.Size = UDim2.new(1,0,.15,0)
title.BackgroundTransparency = 0
title.BackgroundColor3 = bgcolor
title.BorderColor3 = Color3.fromRGB(255,255,255)
title.TextScaled = true
title.TextColor3 = Color3.fromRGB(255,255,255)
title.Text = "World Of Stands"
title.Font = font
if not game.Workspace.ChestSpawns then
    title.Text = "World Of Stands (Can't farm chests!)"
end
local credits = Instance.new("TextLabel")
credits.Parent = mainframe
credits.Size = UDim2.new(1,0,.075,0)
credits.Position = UDim2.new(0,0,.15,0)
credits.BackgroundTransparency = 0
credits.BackgroundColor3 = bgcolor
credits.BorderColor3 = Color3.fromRGB(255,255,255)
credits.TextScaled = true
credits.TextColor3 = Color3.fromRGB(255,255,255)
credits.Text = "Made By 2AreYouMental110"
credits.Font = font
local autochestbutton = Instance.new("TextButton")
autochestbutton.Parent = mainframe
autochestbutton.Size = UDim2.new(.25,0,.25,0)
autochestbutton.Position = UDim2.new(.05,0,.3,0)
autochestbutton.BackgroundColor3 = bgcolor
autochestbutton.BorderColor3 = Color3.fromRGB(255,255,255)
autochestbutton.TextColor3 = Color3.fromRGB(255,255,255)
autochestbutton.TextScaled = true
autochestbutton.Text = "Autofarm Chest: OFF"
autochestbutton.Font = font
local a = autochestbutton.MouseButton1Click:Connect(function()
    if getgenv().autochest == false then
        getgenv().autochest = true
        autochestbutton.Text = "Autofarm Chest: ON"
        for i,child in pairs(game.Workspace:GetChildren()) do
            if getgenv().autochest == true and tonumber(child.Name) and child:FindFirstChild("Inside") and not child:FindFirstChild("Animation") and localplr.Character ~= nil and localplr.Character:FindFirstChild("HumanoidRootPart") then
                moveplr(localplr.Character.HumanoidRootPart,child.Inside.Position)
                fireproximityprompt(child.Inside.ProximityPrompt)
                repeat wait(.1) until child.Parent == nil
                wait(.5)
            end
        end
    elseif getgenv().autochest == true then 
        getgenv().autochest = false
        autochestbutton.Text = "Autofarm Chest: OFF"
    end
end)
local chestamttext = Instance.new("TextLabel")
chestamttext.Parent = mainframe
chestamttext.Size = UDim2.new(.25,0,.25,0)
chestamttext.Position = UDim2.new(.375,0,.3,0)
chestamttext.BackgroundColor3 = bgcolor
chestamttext.BorderColor3 = Color3.fromRGB(255,255,255)
chestamttext.TextColor3 = Color3.fromRGB(255,255,255)
chestamttext.TextScaled = true
chestamttext.Text = "Chests: 0"
chestamttext.Font = font
local clicktpbutton = Instance.new("TextButton")
clicktpbutton.Parent = mainframe
clicktpbutton.Size = UDim2.new(.25,0,.25,0)
clicktpbutton.Position = UDim2.new(.7,0,.3,0)
clicktpbutton.BackgroundColor3 = bgcolor
clicktpbutton.BorderColor3 = Color3.fromRGB(255,255,255)
clicktpbutton.TextColor3 = Color3.fromRGB(255,255,255)
clicktpbutton.TextScaled = true
clicktpbutton.Text = "Click TP: OFF"
clicktpbutton.Font = font
local b = clicktpbutton.MouseButton1Click:Connect(function()
    if getgenv().clicktp == false then
        getgenv().clicktp = true
        clicktpbutton.Text = "Click TP: ON"
    elseif getgenv().clicktp == true then
        getgenv().clicktp = false
        clicktpbutton.Text = "Click TP: OFF"
    end
end)
local deathspotbutton = Instance.new("TextButton")
deathspotbutton.Parent = mainframe
deathspotbutton.Size = UDim2.new(.25,0,.25,0)
deathspotbutton.Position = UDim2.new(.05,0,.675,0)
deathspotbutton.BackgroundColor3 = bgcolor
deathspotbutton.BorderColor3 = Color3.fromRGB(255,255,255)
deathspotbutton.TextColor3 = Color3.fromRGB(255,255,255)
deathspotbutton.TextScaled = true
deathspotbutton.Text = "Go to death spot"
deathspotbutton.Font = font
local c = deathspotbutton.MouseButton1Click:Connect(function()
    if typeof(getgenv().deathspot) == "Vector3" and localplr.Character ~= nil and localplr.Character:FindFirstChild("HumanoidRootPart") then
        moveplr(localplr.Character.HumanoidRootPart,getgenv().deathspot)
    end
end)
local chestamt = 0
if game.Workspace:FindFirstChild("ChestSpawns") then
    for i,child in pairs(game.Workspace:GetChildren()) do
        if tonumber(child.Name) and child:FindFirstChild("Inside") then
            chestamt += 1
            chestamttext.Text = "Chests: "..tostring(chestamt)
        end
    end
end
local d = game.Workspace.ChildAdded:Connect(function(child)
    if tonumber(child.Name) and child:FindFirstChild("Inside") then
        chestamt += 1
        chestamttext.Text = "Chests: "..tostring(chestamt)
    end
    if getgenv().autochest == true and tonumber(child.Name) and child:FindFirstChild("Inside") and not child:FindFirstChild("Animation") and localplr.Character ~= nil and localplr.Character:FindFirstChild("HumanoidRootPart") then
        moveplr(localplr.Character.HumanoidRootPart,child.Inside.Position)
        fireproximityprompt(child.Inside.ProximityPrompt)
        repeat wait(.1) until child.Parent == nil
    end
end)
local e = game.Workspace.ChildRemoved:Connect(function(child)
    if tonumber(child.Name) and child:FindFirstChild("Inside") then
        chestamt -= 1
        chestamttext.Text = "Chests: "..tostring(chestamt)
    end
end)
local f = game:GetService("UserInputService").InputBegan:Connect(function(input)
    if getgenv().clicktp == true and input.KeyCode == clicktpkeybind then
        keybindon = true
    elseif getgenv().clicktp == true and keybindon == true and input.UserInputType == Enum.UserInputType.MouseButton1 and localplr.Character ~= nil and localplr.Character:FindFirstChild("HumanoidRootPart") then
        moveplr(localplr.Character.HumanoidRootPart,localplr:GetMouse().Hit.Position+Vector3.new(0,3,0))
    end
end)
local g = game:GetService("UserInputService").InputEnded:Connect(function(input)
    if getgenv().clicktp == true and input.KeyCode == clicktpkeybind then
        keybindon = false
    end
end)
local h = localplr.CharacterRemoving:Connect(function(char)
    if char:FindFirstChild("HumanoidRootPart") then
        getgenv().deathspot = char.HumanoidRootPart.Position+Vector3.new(0,3,0)
    end
end)
local i = wosgui.Destroying:Connect(function()
    destroyed = true
end)
local color
local t = 30
repeat
    wait()
    if rainbow == true then
        color = Color3.fromHSV(tick() % t/t,1,1)
        mainframe.BackgroundColor3 = color
        title.BackgroundColor3 = color
        credits.BackgroundColor3 = color
        autochestbutton.BackgroundColor3 = color
        chestamttext.BackgroundColor3 = color
        clicktpbutton.BackgroundColor3 = color
        deathspotbutton.BackgroundColor3 = color
    end
until destroyed == true
getgenv().autochest = false
getgenv().clicktp = false
a:Disconnect()
b:Disconnect()
c:Disconnect()
d:Disconnect()
e:Disconnect()
f:Disconnect()
g:Disconnect()
h:Disconnect()
i:Disconnect()
nofallplatform:Destroy()

Select all text above, copy it, then paste into your executor.


🎮 How to Use the World of Stands Script

1Get a working executor – see our Roblox Executor list for free options on PC, Mobile, and Mac.
2Launch Roblox and open World of Stands.
3Open your executor, then click Inject or Attach.
4Copy any script above and paste it into the executor script box.
5Press Execute — the GUI will appear in-game.
6Toggle Auto Farm, Speed Hack, ESP and other features from the GUI menu.
7Always use an alt account to protect your main.

🎮 About The World of Stands Script

World of Stands Script

World of Stands is a fighting game where winning comes down to timing, knowing your combos, and reading what the other player is going to do before they do it. Going up against skilled opponents without the right tools makes it hard to climb and stay competitive.

Kill aura and auto attack scripts are the most impactful here since they handle hitting automatically so you can focus on positioning and movement. Stack those with speed and god mode and you become very difficult to beat in any fight.

Use an alt account to avoid any bans on your main. The hub scripts above are updated after patches so they are the safest long-term option.

Looking for free rewards? Check out our World of Stands Codes page for every working code.

The World Of Stands is worth checking for the full picture on World of Stands — abilities, update history, and everything the base game covers.


⚠️ Disclaimer: All scripts on this page are for educational purposes only. Using scripts in Roblox violates the Roblox Terms of Service and may result in your account being permanently banned or suspended without warning. RobloxDatabase.com is not responsible for any consequences from using these scripts. Always use an alt account — never your main.


MORE FOR WORLD OF STANDS

Working Codes for World of Stands  |  World of Stands Game Wiki

Another Similar Game :

World of Stands CodesWorld of Stands Codes World Of StandsWorld Of Stands World of Magic ScriptWorld of Magic Script Drive World ScriptDrive World Script Dandy's World ScriptDandy’s World Script Sell Water to Rule the World ScriptSell Water to Rule the World Script

Leave a Comment Cancel reply

Promo Codes

Get your hands on exclusive cosmetics, in-game currency, and special bonuses! Redeem our extensive list of Roblox promo codes and stay ahead of the game.

FREE ITEMS
PROMO CODES
STAR CODES

Game Codes

Unlock exclusive in-game perks, boost your stats, and get an edge in your favorite Roblox games with our collection of verified and non expired game codes.

VIEW ALL
GENRES
POPULAR CODES

Items Codes

Customize your Roblox avatar to the max! Browse our thousands of collection of item codes to unlock unique hats, accessories, gear, and many more.

VIEW ALL
CATEGORY
POPULAR ITEMS

Music Codes

Jam out to your favorite tunes in Roblox! Discover music codes for the latest hits and timeless classics to personalize your in-game experience.

VIEW ALL
STYLE
ARTIST

Best Games

Looking for the hottest Roblox games? Explore our curated recommendations, discover hidden gems, and find your next gaming obsession.

BEST GAMES
THEMES
POPULAR GAMES

Roblox Guides

Level up your Roblox knowledge! Access in-depth guides, powerful tools, and valuable resources to enhance your gameplay and creation skills.

VIEW ALL
GAMES WIKI
ERRORS

Tools

Tap into the Roblox community! Find player-created tools, expert guides, and collaborative resources to elevate your Roblox journey.

VIEW ALL
USERNAME GENERATOR
EXECUTOR

Roblox Scripts

Unlock hidden potential, customize your gameplay, and push the limits of your favorite Roblox game with our powerful script collection.

VIEW ALL
GENRE
POPULAR SCRIPTS
Roblox Database Logo

Roblox Database is your all-in-one source for anything and everything related to Roblox.

Whether you’re looking for the latest game codes, item codes, or promo codes or need some scripting guidance, we’ve got you covered.

Facebook-f Twitter Youtube Instagram Pinterest
Quick Links
  • About
  • Contact
  • Tools
  • Privacy Policy
  • Terms of Service
  • Copyright Policy
Menu
  • Home
  • Roblox Scripts
  • Game Codes
  • Roblox Codes
    • Promo Codes
    • Item Codes
    • Music Codes
    • Star Codes
    • Color Codes
  • Best Games
  • Games
  • Roblox Guides
  • Roblox Tools
  • Home
  • Roblox Scripts
  • Game Codes
  • Roblox Codes
    • Promo Codes
    • Item Codes
    • Music Codes
    • Star Codes
    • Color Codes
  • Best Games
  • Games
  • Roblox Guides
  • Roblox Tools
Download
chrome logo
  • Email: robloxdatabase23@gmail.com
  • Android : Coming Soon
  • IOS : Coming Soon

© 2026 All Rights Reserved.