while true do
wait(10)
local message = Instance.new("Message")
message.Text = "Starting game!"
message.Parent = workspace
wait(1.5)
message:Destroy()
local players = game.Players:GetChildren()
if #players > 0 then
local chosen = players[math.random(1, #players)]
if chosen and chosen.Character then
local nameo = chosen.KillerSkin:FindFirstChildOfClass("StringValue").Name
local morph = game.ReplicatedStorage.SkinModels:FindFirstChild(nameo)
if morph then
local character = morph:Clone()
character.Name = chosen.Name
character.Parent = workspace
chosen.Character = character
local countdown = 25
while countdown >= 0 do
workspace.Round.TIMER.Value = countdown
countdown = countdown - 1
task.wait(1)
end
if chosen and chosen.Character then
chosen.Character:BreakJoints()
end
end
end
end
end