task.wait(0.5) loadstring([[ local p = game:GetService("Players").LocalPlayer local pg = p:WaitForChild("PlayerGui") if pg:FindFirstChild("LyanVanillaV18FakeLag") then pg.LyanVanillaV18FakeLag:Destroy() end local sg = Instance.new("ScreenGui", pg) sg.Name = "LyanVanillaV18FakeLag" sg.ResetOnSpawn = false sg.IgnoreGuiInset = true local function playEffect(button, originalColor) local s = Instance.new("Sound", workspace) s.SoundId = "rbxassetid://7593297942" s.Volume = 0.7 s:Play() game:GetService("Debris"):AddItem(s, 1) task.spawn(function() button.BackgroundColor3 = Color3.fromRGB(0, 0, 40) -- ULTRA DARK BLUE task.wait(0.3) button.BackgroundColor3 = originalColor end) end local btn = Instance.new("TextButton", sg) btn.Size = UDim2.new(0, 90, 0, 90) btn.Position = UDim2.new(0, 15, 0, 25) local ltCol = Color3.fromRGB(0, 5, 15) btn.BackgroundColor3 = ltCol btn.Text = "LT" btn.TextColor3 = Color3.fromRGB(0, 255, 255) btn.TextSize = 45 btn.Font = Enum.Font.GothamBold btn.AutoLocalize = false Instance.new("UICorner", btn).CornerRadius = UDim.new(1, 0) local ltStroke = Instance.new("UIStroke", btn) ltStroke.Color = Color3.fromRGB(0, 180, 255) ltStroke.Thickness = 2.5 local f = Instance.new("Frame", sg) f.Size, f.Position = UDim2.new(0, 520, 0, 380), UDim2.new(0.5, -260, 0.5, -180) f.BackgroundColor3 = Color3.fromRGB(0, 0, 255) f.Visible, f.Active, f.Draggable = false, true, true Instance.new("UICorner", f).CornerRadius = UDim.new(0, 10) btn.MouseButton1Click:Connect(function() playEffect(btn, ltCol) f.Visible = not f.Visible end) local title = Instance.new("TextLabel", f) title.Size, title.Position = UDim2.new(1, -20, 0, 35), UDim2.new(0, 10, 0, 10) title.BackgroundColor3, title.TextColor3 = Color3.new(0,0,0), Color3.new(1,1,1) title.Text = " LYAN C00LLYAN GUI PIE VANILLA" title.TextSize, title.Font = 18, Enum.Font.Code title.AutoLocalize = false Instance.new("UICorner", title).CornerRadius = UDim.new(0, 5) local titleGlow = Instance.new("UIStroke", title) titleGlow.Color = Color3.fromRGB(0, 150, 255) titleGlow.Thickness = 1.5 local sf = Instance.new("ScrollingFrame", f) sf.Size, sf.Position, sf.BackgroundTransparency = UDim2.new(1, -20, 1, -60), UDim2.new(0, 10, 0, 50), 1 sf.CanvasSize, sf.ScrollBarThickness = UDim2.new(0, 0, 4.2, 0), 0 local g = Instance.new("UIGridLayout", sf) g.CellSize, g.CellPadding = UDim2.new(0, 160, 0, 55), UDim2.new(0, 10, 0, 10) local function add(txt, func) local b = Instance.new("TextButton", sf) local bCol = Color3.new(0,0,0) b.BackgroundColor3, b.TextColor3, b.Text = bCol, Color3.new(1,1,1), txt b.Font, b.TextSize, b.TextWrapped = Enum.Font.Code, 18, true b.AutoLocalize = false Instance.new("UICorner", b).CornerRadius = UDim.new(0, 5) local ts = Instance.new("UIStroke", b) ts.Color = Color3.fromRGB(0, 100, 255) ts.Thickness = 1.5 b.MouseButton1Click:Connect(function() playEffect(b, bCol) func() end) end add("be a noob", function() local char = p.Character if char then for _, v in pairs(char:GetDescendants()) do if v:IsA("Clothing") or v:IsA("Accessory") or v:IsA("ShirtGraphic") then v:Destroy() end end local bc = char:FindFirstChild("Body Colors") or Instance.new("BodyColors", char) bc.HeadColor3, bc.LeftArmColor3, bc.RightArmColor3 = Color3.new(1,1,0), Color3.new(1,1,0), Color3.new(1,1,0) bc.TorsoColor3, bc.LeftLegColor3, bc.RightLegColor3 = Color3.new(0,0,1), Color3.new(0,1,0), Color3.new(0,1,0) end end) add("Lyan message", function() task.spawn(function() local m = Instance.new("Message", workspace) local fr = {"SUSCRIBETE A TEAM LYAN", "JOIN TEAM LYAN!", "LYAN GUI ON TOP!"} while m.Parent do for _, t in ipairs(fr) do m.Text = t task.wait(3) end end end) end) add("Fly", function() local hrp = p.Character:FindFirstChild("HumanoidRootPart") if hrp:FindFirstChild("LyanFly") then hrp.LyanFly:Destroy() else local bv = Instance.new("BodyVelocity", hrp) bv.Name, bv.MaxForce = "LyanFly", Vector3.new(1e6, 1e6, 1e6) task.spawn(function() while bv.Parent do bv.Velocity = workspace.CurrentCamera.CFrame.LookVector * 80 task.wait() end end) end end) add("Spin", function() local hrp = p.Character:FindFirstChild("HumanoidRootPart") if hrp:FindFirstChild("LyanSpin") then hrp.LyanSpin:Destroy() else local bav = Instance.new("BodyAngularVelocity", hrp) bav.Name, bav.MaxTorque, bav.AngularVelocity = "LyanSpin", Vector3.new(0, 1e6, 0), Vector3.new(0, 50, 0) end end) add("spawn brick", function() local b = Instance.new("Part", workspace) b.Size, b.CFrame = Vector3.new(2, 1, 4), p.Character.HumanoidRootPart.CFrame * CFrame.new(0, 0, -5) b.BrickColor = BrickColor.new("Bright red") end) add("Btools", function() for i=1,4 do Instance.new("HopperBin", p.Backpack).BinType = i end end) add("Super speed", function() p.Character.Humanoid.WalkSpeed = 150 end) add("Decal Spam", function() for _,v in pairs(workspace:GetDescendants()) do if v:IsA("BasePart") then Instance.new("Decal", v).Texture = "rbxassetid://70594857599053" end end end) add("Noclip", function() _G.NC = not _G.NC game:GetService("RunService").Stepped:Connect(function() if _G.NC and p.Character then for _,v in pairs(p.Character:GetDescendants()) do if v:IsA("BasePart") then v.CanCollide = false end end end end) end) add("Sponsor Chat", function() game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer("TEAM LYAN ON TOP!", "All") end) add("Explode", function() Instance.new("Explosion", workspace).Position = p.Character.HumanoidRootPart.Position end) add("Burn Map", function() for _,v in pairs(workspace:GetDescendants()) do if v:IsA("BasePart") then Instance.new("Fire", v) end end end) add("Sit", function() p.Character.Humanoid.Sit = true end) add("Auto Jump", function() _G.AJ = not _G.AJ while _G.AJ do task.wait(0.1) p.Character.Humanoid.Jump = true end end) add("Super Jump", function() p.Character.Humanoid.JumpPower = 200 end) add("Linked Sword", function() local s = Instance.new("Tool") s.Name = "LinkedSword" s.Grip = CFrame.new(0, 0, -1.2) * CFrame.Angles(0, math.rad(90), 0) local h = Instance.new("Part", s) h.Name = "Handle" h.Size = Vector3.new(1, 0.8, 4) local m = Instance.new("SpecialMesh", h) m.MeshId, m.TextureId = "rbxassetid://12221720", "rbxassetid://12224218" s.Parent = p.Backpack task.wait(0.1) p.Character.Humanoid:EquipTool(s) end) add("Glitched Sound", function() _G.GlitchLoop = not _G.GlitchLoop task.spawn(function() while _G.GlitchLoop do for _, sound in pairs(game:GetDescendants()) do if sound:IsA("Sound") then sound:Play() end end task.wait(0.1) end end) end) add("Fake Lag", function() _G.FakeLag = not _G.FakeLag task.spawn(function() while _G.FakeLag do local char = p.Character if char and char:FindFirstChild("HumanoidRootPart") then char.HumanoidRootPart.Anchored = true task.wait(0.05) char.HumanoidRootPart.Anchored = false end task.wait(math.random(1, 10)/100) end end) end) ]])()