local label = script.Parent
label.Text = "Привет, игрок!"
label.TextColor3 = Color3.fromRGB(255, 255, 255)
label.TextScaled = true
label.BackgroundTransparency = 1local player = game.Players.LocalPlayer
local character = player.Character or player.CharacterAdded:Wait()
local humanoid = character:WaitForChild("Humanoid")
local label = script.Parent
humanoid.HealthChanged:Connect(function()
label.Text = "HP: " .. math.floor(humanoid.Health)
end)local score = 0
local label = script.Parent
while true do
wait(1)
score += 10
label.Text = "Очки: " .. score
end