local Players = game:GetService("Players") local pad = Instance.new("Part") pad.Name = "TrainingPad" pad.Size = Vector3.new(6, 0.5, 6) pad.Position = Vector3.new(0, 3, 0) pad.Anchored = true pad.Color = Color3.fromRGB(210, 55, 65) pad.Parent = workspace local busy = false pad.Touched:Connect(function(hit) local character = hit.Parent if character == nil then return end local player = Players:GetPlayerFromCharacter(character) if player == nil or busy then return end busy = true pad.Color = Color3.fromRGB(60, 180, 110) print("Платформу коснулся игрок: " .. player.Name) task.delay(2, function() pad.Color = Color3.fromRGB(210, 55, 65) busy = false end) end)