local floor = Instance.new("Part")
floor.Size = Vector3.new(150, 1, 150)
floor.Anchored = true
floor.Position = Vector3.new(0, 0, 0)
floor.Parent = workspacelocal part = script.Parent
part.Touched:Connect(function(hit)
local player = game.Players:GetPlayerFromCharacter(hit.Parent)
if player then
player.Character:SetPrimaryPartCFrame(CFrame.new(0, 50, 0))
end
end)local countdown = 15
while true do
for i = countdown, 0, -1 do
print("Начало через: "..i)
wait(1)
end
print("Игра началась!")
wait(10)
endscript.Parent.Touched:Connect(function(hit)
local humanoid = hit.Parent:FindFirstChild("Humanoid")
if humanoid then
humanoid.Health = 0
end
end)