Version / Update: v1.0.0
- Download / Script Link
- -- [[ THE TEAM // OMNI-LANDSCAPE COMMANDER V2026 ]]
-- Optimized for Mobile Landscape & Delta Executor
local Player = game:GetService("Players").LocalPlayer
local PlayerGui = Player:WaitForChild("PlayerGui")
local Lighting = game:GetService("Lighting")
-- 1. GUI BASE (Landscape Optimized)
local ScreenGui = Instance.new("ScreenGui", PlayerGui)
ScreenGui.Name = "OmniLandscape"
ScreenGui.ResetOnSpawn = false
local Main = Instance.new("ScrollingFrame", ScreenGui)
Main.Size = UDim2.new(0, 500, 0, 250)
Main.Position = UDim2.new(0.5, -250, 0.2, 0)
Main.BackgroundColor3 = Color3.fromRGB(15, 0, 0)
Main.CanvasSize = UDim2.new(0, 0, 2, 0)
Main.ScrollBarThickness = 8
Main.Active = true
Main.Draggable = true
local UIList = Instance.new("UIListLayout", Main)
UIList.Padding = UDim.new(0, 5)
UIList.HorizontalAlignment = Enum.HorizontalAlignment.Center
-- Helper to make buttons quickly
local function CreateBtn(text, color)
local b = Instance.new("TextButton", Main)
b.Size = UDim2.new(0.9, 0, 0, 40)
b.Text = text
b.BackgroundColor3 = color
b.TextColor3 = Color3.white
b.Font = Enum.Font.Code
b.TextSize = 16
return b
end
-- 2. THE BUTTON PROTOCOLS
-- [1] HINT ONE
local Hint1 = CreateBtn("HINT ONE", Color3.fromRGB(60, 0, 0))
Hint1.MouseButton1Click:Connect(function()
local h = Instance.new("Hint", workspace)
h.Text = "PROTOCOL_OMNI: HACKER_STATUS_ACTIVE"
task.wait(5) h:Destroy()
end)
-- [2] MESSAGE 1
local Msg1 = CreateBtn("MESSAGE", Color3.fromRGB(80, 0, 0))
Msg1.MouseButton1Click:Connect(function()
local m = Instance.new("Message", workspace)
m.Text = "shit it on by the strongest team"
task.wait(5) m:Destroy()
end)
-- [3] PARTICLES (ID: 1848354536)
local PartBtn = CreateBtn("PARTICLES", Color3.fromRGB(100, 0, 0))
PartBtn.MouseButton1Click:Connect(function()
local p = Instance.new("ParticleEmitter", Player.Character:WaitForChild("HumanoidRootPart"))
p.Texture = "rbxassetid://1848354536"
p.Rate = 100
end)
-- [4] DECAL SPAM (ID: 1848354536)
local DecalBtn = CreateBtn("DECAL SPAM", Color3.fromRGB(120, 0, 0))
DecalBtn.MouseButton1Click:Connect(function()
for _, obj in pairs(workspace:GetDescendants()) do
if obj:IsA("BasePart") then
for _, face in pairs(Enum.NormalId:GetEnumItems()) do
local d = Instance.new("Decal", obj)
d.Texture = "rbxassetid://1848354536"
d.Face = face
end
end
end
end)
-- [5] BILLBOARD (KING/FUCKED UP)
local BillBtn = CreateBtn("BILLBOARD", Color3.fromRGB(140, 0, 0))
BillBtn.MouseButton1Click:Connect(function()
for _, p in pairs(game.Players:GetPlayers()) do
local head = p.Character and p.Character:FindFirstChild("Head")
if head then
local bg = Instance.new("BillboardGui", head)
bg.Size = UDim2.new(0, 200, 0, 50)
bg.AlwaysOnTop = true
bg.ExtentsOffset = Vector3.new(0, 3, 0)
local tl = Instance.new("TextLabel", bg)
tl.Size = UDim2.new(1, 0, 1, 0)
tl.BackgroundTransparency = 1
tl.TextColor3 = Color3.fromRGB(255, 0, 0)
tl.Text = (p == Player) and "KING" or "fucked up"
end
end
end)
-- [6] SKYBOX (ID: 1848354536)
local SkyBtn = CreateBtn("SKYBOX", Color3.fromRGB(160, 0, 0))
SkyBtn.MouseButton1Click:Connect(function()
Lighting:ClearAllChildren()
local s = Instance.new("Sky", Lighting)
local id = "rbxassetid://1848354536"
s.SkyboxBk = id s.SkyboxDn = id s.SkyboxFt = id s.SkyboxLf = id s.SkyboxRt = id s.SkyboxUp = id
end)
-- [7] THEME (ID: 76578817848504)
local ThemeBtn = CreateBtn("THEME", Color3.fromRGB(180, 0, 0))
ThemeBtn.MouseButton1Click:Connect(function()
local sound = Instance.new("Sound", workspace)
sound.SoundId = "rbxassetid://76578817848504"
sound.Volume = 5
sound.Looped = true
sound:Play()
end)
-- [8] MESSAGE 2
local Msg2 = CreateBtn("MESSAGE 2", Color3.fromRGB(200, 0, 0))
Msg2.MouseButton1Click:Connect(function()
local m = Instance.new("Message", workspace)
m.Text = "Game got hacked by the strongest team"
task.wait(5) m:Destroy()
end)
-- [9] HINT 2 (Animated)
local Hint2 = CreateBtn("HINT 2", Color3.fromRGB(220, 0, 0))
Hint2.MouseButton1Click:Connect(function()
local h = Instance.new("Hint", workspace)
h.Text = "you got hacked by TheStrongestTeam"
-- Simple Animation (Flicker)
spawn(function()
for i = 1, 10 do
h.Text = "" task.wait(0.1)
h.Text = "you got hacked by TheStrongestTeam" task.wait(0.1)
end
end)
end)
print("[SYSTEM] THE TEAM: OMNI-LANDSCAPE INJECTED")[ View More ]
It's a gui to skid best GUI to hack