Trung sì ke :
🌸 KIÊN MAN LOADING 🌸 local p = game.Players.LocalPlayer local gui = Instance.new("ScreenGui",p.PlayerGui) -- nền local bg = Instance.new("Frame",gui) bg.Size = UDim2.new(1,0,1,0) bg.BackgroundColor3 = Color3.fromRGB(20,0,30) -- chữ loading local text = Instance.new("TextLabel",bg) text.Size = UDim2.new(1,0,0.2,0) text.Position = UDim2.new(0,0,0.4,0) text.BackgroundTransparency = 1 text.Text = "🌸 KIÊN MAN HUB 🌸\nĐang tải..." text.TextColor3 = Color3.fromRGB(255,0,170) text.Font = Enum.Font.GothamBlack text.TextScaled = true -- hiệu ứng chấm ... spawn(function() while true do text.Text = "🌸 KIÊN MAN HUB 🌸\nĐang tải." task.wait(0.4) text.Text = "🌸 KIÊN MAN HUB 🌸\nĐang tải.." task.wait(0.4) text.Text = "🌸 KIÊN MAN HUB 🌸\nĐang tải..." task.wait(0.4) end end) -- sau 3s mở menu chính task.wait(3) bg:Destroy() -- MENU NGẮN local main = Instance.new("Frame",gui) main.Size = UDim2.new(0,300,0,200) main.Position = UDim2.new(0.35,0,0.3,0) main.BackgroundColor3 = Color3.fromRGB(40,0,60) main.Active = true main.Draggable = true Instance.new("UICorner",main).CornerRadius = UDim.new(0,12) local title = Instance.new("TextLabel",main) title.Size = UDim2.new(1,0,0,50) title.BackgroundTransparency = 1 title.Text = "KIÊN MAN" title.TextColor3 = Color3.fromRGB(255,0,170) title.Font = Enum.Font.GothamBlack title.TextScaled = true
2026-04-26 09:37:34