local a = {} local b = {} local function c(d) local e = Instance.new("BillboardGui") e.Name = "mons" e.Adornee = d e.Size = UDim2.new(0, 200, 0, 50) e.StudsOffset = Vector3.new(0, 2, 0) e.AlwaysOnTop = true e.Parent = game.CoreGui.RobloxGui local f = Instance.new("TextLabel") f.Size = UDim2.new(1, 0, 1, 0) f.Text = d.Name f.TextColor3 = Color3.new(1, 0, 0) f.BackgroundTransparency = 1 f.TextStrokeTransparency = 0 f.TextScaled = true f.Parent = e table.insert(a, e) end local g = loadstring(game:HttpGet("https://raw.githubusercontent.com/shlexware/Orion/main/source"))() local h = g:MakeWindow({Name = "no title", HidePremium = false, SaveConfig = true, ConfigFolder = "ZombieStories"}) local i = h:MakeTab({Name = "main", Icon = "rbxassetid://4483345998", PremiumOnly = false}) i:AddToggle( {Name = "Zombies ESP", Default = true, Flag = "zombee", Save = true, Callback = function(j) for k, l in pairs(a) do l.Enabled = j end end} ) i:AddToggle( {Name = "Kinda Silent Aim", Default = true, Flag = "myhead", Save = true, Callback = function(j) if not j then for m, n in pairs(b) do if m and m:FindFirstChild("Head") then local o = m.Head o.Size = n.Size o.Transparency = n.Transparency end end end end} ) game.Workspace.Zombies.DescendantAdded:Connect( function(p) local o = p:FindFirstChild("Head") if p:IsA("Model") and o and not b[p] then b[p] = {Size = o.Size, Transparency = o.Transparency} if g.Flags.myhead.Value then o.Size = Vector3.new(20, 20, 20) o.Transparency = 0.8 end end end ) game.Workspace.Zombies.ChildAdded:Connect( function(d) if g.Flags.zombee.Value then c(d) end end )