local function sayHello()
print("Привет!")
endsayHello()local function greet(name)
print("Привет, " .. name)
end
greet("Alex")local function add(a, b)
return a + b
end
local result = add(5, 3)
print(result)local function changeColor(part)
part.Color = Color3.fromRGB(255, 0, 0)
end
changeColor(workspace.Part)print("Привет")
print("Привет")
print("Привет")local function hello()
print("Привет")
end
hello()
hello()
hello()