-- Скрипт для показа текста при заходе в игру
local player = game.Players.LocalPlayer
local starterGui = game:GetService("StarterGui")
-- Настройки текста
local message = "Текст"
local displayTime = 5 -- Время отображения текста в секундах
-- Создание UI-элементов
local screenGui = Instance.new("ScreenGui")
local textLabel = Instance.new("TextLabel")
textLabel.Size = UDim2.new(1, 0, 1, 0)
textLabel.BackgroundColor3 = Color3.new(0, 0, 0) -- Черный фон
textLabel.Text = message
textLabel.Font = Enum.Font.SourceSans
textLabel.TextSize = 24
textLabel.TextColor3 = Color3.new(1, 1, 1) -- Белый текст
textLabel.Parent = screenGui
-- Показать UI-элементы
screenGui.Parent = player:WaitForChild("PlayerGui")
-- Ждем displayTime секунд и затем скрываем UI-элементы
wait(displayTime)
screenGui:Destroy()