RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"create a part round"
-- server script (ServerScriptService) local roundTime = 60 -- duration of the round in seconds local function startRound() local part = Instance.new("Part") part.Parent = game.Workspace part.Size = Vector3.new(10, 1, 10) part.Position = Vector3.new(0, 0.5, 0) part.Anchored = true part.BrickColor = BrickColor.Random() wait(roundTime) part:Destroy() end while true do startRound() wait(roundTime) end