-- [[ TILIN_GUI V1 - THE FULL ALL-IN-ONE EDITION 🥀 ]] -- local tilin_gui = Instance.new("ScreenGui") local main_panel = Instance.new("Frame") local title = Instance.new("TextLabel") local container = Instance.new("ScrollingFrame") local UIListLayout = Instance.new("UIListLayout") local UIPadding = Instance.new("UIPadding") local footer = Instance.new("TextLabel") local windows_orb = Instance.new("ImageButton") -- Setup principal tilin_gui.Name = "tilin_gui" tilin_gui.Parent = game:GetService("CoreGui") tilin_gui.ResetOnSpawn = false -- Panel Estilo Windows 7 Aero (Azul Cristal) main_panel.Name = "main_panel" main_panel.Parent = tilin_gui main_panel.BackgroundColor3 = Color3.fromRGB(0, 114, 225) main_panel.BackgroundTransparency = 0.25 main_panel.Position = UDim2.new(0.4, 0, 0.2, 0) main_panel.Size = UDim2.new(0, 280, 0, 380) main_panel.Active = true main_panel.Draggable = true local corner = Instance.new("UICorner", main_panel) corner.CornerRadius = UDim.new(0, 10) local stroke = Instance.new("UIStroke", main_panel) stroke.Color = Color3.new(1, 1, 1) stroke.Thickness = 1.5 stroke.Transparency = 0.6 -- Título 🥀 title.Name = "title" title.Parent = main_panel title.BackgroundTransparency = 1 title.Size = UDim2.new(1, 0, 0, 45) title.Font = Enum.Font.SourceSansBold title.Text = " TILIN_GUI V1 🥀" title.TextColor3 = Color3.new(1, 1, 1) title.TextSize = 19 title.TextXAlignment = Enum.TextXAlignment.Left -- Botones Control (Minimizar/Cerrar) local close_btn = Instance.new("TextButton", main_panel) close_btn.Size = UDim2.new(0, 40, 0, 22) close_btn.Position = UDim2.new(0.83, 0, 0.02, 0) close_btn.BackgroundColor3 = Color3.fromRGB(232, 17, 35) close_btn.Text = "X" close_btn.TextColor3 = Color3.new(1, 1, 1) close_btn.Font = Enum.Font.SourceSansBold Instance.new("UICorner", close_btn).CornerRadius = UDim.new(0, 4) close_btn.MouseButton1Click:Connect(function() tilin_gui:Destroy() end) local min_btn = Instance.new("TextButton", main_panel) min_btn.Size = UDim2.new(0, 40, 0, 22) min_btn.Position = UDim2.new(0.67, 0, 0.02, 0) min_btn.BackgroundColor3 = Color3.fromRGB(60, 120, 180) min_btn.Text = "_" min_btn.TextColor3 = Color3.new(1, 1, 1) min_btn.Font = Enum.Font.SourceSansBold Instance.new("UICorner", min_btn).CornerRadius = UDim.new(0, 4) -- Logo Windows (Orb) para abrir windows_orb.Name = "WindowsOrb" windows_orb.Parent = tilin_gui windows_orb.Size = UDim2.new(0, 60, 0, 60) windows_orb.Position = UDim2.new(0.02, 0, 0.85, 0) windows_orb.BackgroundTransparency = 1 windows_orb.Image = "rbxassetid://25967801" windows_orb.Visible = false min_btn.MouseButton1Click:Connect(function() main_panel.Visible = false windows_orb.Visible = true end) windows_orb.MouseButton1Click:Connect(function() main_panel.Visible = true windows_orb.Visible = false end) -- Contenedor de botones container.Name = "container" container.Parent = main_panel container.BackgroundTransparency = 0.8 container.BackgroundColor3 = Color3.new(0,0,0) container.Position = UDim2.new(0.05, 0, 0.15, 0) container.Size = UDim2.new(0.9, 0, 0.75, 0) container.CanvasSize = UDim2.new(0, 0, 5.5, 0) -- Scroll más largo para todos los scripts container.ScrollBarThickness = 3 Instance.new("UICorner", container) UIListLayout.Parent = container UIListLayout.HorizontalAlignment = Enum.HorizontalAlignment.Center UIListLayout.Padding = UDim.new(0, 8) UIPadding.Parent = container UIPadding.PaddingTop = UDim.new(0, 5) -- Función para añadir botones local function addBtn(name, color, callback) local btn = Instance.new("TextButton", container) btn.Size = UDim2.new(0.9, 0, 0, 35) btn.BackgroundColor3 = color btn.Font = Enum.Font.SourceSansBold btn.TextColor3 = Color3.new(1, 1, 1) btn.Text = name:upper() btn.TextSize = 12 Instance.new("UICorner", btn).CornerRadius = UDim.new(0, 6) local grad = Instance.new("UIGradient", btn) grad.Color = ColorSequence.new{ColorSequenceKeypoint.new(0, Color3.new(1,1,1)), ColorSequenceKeypoint.new(1, color)} grad.Rotation = -90 btn.MouseButton1Click:Connect(callback) end -- ========================================== -- LISTA COMPLETA -- ========================================== -- 1. KRYSTAL TEAM addBtn("Krystal Team", Color3.fromRGB(0, 204, 153), function() local decalID = 278201190 for _, v in pairs(workspace:GetDescendants()) do if v:IsA("BasePart") then for _, face in pairs({"Front","Back","Right","Left","Top","Bottom"}) do local d = Instance.new("Decal", v) d.Texture = "http://www.roblox.com/asset/?id="..decalID d.Face = face end end end local s = Instance.new("Sky", game.Lighting) s.SkyboxBk = "http://www.roblox.com/asset/?id=278201190" s.SkyboxDn = s.SkyboxBk; s.SkyboxFt = s.SkyboxBk; s.SkyboxLf = s.SkyboxBk; s.SkyboxRt = s.SkyboxBk; s.SkyboxUp = s.SkyboxBk end) -- 2. RC7 addBtn("RC7 EXPLOIT", Color3.fromRGB(204, 0, 0), function() loadstring(game:HttpGet("https://rawscripts.net/raw/Universal-Script-Rc7-By-Emoxby31-195434"))() end) -- 3. NOOB SKIN addBtn("Noob Skin", Color3.fromRGB(102, 204, 0), function() loadstring(game:HttpGet("https://raw.githubusercontent.com/KietVN022023/Fe-Noob-lnfecIon/refs/heads/main/Fe%20Noob%20lnfecIon"))() end) -- 4. FLY V3 X addBtn("Fly V3 X", Color3.fromRGB(0, 153, 204), function() loadstring(game:HttpGet("https://rawscripts.net/raw/Universal-Script-Fly-V3-X-132770"))() end) -- 5. ENERGIZE addBtn("Energize", Color3.fromRGB(0, 153, 76), function() loadstring(game:HttpGet("https://rawscripts.net/raw/Universal-Script-Energize-10408"))() end) -- 6. SHEDLETSKY 1 addBtn("Shedletsky 1", Color3.fromRGB(255, 102, 0), function() loadstring(game:HttpGet("https://rawscripts.net/raw/Universal-Script-Skybox-shedletsky-PLS-DONT-COPY-MY-SCRIPT-SKID-134592"))() end) -- 7. EPIKGUY addBtn("Epikguy", Color3.fromRGB(127, 0, 255), function() loadstring(game:HttpGet("https://rawscripts.net/raw/Universal-Script-Epikguy-gui-v2-op-87889"))() end) -- 8. SSP AGENT addBtn("SSP Agent", Color3.fromRGB(51, 51, 153), function() loadstring(game:HttpGet("https://rawscripts.net/raw/Universal-Script-SSP-AGENT-EDITION-44093"))() end) -- 9. JOHN DOE addBtn("John Doe", Color3.fromRGB(64, 64, 64), function() loadstring(game:HttpGet("https://rawscripts.net/raw/Universal-Script-John-Doe-131661"))() end) -- 10. CHICKEN ARMS addBtn("Chicken Arms", Color3.fromRGB(255, 153, 51), function() loadstring(game:HttpGet("https://rawscripts.net/raw/Universal-Script-Head-Shake-and-Chicken-arms-74734"))() end) -- 11. FACE ALL addBtn("Face All", Color3.fromRGB(153, 51, 255), function() loadstring(game:HttpGet("https://rawscripts.net/raw/Universal-Script-Snoop-Dogg-face-all-116660"))() end) -- 12. SHEDLETSKY 2 addBtn("Shedletsky 2", Color3.fromRGB(153, 0, 0), function() local id = "http://www.roblox.com/asset/?id=172423468" local s = Instance.new("Sky", game.Lighting) s.SkyboxBk = id; s.SkyboxDn = id; s.SkyboxFt = id; s.SkyboxLf = id; s.SkyboxRt = id; s.SkyboxUp = id end) -- 13. ANONYMUS addBtn("Anonymus", Color3.fromRGB(30, 30, 30), function() for _, v in pairs(game.Players:GetPlayers()) do local t = v.Character and (v.Character:FindFirstChild("Torso") or v.Character:FindFirstChild("HumanoidRootPart")) if t then local e = Instance.new("ParticleEmitter", t) e.Texture = "http://www.roblox.com/asset/?id=127476787" e.VelocitySpread = 50 end end end) -- 14. SKYBOX FULL (Animación + Sonido + Jumpscare) addBtn("Skybox Full", Color3.fromRGB(255, 51, 153), function() task.spawn(function() local player = game.Players.LocalPlayer local RunService = game:GetService("RunService") local sg = Instance.new("ScreenGui", player:WaitForChild("PlayerGui")) sg.Name = "WhiteFullScreen"; sg.IgnoreGuiInset = true local whiteBackground = Instance.new("Frame", sg) whiteBackground.Size = UDim2.fromScale(1, 1); whiteBackground.BackgroundColor3 = Color3.new(1, 1, 1); whiteBackground.ZIndex = 999999 local image = Instance.new("ImageLabel", sg) image.AnchorPoint = Vector2.new(0.5, 0.5); image.Position = UDim2.fromScale(0.5, 0.5); image.Size = UDim2.fromScale(1, 1) image.BackgroundTransparency = 1; image.Image = "rbxassetid://84838094344701"; image.ZIndex = 1000001 local sound1 = Instance.new("Sound", sg); sound1.SoundId = "rbxassetid://82719020266339"; sound1.Volume = 1 local sound2 = Instance.new("Sound", workspace); sound2.SoundId = "rbxassetid://134884767490882"; sound2.Volume = 0.8; sound2.Looped = true Instance.new("DistortionSoundEffect", sound2).Level = 0.65 local eq = Instance.new("EqualizerSoundEffect", sound2) eq.LowGain = 12; eq.MidGain = -4; eq.HighGain = 3 task.delay(2.8, function() if image.Parent then image.Image = "rbxassetid://95558068230459" end end) local time = 0 local connection = RunService.RenderStepped:Connect(function(dt) if not image.Parent then return end time += dt * 5 image.Position = UDim2.fromScale(0.5 + math.sin(time * 7) * 0.02, 0.5 + math.cos(time * 8) * 0.02) image.Size = UDim2.fromScale(1 + math.sin(time * 8) * 0.1, 1 + math.sin(time * 8) * 0.1) image.Rotation = math.sin(time * 10) * 9 end) sound1.Ended:Connect(function() sg:Destroy(); sound2:Play() end) sound1:Play() local Lighting = game.Lighting local sky = Lighting:FindFirstChild("AwesomeSkybox") or Instance.new("Sky", Lighting) sky.Name = "AwesomeSkybox" local frames = {21076888, 21076945, 21077007, 21077125, 21077227, 21077345, 21077227, 21077125, 21077007, 21076945} while true do for _, id in ipairs(frames) do local asset = "rbxassetid://" .. id sky.SkyboxBk = asset; sky.SkyboxDn = asset; sky.SkyboxFt = asset sky.SkyboxLf = asset; sky.SkyboxRt = asset; sky.SkyboxUp = asset task.wait(0.1) end end end) end) -- Footer footer.Name = "footer" footer.Parent = main_panel footer.BackgroundTransparency = 1 footer.Position = UDim2.new(0, 0, 0.92, 0) footer.Size = UDim2.new(1, 0, 0, 25) footer.Font = Enum.Font.SourceSans footer.Text = "TikTok @gatotontoxdd | tilin257222 loves you" footer.TextColor3 = Color3.new(1, 1, 1) footer.TextSize = 10